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

推荐订阅源

L
LangChain Blog
有赞技术团队
有赞技术团队
博客园_首页
IT之家
IT之家
爱范儿
爱范儿
量子位
小众软件
小众软件
Jina AI
Jina AI
WordPress大学
WordPress大学
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
The Cloudflare Blog
博客园 - 司徒正美
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
大猫的无限游戏
大猫的无限游戏
月光博客
月光博客
雷峰网
雷峰网
V
Visual Studio Blog
博客园 - Franky
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
美团技术团队
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题

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): ignore helper files in extension roots · op...
mushuiyu886 · 2026-05-31 · via Recent Commits to openclaw:main

@@ -470,16 +470,35 @@ describe("discoverOpenClawPlugins", () => {

470470

const stateDir = makeTempDir();

471471

const workspaceDir = path.join(stateDir, "workspace");

472472473-

const globalExt = path.join(stateDir, "extensions");

474-

mkdirSafe(globalExt);

475-

fs.writeFileSync(path.join(globalExt, "alpha.ts"), "export default function () {}", "utf-8");

473+

createPackagePluginWithEntry({

474+

packageDir: path.join(stateDir, "extensions", "alpha"),

475+

packageName: "@openclaw/alpha",

476+

pluginId: "alpha",

477+

});

478+

createPackagePluginWithEntry({

479+

packageDir: path.join(workspaceDir, ".openclaw", "extensions", "beta"),

480+

packageName: "@openclaw/beta",

481+

pluginId: "beta",

482+

});

476483484+

const { candidates } = await discoverWithStateDir(stateDir, { workspaceDir });

485+

expectCandidateIds(candidates, { includes: ["alpha", "beta"] });

486+

});

487+488+

it("ignores standalone helper scripts in auto-discovered extension roots", async () => {

489+

const stateDir = makeTempDir();

490+

const workspaceDir = path.join(stateDir, "workspace");

491+

const globalExt = path.join(stateDir, "extensions");

477492

const workspaceExt = path.join(workspaceDir, ".openclaw", "extensions");

493+

mkdirSafe(globalExt);

478494

mkdirSafe(workspaceExt);

479-

fs.writeFileSync(path.join(workspaceExt, "beta.ts"), "export default function () {}", "utf-8");

495+

fs.writeFileSync(path.join(globalExt, "my-helper.mjs"), "export default {}", "utf-8");

496+

fs.writeFileSync(path.join(workspaceExt, "workspace-helper.js"), "export default {}", "utf-8");

480497481-

const { candidates } = await discoverWithStateDir(stateDir, { workspaceDir });

482-

expectCandidateIds(candidates, { includes: ["alpha", "beta"] });

498+

const { candidates, diagnostics } = await discoverWithStateDir(stateDir, { workspaceDir });

499+500+

expectCandidateIds(candidates, { excludes: ["my-helper", "workspace-helper"] });

501+

expect(diagnostics).toStrictEqual([]);

483502

});

484503485504

it("warns without blocking when a plugin requires a missing plugin", async () => {

@@ -637,9 +656,11 @@ describe("discoverOpenClawPlugins", () => {

637656

const stateDir = makeTempDir();

638657

const homeDir = makeTempDir();

639658

const workspaceRoot = path.join(homeDir, "workspace");

640-

const workspaceExt = path.join(workspaceRoot, ".openclaw", "extensions");

641-

mkdirSafe(workspaceExt);

642-

fs.writeFileSync(path.join(workspaceExt, "tilde-workspace.ts"), "export default {}", "utf-8");

659+

createPackagePluginWithEntry({

660+

packageDir: path.join(workspaceRoot, ".openclaw", "extensions", "tilde-workspace"),

661+

packageName: "@openclaw/tilde-workspace",

662+

pluginId: "tilde-workspace",

663+

});

643664644665

const result = discoverOpenClawPlugins({

645666

workspaceDir: "~/workspace",

@@ -722,7 +743,11 @@ describe("discoverOpenClawPlugins", () => {

722743

path.join(bundledDir, "music-generation-providers.live.test.ts"),

723744

"export default {}",

724745

);

725-

writeStandalonePlugin(path.join(bundledDir, "real-plugin.ts"), "export default {}");

746+

createPackagePluginWithEntry({

747+

packageDir: path.join(bundledDir, "real-plugin"),

748+

packageName: "@openclaw/real-plugin",

749+

pluginId: "real-plugin",

750+

});

726751727752

const { candidates, diagnostics } = withOpenClawPackageArgv(packageRoot, () =>

728753

discoverOpenClawPlugins({

@@ -2259,11 +2284,13 @@ describe("discoverOpenClawPlugins", () => {

2259228422602285

it.runIf(process.platform !== "win32")("blocks world-writable plugin paths", async () => {

22612286

const stateDir = makeTempDir();

2262-

const globalExt = path.join(stateDir, "extensions");

2263-

mkdirSafe(globalExt);

2264-

const pluginPath = path.join(globalExt, "world-open.ts");

2265-

fs.writeFileSync(pluginPath, "export default function () {}", "utf-8");

2266-

fs.chmodSync(pluginPath, 0o777);

2287+

const pluginDir = path.join(stateDir, "extensions", "world-open");

2288+

createPackagePluginWithEntry({

2289+

packageDir: pluginDir,

2290+

packageName: "@openclaw/world-open",

2291+

pluginId: "world-open",

2292+

});

2293+

fs.chmodSync(pluginDir, 0o777);

2267229422682295

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

22692296

@@ -2305,13 +2332,11 @@ describe("discoverOpenClawPlugins", () => {

23052332

"blocks suspicious ownership when uid mismatch is detected",

23062333

async () => {

23072334

const stateDir = makeTempDir();

2308-

const globalExt = path.join(stateDir, "extensions");

2309-

mkdirSafe(globalExt);

2310-

fs.writeFileSync(

2311-

path.join(globalExt, "owner-mismatch.ts"),

2312-

"export default function () {}",

2313-

"utf-8",

2314-

);

2335+

createPackagePluginWithEntry({

2336+

packageDir: path.join(stateDir, "extensions", "owner-mismatch"),

2337+

packageName: "@openclaw/owner-mismatch",

2338+

pluginId: "owner-mismatch",

2339+

});

2315234023162341

const actualUid = (process as NodeJS.Process & { getuid: () => number }).getuid();

23172342

const result = await discoverWithStateDir(stateDir, { ownershipUid: actualUid + 1 });

@@ -2393,16 +2418,18 @@ describe("discoverOpenClawPlugins", () => {

2393241823942419

it("reflects plugin root changes on the next discovery call", () => {

23952420

const stateDir = makeTempDir();

2396-

const globalExt = path.join(stateDir, "extensions");

2397-

mkdirSafe(globalExt);

2398-

const pluginPath = path.join(globalExt, "fresh.ts");

2399-

fs.writeFileSync(pluginPath, "export default function () {}", "utf-8");

2421+

const pluginDir = path.join(stateDir, "extensions", "fresh");

2422+

createPackagePluginWithEntry({

2423+

packageDir: pluginDir,

2424+

packageName: "@openclaw/fresh",

2425+

pluginId: "fresh",

2426+

});

2400242724012428

const env = buildDiscoveryEnvWithOverrides(stateDir);

24022429

const first = discoverWithEnv({ env });

24032430

expect(first.candidates.map((candidate) => candidate.idHint)).toContain("fresh");

240424312405-

fs.rmSync(pluginPath, { force: true });

2432+

fs.rmSync(pluginDir, { recursive: true, force: true });

2406243324072434

const second = discoverWithEnv({ env });

24082435

expect(second.candidates.map((candidate) => candidate.idHint)).not.toContain("fresh");

@@ -2465,8 +2492,16 @@ describe("discoverOpenClawPlugins", () => {

24652492

setup: () => {

24662493

const stateDirA = makeTempDir();

24672494

const stateDirB = makeTempDir();

2468-

writeStandalonePlugin(path.join(stateDirA, "extensions", "alpha.ts"));

2469-

writeStandalonePlugin(path.join(stateDirB, "extensions", "beta.ts"));

2495+

createPackagePluginWithEntry({

2496+

packageDir: path.join(stateDirA, "extensions", "alpha"),

2497+

packageName: "@openclaw/alpha",

2498+

pluginId: "alpha",

2499+

});

2500+

createPackagePluginWithEntry({

2501+

packageDir: path.join(stateDirB, "extensions", "beta"),

2502+

packageName: "@openclaw/beta",

2503+

pluginId: "beta",

2504+

});

24702505

return {

24712506

first: discoverWithEnv({ env: buildDiscoveryEnvWithOverrides(stateDirA) }),

24722507

second: discoverWithEnv({ env: buildDiscoveryEnvWithOverrides(stateDirB) }),

@@ -2514,6 +2549,20 @@ describe("discoverOpenClawPlugins", () => {

25142549

assert(first, second);

25152550

});

251625512552+

it("discovers standalone files from configured load-path directories", () => {

2553+

const stateDir = makeTempDir();

2554+

const pluginDir = path.join(stateDir, "plugins");

2555+

const pluginPath = path.join(pluginDir, "alpha.ts");

2556+

writeStandalonePlugin(pluginPath, "export default {}");

2557+2558+

const result = discoverWithEnv({

2559+

extraPaths: [pluginDir],

2560+

env: buildDiscoveryEnvWithOverrides(stateDir),

2561+

});

2562+2563+

expectCandidateSource(result.candidates, "alpha", pluginPath);

2564+

});

2565+25172566

it("preserves configured load-path order", () => {

25182567

const stateDir = makeTempDir();

25192568

const pluginA = path.join(stateDir, "plugins", "alpha.ts");