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

推荐订阅源

Y
Y Combinator Blog
The GitHub Blog
The GitHub Blog
Vercel News
Vercel News
D
DataBreaches.Net
MongoDB | Blog
MongoDB | Blog
H
Help Net Security
小众软件
小众软件
美团技术团队
T
The Blog of Author Tim Ferriss
爱范儿
爱范儿
D
Docker
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
博客园 - 聂微东
Blog — PlanetScale
Blog — PlanetScale
H
Hackread – Cybersecurity News, Data Breaches, AI and More
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
S
SegmentFault 最新的问题
云风的 BLOG
云风的 BLOG
B
Blog
雷峰网
雷峰网
The Cloudflare 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
chore(deadcode): inline bootstrap routing helpers · openc...
vincentkoc · 2026-06-21 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -33,23 +33,6 @@ type AttemptWorkspaceBootstrapRoutingInput = Omit<

3333

bootstrapFiles?: readonly WorkspaceBootstrapFile[];

3434

};

3535
36-

/**

37-

* Maps a resolved bootstrap mode to concrete prompt destinations. Today only

38-

* full bootstrap enters system context; limited/none intentionally avoid

39-

* runtime-context injection until that path has a separate contract.

40-

*/

41-

export function resolveBootstrapContextTargets(params: {

42-

bootstrapMode: BootstrapMode;

43-

}): Pick<

44-

AttemptBootstrapRouting,

45-

"includeBootstrapInSystemContext" | "includeBootstrapInRuntimeContext"

46-

> {

47-

return {

48-

includeBootstrapInSystemContext: params.bootstrapMode === "full",

49-

includeBootstrapInRuntimeContext: false,

50-

};

51-

}

52-
5336

function resolveAttemptBootstrapRouting(

5437

params: AttemptBootstrapRoutingInput,

5538

): AttemptBootstrapRouting {

@@ -66,22 +49,11 @@ function resolveAttemptBootstrapRouting(

6649
6750

return {

6851

bootstrapMode,

69-

...resolveBootstrapContextTargets({ bootstrapMode }),

52+

includeBootstrapInSystemContext: bootstrapMode === "full",

53+

includeBootstrapInRuntimeContext: false,

7054

};

7155

}

7256
73-

export function hasBootstrapFileContent(files?: readonly WorkspaceBootstrapFile[]): boolean {

74-

return (

75-

files?.some(

76-

(file) =>

77-

file.name === DEFAULT_BOOTSTRAP_FILENAME &&

78-

!file.missing &&

79-

typeof file.content === "string" &&

80-

file.content.trim().length > 0,

81-

) ?? false

82-

);

83-

}

84-
8557

/**

8658

* Resolves workspace bootstrap routing after checking pending state and

8759

* hook-provided bootstrap files. Hook content counts as both pending bootstrap

@@ -94,7 +66,14 @@ export async function resolveAttemptWorkspaceBootstrapRouting(

9466

const workspaceBootstrapPending = await params.isWorkspaceBootstrapPending(

9567

params.resolvedWorkspace,

9668

);

97-

const hasHookBootstrapContent = hasBootstrapFileContent(params.bootstrapFiles);

69+

const hasHookBootstrapContent =

70+

params.bootstrapFiles?.some(

71+

(file) =>

72+

file.name === DEFAULT_BOOTSTRAP_FILENAME &&

73+

!file.missing &&

74+

typeof file.content === "string" &&

75+

file.content.trim().length > 0,

76+

) ?? false;

9877

return resolveAttemptBootstrapRouting({

9978

...params,

10079

workspaceBootstrapPending: workspaceBootstrapPending || hasHookBootstrapContent,

Original file line numberDiff line numberDiff line change

@@ -1,10 +1,6 @@

11

// Coverage for bootstrap routing across canonical and effective workspaces.

22

import { describe, expect, it, vi } from "vitest";

3-

import {

4-

hasBootstrapFileContent,

5-

resolveBootstrapContextTargets,

6-

resolveAttemptWorkspaceBootstrapRouting,

7-

} from "./attempt-bootstrap-routing.js";

3+

import { resolveAttemptWorkspaceBootstrapRouting } from "./attempt-bootstrap-routing.js";

84
95

describe("runEmbeddedAttempt bootstrap routing", () => {

106

it("resolves bootstrap pending from the canonical workspace instead of a copied sandbox", async () => {

@@ -100,34 +96,27 @@ describe("runEmbeddedAttempt bootstrap routing", () => {

10096

expect(routing.includeBootstrapInRuntimeContext).toBe(false);

10197

});

10298
103-

it("does not treat empty hook-provided BOOTSTRAP.md as pending bootstrap context", () => {

104-

expect(

105-

hasBootstrapFileContent([

99+

it("does not treat empty hook-provided BOOTSTRAP.md as pending bootstrap context", async () => {

100+

const routing = await resolveAttemptWorkspaceBootstrapRouting({

101+

isWorkspaceBootstrapPending: vi.fn(async () => false),

102+

bootstrapFiles: [

106103

{

107104

name: "BOOTSTRAP.md",

108105

path: "/tmp/openclaw-workspace/BOOTSTRAP.md",

109106

content: " ",

110107

missing: false,

111108

},

112-

]),

113-

).toBe(false);

114-

});

115-
116-

it("keeps BOOTSTRAP.md in Project Context for full bootstrap turns", () => {

117-

expect(resolveBootstrapContextTargets({ bootstrapMode: "full" })).toEqual({

118-

includeBootstrapInSystemContext: true,

119-

includeBootstrapInRuntimeContext: false,

109+

],

110+

trigger: "user",

111+

isPrimaryRun: true,

112+

isCanonicalWorkspace: true,

113+

effectiveWorkspace: "/tmp/openclaw-workspace",

114+

resolvedWorkspace: "/tmp/openclaw-workspace",

115+

hasBootstrapFileAccess: true,

120116

});

121-

});

122117
123-

it("excludes BOOTSTRAP.md from every context outside full bootstrap turns", () => {

124-

expect(resolveBootstrapContextTargets({ bootstrapMode: "limited" })).toEqual({

125-

includeBootstrapInSystemContext: false,

126-

includeBootstrapInRuntimeContext: false,

127-

});

128-

expect(resolveBootstrapContextTargets({ bootstrapMode: "none" })).toEqual({

129-

includeBootstrapInSystemContext: false,

130-

includeBootstrapInRuntimeContext: false,

131-

});

118+

expect(routing.bootstrapMode).toBe("none");

119+

expect(routing.includeBootstrapInSystemContext).toBe(false);

120+

expect(routing.includeBootstrapInRuntimeContext).toBe(false);

132121

});

133122

});

Original file line numberDiff line numberDiff line change

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

1616

resolveEmbeddedAgentBaseStreamFn,

1717

resolveEmbeddedAgentStreamFn,

1818

} from "../stream-resolution.js";

19-

import { resolveBootstrapContextTargets } from "./attempt-bootstrap-routing.js";

2019

import { buildContextEnginePromptCacheInfo } from "./attempt.context-engine-helpers.js";

2120

import {

2221

buildAfterTurnRuntimeContext,

@@ -332,23 +331,6 @@ describe("resolvePromptModeForSession", () => {

332331

});

333332

});

334333
335-

describe("resolveBootstrapContextTargets", () => {

336-

it("keeps BOOTSTRAP.md in system Project Context only for full bootstrap turns", () => {

337-

expect(resolveBootstrapContextTargets({ bootstrapMode: "full" })).toEqual({

338-

includeBootstrapInSystemContext: true,

339-

includeBootstrapInRuntimeContext: false,

340-

});

341-

expect(resolveBootstrapContextTargets({ bootstrapMode: "limited" })).toEqual({

342-

includeBootstrapInSystemContext: false,

343-

includeBootstrapInRuntimeContext: false,

344-

});

345-

expect(resolveBootstrapContextTargets({ bootstrapMode: "none" })).toEqual({

346-

includeBootstrapInSystemContext: false,

347-

includeBootstrapInRuntimeContext: false,

348-

});

349-

});

350-

});

351-
352334

describe("shouldWarnOnOrphanedUserRepair", () => {

353335

it("warns for user and manual runs", () => {

354336

expect(shouldWarnOnOrphanedUserRepair("user")).toBe(true);