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

推荐订阅源

人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
博客园 - 【当耐特】
量子位
博客园 - 司徒正美
爱范儿
爱范儿
Hugging Face - Blog
Hugging Face - Blog
博客园 - 聂微东
Jina AI
Jina AI
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
V
Visual Studio Blog
I
InfoQ
D
Docker
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
宝玉的分享
宝玉的分享
G
Google Developers Blog
GbyAI
GbyAI
Y
Y Combinator Blog
有赞技术团队
有赞技术团队
H
Help Net Security

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 stale bootstrap file breaking channel agent turns (#8...
joshavant · 2026-05-16 · via Recent Commits to openclaw:main

@@ -81,6 +81,21 @@ function registerDuplicateBootstrapFileHook() {

8181

});

8282

}

838384+

function registerBootstrapFileHook(relativePath = "BOOTSTRAP.md") {

85+

registerInternalHook("agent:bootstrap", (event) => {

86+

const context = event.context as AgentBootstrapHookContext;

87+

context.bootstrapFiles = [

88+

...context.bootstrapFiles,

89+

{

90+

name: "BOOTSTRAP.md",

91+

path: path.join(context.workspaceDir, relativePath),

92+

content: "stale ritual",

93+

missing: false,

94+

},

95+

];

96+

});

97+

}

98+8499

async function createHeartbeatAgentsWorkspace() {

85100

const workspaceDir = await makeTempWorkspace("openclaw-bootstrap-");

86101

await fs.writeFile(path.join(workspaceDir, "HEARTBEAT.md"), "check inbox", "utf8");

@@ -149,6 +164,124 @@ describe("resolveBootstrapFilesForRun", () => {

149164

expect(agentsContextFiles).toHaveLength(1);

150165

expect(agentsContextFiles[0]?.content).toBe("workspace rules");

151166

});

167+168+

it("ignores stale workspace BOOTSTRAP.md once setup is completed", async () => {

169+

const workspaceDir = await makeTempWorkspace("openclaw-bootstrap-");

170+

await fs.mkdir(path.join(workspaceDir, ".openclaw"), { recursive: true });

171+

await fs.writeFile(

172+

path.join(workspaceDir, ".openclaw", "workspace-state.json"),

173+

`${JSON.stringify({

174+

version: 1,

175+

bootstrapSeededAt: "2026-05-16T00:00:00.000Z",

176+

setupCompletedAt: "2026-05-16T00:00:01.000Z",

177+

})}\n`,

178+

"utf8",

179+

);

180+

await fs.writeFile(path.join(workspaceDir, "AGENTS.md"), "rules", "utf8");

181+

await fs.writeFile(path.join(workspaceDir, "BOOTSTRAP.md"), "stale ritual", "utf8");

182+183+

const files = await resolveBootstrapFilesForRun({ workspaceDir });

184+185+

expect(files.map((file) => file.name)).toContain("AGENTS.md");

186+

expect(files.map((file) => file.name)).not.toContain("BOOTSTRAP.md");

187+

});

188+189+

it("keeps BOOTSTRAP.md when setup state cannot be read", async () => {

190+

const workspaceDir = await makeTempWorkspace("openclaw-bootstrap-");

191+

await fs.mkdir(path.join(workspaceDir, ".openclaw", "workspace-state.json"), {

192+

recursive: true,

193+

});

194+

await fs.writeFile(path.join(workspaceDir, "AGENTS.md"), "rules", "utf8");

195+

await fs.writeFile(path.join(workspaceDir, "BOOTSTRAP.md"), "ritual", "utf8");

196+197+

const files = await resolveBootstrapFilesForRun({ workspaceDir });

198+199+

expect(files.map((file) => file.name)).toContain("BOOTSTRAP.md");

200+

});

201+202+

it("does not let hooks re-add stale root BOOTSTRAP.md after setup is completed", async () => {

203+

registerBootstrapFileHook();

204+

const workspaceDir = await makeTempWorkspace("openclaw-bootstrap-");

205+

await fs.mkdir(path.join(workspaceDir, ".openclaw"), { recursive: true });

206+

await fs.writeFile(

207+

path.join(workspaceDir, ".openclaw", "workspace-state.json"),

208+

`${JSON.stringify({

209+

version: 1,

210+

bootstrapSeededAt: "2026-05-16T00:00:00.000Z",

211+

setupCompletedAt: "2026-05-16T00:00:01.000Z",

212+

})}\n`,

213+

"utf8",

214+

);

215+

await fs.writeFile(path.join(workspaceDir, "AGENTS.md"), "rules", "utf8");

216+

await fs.writeFile(path.join(workspaceDir, "BOOTSTRAP.md"), "stale ritual", "utf8");

217+218+

const files = await resolveBootstrapFilesForRun({ workspaceDir });

219+220+

expect(files.map((file) => file.name)).not.toContain("BOOTSTRAP.md");

221+

});

222+223+

it("ignores stale root BOOTSTRAP.md for home-relative workspace paths", async () => {

224+

registerBootstrapFileHook();

225+

const parentDir = await makeTempWorkspace("openclaw-bootstrap-home-");

226+

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

227+

await fs.mkdir(path.join(workspaceDir, ".openclaw"), { recursive: true });

228+

await fs.writeFile(

229+

path.join(workspaceDir, ".openclaw", "workspace-state.json"),

230+

`${JSON.stringify({

231+

version: 1,

232+

bootstrapSeededAt: "2026-05-16T00:00:00.000Z",

233+

setupCompletedAt: "2026-05-16T00:00:01.000Z",

234+

})}\n`,

235+

"utf8",

236+

);

237+

await fs.writeFile(path.join(workspaceDir, "AGENTS.md"), "rules", "utf8");

238+

await fs.writeFile(path.join(workspaceDir, "BOOTSTRAP.md"), "stale ritual", "utf8");

239+240+

const previousOpenClawHome = process.env.OPENCLAW_HOME;

241+

process.env.OPENCLAW_HOME = parentDir;

242+

try {

243+

const files = await resolveBootstrapFilesForRun({ workspaceDir: "~/workspace" });

244+245+

expect(files.map((file) => file.name)).toContain("AGENTS.md");

246+

expect(files.map((file) => file.name)).not.toContain("BOOTSTRAP.md");

247+

} finally {

248+

if (previousOpenClawHome === undefined) {

249+

delete process.env.OPENCLAW_HOME;

250+

} else {

251+

process.env.OPENCLAW_HOME = previousOpenClawHome;

252+

}

253+

}

254+

});

255+256+

it("keeps hook-added nested BOOTSTRAP.md after setup is completed", async () => {

257+

registerBootstrapFileHook(path.join("packages", "core", "BOOTSTRAP.md"));

258+

const workspaceDir = await makeTempWorkspace("openclaw-bootstrap-");

259+

await fs.mkdir(path.join(workspaceDir, ".openclaw"), { recursive: true });

260+

await fs.mkdir(path.join(workspaceDir, "packages", "core"), { recursive: true });

261+

await fs.writeFile(

262+

path.join(workspaceDir, ".openclaw", "workspace-state.json"),

263+

`${JSON.stringify({

264+

version: 1,

265+

bootstrapSeededAt: "2026-05-16T00:00:00.000Z",

266+

setupCompletedAt: "2026-05-16T00:00:01.000Z",

267+

})}\n`,

268+

"utf8",

269+

);

270+

await fs.writeFile(path.join(workspaceDir, "AGENTS.md"), "rules", "utf8");

271+

await fs.writeFile(path.join(workspaceDir, "BOOTSTRAP.md"), "stale ritual", "utf8");

272+

await fs.writeFile(

273+

path.join(workspaceDir, "packages", "core", "BOOTSTRAP.md"),

274+

"package ritual",

275+

"utf8",

276+

);

277+278+

const files = await resolveBootstrapFilesForRun({ workspaceDir });

279+280+

expect(files.map((file) => path.relative(workspaceDir, file.path))).toContain(

281+

path.join("packages", "core", "BOOTSTRAP.md"),

282+

);

283+

expect(files.map((file) => file.path)).not.toContain(path.join(workspaceDir, "BOOTSTRAP.md"));

284+

});

152285

});

153286154287

describe("resolveBootstrapContextForRun", () => {