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

推荐订阅源

The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
The Cloudflare Blog
G
Google Developers Blog
博客园_首页
Martin Fowler
Martin Fowler
Apple Machine Learning Research
Apple Machine Learning Research
L
LangChain Blog
D
Docker
C
Check Point Blog
T
Tailwind CSS Blog
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Hugging Face - Blog
Hugging Face - Blog
Microsoft Security Blog
Microsoft Security Blog
V
V2EX
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
酷 壳 – CoolShell
酷 壳 – CoolShell
IT之家
IT之家
M
MIT News - Artificial intelligence
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 【当耐特】
GbyAI
GbyAI

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: scope jiti transform cache by OpenClaw install · ope...
fuller-stack · 2026-05-29 · via Recent Commits to openclaw:main

@@ -16,6 +16,8 @@ import {

1616

listPluginSdkAliasCandidates,

1717

listPluginSdkExportedSubpaths,

1818

normalizeJitiAliasTargetPath,

19+

resolvePluginLoaderJitiFsCacheDir,

20+

resolvePluginLoaderJitiFsCacheOption,

1921

resolvePluginLoaderModuleConfig,

2022

resolvePluginLoaderTryNative,

2123

resolveExtensionApiAlias,

@@ -49,6 +51,27 @@ function makeTempDir() {

4951

return dir;

5052

}

515354+

function createTrustedOpenClawPackageFixture(version: string) {

55+

const root = makeTempDir();

56+

fs.writeFileSync(path.join(root, "openclaw.mjs"), "export {};\n", "utf-8");

57+

fs.writeFileSync(

58+

path.join(root, "package.json"),

59+

JSON.stringify(

60+

{

61+

name: "openclaw",

62+

version,

63+

bin: { openclaw: "openclaw.mjs" },

64+

exports: { "./plugin-sdk": { default: "./dist/plugin-sdk/index.js" } },

65+

},

66+

null,

67+

2,

68+

),

69+

"utf-8",

70+

);

71+

mkdirSafeDir(path.join(root, "dist", "plugins"));

72+

return root;

73+

}

74+5275

function withCwd<T>(cwd: string, run: () => T): T {

5376

const cwdSpy = vi.spyOn(process, "cwd").mockReturnValue(cwd);

5477

try {

@@ -2091,6 +2114,80 @@ describe("buildPluginLoaderAliasMap memoization", () => {

20912114

});

2092211520932116

describe("buildPluginLoaderJitiOptions", () => {

2117+

it("scopes jiti fs cache by OpenClaw package version and install metadata", () => {

2118+

const root = createTrustedOpenClawPackageFixture("1.2.3-beta.4");

2119+

const tmpDir = path.join(root, "tmp");

2120+2121+

const fsCache = withEnv({ TMPDIR: tmpDir }, () =>

2122+

resolvePluginLoaderJitiFsCacheDir({

2123+

modulePath: path.join(root, "dist", "plugins", "loader.js"),

2124+

}),

2125+

);

2126+2127+

expect(fsCache).toContain(path.join(tmpDir, "jiti", "openclaw", "1.2.3-beta.4") + path.sep);

2128+

expect(path.basename(fsCache)).toMatch(/^\d+-\d+$/u);

2129+

});

2130+2131+

it("preserves jiti's tmpdir guard when TMPDIR resolves to cwd", () => {

2132+

const root = createTrustedOpenClawPackageFixture("1.2.3-beta.4");

2133+2134+

const guardedFsCache = withEnv({ TMPDIR: root, JITI_RESPECT_TMPDIR_ENV: undefined }, () =>

2135+

withCwd(root, () =>

2136+

resolvePluginLoaderJitiFsCacheDir({

2137+

modulePath: path.join(root, "dist", "plugins", "loader.js"),

2138+

}),

2139+

),

2140+

);

2141+

const respectedFsCache = withEnv({ TMPDIR: root, JITI_RESPECT_TMPDIR_ENV: "1" }, () =>

2142+

withCwd(root, () =>

2143+

resolvePluginLoaderJitiFsCacheDir({

2144+

modulePath: path.join(root, "dist", "plugins", "loader.js"),

2145+

}),

2146+

),

2147+

);

2148+2149+

expect(guardedFsCache).toContain(

2150+

path.join("jiti", "openclaw", "1.2.3-beta.4") + path.sep,

2151+

);

2152+

expect(guardedFsCache.startsWith(path.join(root, "jiti") + path.sep)).toBe(false);

2153+

expect(respectedFsCache).toContain(

2154+

path.join(root, "jiti", "openclaw", "1.2.3-beta.4") + path.sep,

2155+

);

2156+

});

2157+2158+

it("adds the versioned fs cache directory to plugin loader jiti options", () => {

2159+

const root = createTrustedOpenClawPackageFixture("2.0.0");

2160+

const tmpDir = path.join(root, "tmp");

2161+2162+

const options = withEnv({ TMPDIR: tmpDir }, () =>

2163+

buildPluginLoaderJitiOptions(

2164+

{ "openclaw/plugin-sdk": path.join(root, "dist", "plugin-sdk", "root-alias.cjs") },

2165+

{ modulePath: path.join(root, "dist", "plugins", "loader.js") },

2166+

),

2167+

);

2168+2169+

expect(options.fsCache).toContain(path.join(tmpDir, "jiti", "openclaw", "2.0.0"));

2170+

});

2171+2172+

it("preserves jiti's fs cache environment opt-out", () => {

2173+

const root = createTrustedOpenClawPackageFixture("2.0.0");

2174+2175+

const explicitOptOut = withEnv({ JITI_FS_CACHE: "false" }, () =>

2176+

resolvePluginLoaderJitiFsCacheOption({

2177+

modulePath: path.join(root, "dist", "plugins", "loader.js"),

2178+

}),

2179+

);

2180+

const legacyOptOut = withEnv({ JITI_CACHE: "false", JITI_FS_CACHE: undefined }, () =>

2181+

buildPluginLoaderJitiOptions(

2182+

{ "openclaw/plugin-sdk": path.join(root, "dist", "plugin-sdk", "root-alias.cjs") },

2183+

{ modulePath: path.join(root, "dist", "plugins", "loader.js") },

2184+

),

2185+

);

2186+2187+

expect(explicitOptOut).toBe(false);

2188+

expect(legacyOptOut.fsCache).toBe(false);

2189+

});

2190+20942191

it("pre-normalizes and marks alias maps for source transforms", () => {

20952192

const marker = Symbol.for("pathe:normalizedAlias");

20962193

const aliasMap = {