惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog
Y
Y Combinator Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
小众软件
小众软件
G
Google Developers Blog
云风的 BLOG
云风的 BLOG
罗磊的独立博客
博客园 - 三生石上(FineUI控件)
博客园 - 叶小钗
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
量子位
The Cloudflare Blog
T
The Blog of Author Tim Ferriss
博客园_首页
B
Blog RSS Feed
Hugging Face - Blog
Hugging Face - Blog
IT之家
IT之家
阮一峰的网络日志
阮一峰的网络日志
L
LangChain Blog
宝玉的分享
宝玉的分享

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(plugins): warn on source-only installed packages inst...
RomneyDa · 2026-05-04 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -58,6 +58,7 @@ Docs: https://docs.openclaw.ai

5858
5959

- Discord: clear stale startup probe bot/application status when the async bot probe throws, not just when it returns a degraded probe result. Thanks @vincentkoc.

6060

- Web search: scope explicit bundled `web_search` provider runtime loading through manifest ownership, so selecting DuckDuckGo/Gemini/etc. does not import unrelated bundled providers or log their optional dependency failures. Thanks @vincentkoc.

61+

- Plugins/discovery: demote the source-only TypeScript runtime check on already-installed `origin: "global"` plugin packages from a config-blocking error to a warning and let the runtime fall through to the TypeScript source via jiti, so a single broken installed package no longer blocks `plugins install` for unrelated plugins; install-time rejection of newly-installed source-only packages is unchanged. Thanks @romneyda.

6162

- Release/beta smoke: resolve the dispatched Telegram beta E2E run from `gh run list` when `gh workflow run` returns no run URL, so the maintainer helper does not fail immediately after dispatch. Thanks @vincentkoc.

6263

- Media/images: keep HEIC/HEIF attachments fail-closed when optional Sharp conversion is unavailable instead of sending originals that still need conversion. Thanks @vincentkoc.

6364

- Google Meet: fork the caller's current agent transcript into agent-mode meeting consultant sessions, so Meet replies inherit the context from the tool call that joined the meeting.

Original file line numberDiff line numberDiff line change

@@ -333,7 +333,7 @@ async function expectRejectedPackageExtensionEntry(params: {

333333

if (params.expectedDiagnostic === "runtime") {

334334

expect(

335335

result.diagnostics.some(

336-

(entry) => entry.level === "error" && entry.message.includes("compiled runtime output"),

336+

(entry) => entry.level === "warn" && entry.message.includes("compiled runtime output"),

337337

),

338338

).toBe(true);

339339

return;

@@ -748,7 +748,7 @@ describe("discoverOpenClawPlugins", () => {

748748

expectCandidateIds(candidates, { includes: ["pack/one", "pack/two"] });

749749

});

750750
751-

it("rejects source-only TypeScript entries for installed package plugins", async () => {

751+

it("warns but still loads source-only TypeScript entries for installed package plugins", async () => {

752752

const stateDir = makeTempDir();

753753

const pluginDir = path.join(stateDir, "extensions", "source-only-pack");

754754

mkdirSafe(path.join(pluginDir, "src"));

@@ -762,11 +762,11 @@ describe("discoverOpenClawPlugins", () => {

762762
763763

const result = await discoverWithStateDir(stateDir, {});

764764
765-

expectCandidatePresence(result, { absent: ["source-only-pack"] });

765+

expectCandidateIds(result.candidates, { includes: ["source-only-pack"] });

766766

expect(

767767

result.diagnostics.some(

768768

(entry) =>

769-

entry.level === "error" &&

769+

entry.level === "warn" &&

770770

entry.message.includes("requires compiled runtime output") &&

771771

entry.message.includes("./dist/index.js"),

772772

),

Original file line numberDiff line numberDiff line change

@@ -495,15 +495,14 @@ function resolvePackageRuntimeEntrySource(params: {

495495

isTypeScriptPackageEntry(safeEntry.relativePath)

496496

) {

497497

params.diagnostics.push({

498-

level: "error",

498+

level: "warn",

499499

message: missingCompiledRuntimeEntryMessage({

500500

label: "installed plugin package",

501501

entry: safeEntry.relativePath,

502502

candidates: builtEntryCandidates,

503503

}),

504504

source: params.sourceLabel,

505505

});

506-

return null;

507506

}

508507

}

509508