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

推荐订阅源

WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
D
DataBreaches.Net
月光博客
月光博客
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
U
Unit 42
腾讯CDC
爱范儿
爱范儿
J
Java Code Geeks
有赞技术团队
有赞技术团队
Blog — PlanetScale
Blog — PlanetScale
N
Netflix TechBlog - Medium
B
Blog
Stack Overflow Blog
Stack Overflow Blog
GbyAI
GbyAI
T
The Blog of Author Tim Ferriss
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
大猫的无限游戏
大猫的无限游戏
Microsoft Azure Blog
Microsoft Azure Blog
T
Tailwind CSS 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(doctor): require confirmation for transcript archive ...
steipete · 2026-04-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

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

1717

- Agents/models: keep per-agent primary models strict when `fallbacks` is omitted, so probe-only custom providers are not tried as hidden fallback candidates unless the agent explicitly opts in. Fixes #73332. Thanks @haumanto.

1818

- Gateway/models: add `models.pricing.enabled` so offline or restricted-network installs can skip startup OpenRouter and LiteLLM pricing-catalog fetches while keeping explicit model costs working. Fixes #53639. Thanks @callebtc, @palewire, and @rjdjohnston.

1919

- Onboarding: pin interactive and non-interactive health checks to the just-configured setup token/password so stale `OPENCLAW_GATEWAY_TOKEN` or `OPENCLAW_GATEWAY_PASSWORD` values do not produce false gateway-token-mismatch failures after setup. Fixes #72203. Thanks @galiniliev.

20+

- Doctor/state: require an interactive confirmation before archiving orphan transcript files, so `openclaw doctor --fix` no longer silently renames recoverable session history after upgrades regenerate `sessions.json`. Fixes #73106. Thanks @scottgl9.

2021

- Cron/Telegram: preserve explicit `:topic:` delivery targets over stale session-derived thread IDs when isolated cron announces to Telegram forum topics. Carries forward #59069; refs #49704 and #43808. Thanks @roytong9.

2122

- Build/runtime: write the runtime-postbuild stamp after `pnpm build` writes the build stamp, so the next CLI invocation does not re-sync runtime artifacts after a successful build. Fixes #73151. Thanks @bittoby.

2223

- Build/runtime: preserve staged bundled-plugin runtime dependency caches across source-checkout tsdown rebuilds, so local CLI and gateway-watch rebuilds no longer recreate large plugin dependency trees before starting. Refs #73205. Thanks @SymbolStar.

Original file line numberDiff line numberDiff line change

@@ -41,7 +41,7 @@ Notes:

4141

- Interactive prompts (like keychain/OAuth fixes) only run when stdin is a TTY and `--non-interactive` is **not** set. Headless runs (cron, Telegram, no terminal) will skip prompts.

4242

- Performance: non-interactive `doctor` runs skip eager plugin loading so headless health checks stay fast. Interactive sessions still fully load plugins when a check needs their contribution.

4343

- `--fix` (alias for `--repair`) writes a backup to `~/.openclaw/openclaw.json.bak` and drops unknown config keys, listing each removal.

44-

- State integrity checks now detect orphan transcript files in the sessions directory and can archive them as `.deleted.<timestamp>` to reclaim space safely.

44+

- State integrity checks now detect orphan transcript files in the sessions directory. Archiving them as `.deleted.<timestamp>` requires an interactive confirmation; `--fix`, `--yes`, and headless runs leave them in place.

4545

- Doctor also scans `~/.openclaw/cron/jobs.json` (or `cron.store`) for legacy cron job shapes and can rewrite them in place before the scheduler has to auto-normalize them at runtime.

4646

- Doctor repairs missing bundled plugin runtime dependencies without writing into packaged global installs. For root-owned npm installs or hardened systemd units, set `OPENCLAW_PLUGIN_STAGE_DIR` to a writable directory such as `/var/lib/openclaw/plugin-runtime-deps`; it can also be a path-list such as `/opt/openclaw/plugin-runtime-deps:/var/lib/openclaw/plugin-runtime-deps`, where earlier roots are read-only lookup layers and the final root is the repair target.

4747

- Doctor repairs stale plugin config by removing missing plugin ids from `plugins.allow`/`plugins.entries`, plus matching dangling channel config, heartbeat targets, and channel model overrides when plugin discovery is healthy.

Original file line numberDiff line numberDiff line change

@@ -85,6 +85,42 @@ describe("createDoctorPrompter", () => {

8585

expect(confirmMock).not.toHaveBeenCalled();

8686

});

8787
88+

it("does not auto-accept runtime repairs that require interactive confirmation", async () => {

89+

const prompter = createRepairPrompter();

90+
91+

await expect(

92+

prompter.confirmRuntimeRepair({

93+

message: "Archive orphan transcripts?",

94+

initialValue: false,

95+

requiresInteractiveConfirmation: true,

96+

}),

97+

).resolves.toBe(false);

98+

expect(confirmMock).not.toHaveBeenCalled();

99+

});

100+
101+

it("does not accept interactive-only runtime repairs through --yes defaults", async () => {

102+

setNonInteractiveTerminal();

103+

const prompter = createDoctorPrompter({

104+

runtime: {

105+

log: vi.fn(),

106+

error: vi.fn(),

107+

exit: vi.fn(),

108+

},

109+

options: {

110+

yes: true,

111+

},

112+

});

113+
114+

await expect(

115+

prompter.confirmRuntimeRepair({

116+

message: "Archive orphan transcripts?",

117+

initialValue: true,

118+

requiresInteractiveConfirmation: true,

119+

}),

120+

).resolves.toBe(false);

121+

expect(confirmMock).not.toHaveBeenCalled();

122+

});

123+
88124

it("keeps skip-in-non-interactive prompts disabled during update-mode repairs", async () => {

89125

process.env.OPENCLAW_UPDATE_IN_PROGRESS = "1";

90126

const prompter = createRepairPrompter();

Original file line numberDiff line numberDiff line change

@@ -11,11 +11,16 @@ import { guardCancel } from "./onboard-helpers.js";

1111
1212

export type { DoctorOptions } from "./doctor.types.js";

1313
14+

type DoctorConfirmParams = Parameters<typeof confirm>[0];

15+

type DoctorRuntimeRepairConfirmParams = DoctorConfirmParams & {

16+

requiresInteractiveConfirmation?: boolean;

17+

};

18+
1419

export type DoctorPrompter = {

1520

confirm: (params: Parameters<typeof confirm>[0]) => Promise<boolean>;

1621

confirmAutoFix: (params: Parameters<typeof confirm>[0]) => Promise<boolean>;

1722

confirmAggressiveAutoFix: (params: Parameters<typeof confirm>[0]) => Promise<boolean>;

18-

confirmRuntimeRepair: (params: Parameters<typeof confirm>[0]) => Promise<boolean>;

23+

confirmRuntimeRepair: (params: DoctorRuntimeRepairConfirmParams) => Promise<boolean>;

1924

select: <T>(params: Parameters<typeof select>[0], fallback: T) => Promise<T>;

2025

shouldRepair: boolean;

2126

shouldForce: boolean;

@@ -71,19 +76,26 @@ export function createDoctorPrompter(params: {

7176

);

7277

},

7378

confirmRuntimeRepair: async (p) => {

74-

if (shouldAutoApproveDoctorFix(repairMode, { blockDuringUpdate: true })) {

79+

const { requiresInteractiveConfirmation, ...confirmParams } = p;

80+

if (

81+

requiresInteractiveConfirmation !== true &&

82+

shouldAutoApproveDoctorFix(repairMode, { blockDuringUpdate: true })

83+

) {

7584

return true;

7685

}

86+

if (requiresInteractiveConfirmation === true && !repairMode.canPrompt) {

87+

return false;

88+

}

7789

if (repairMode.nonInteractive) {

7890

return false;

7991

}

8092

if (!repairMode.canPrompt) {

81-

return p.initialValue ?? false;

93+

return confirmParams.initialValue ?? false;

8294

}

8395

return guardCancel(

8496

await confirm({

85-

...p,

86-

message: stylePromptMessage(p.message),

97+

...confirmParams,

98+

message: stylePromptMessage(confirmParams.message),

8799

}),

88100

params.runtime,

89101

);

Original file line numberDiff line numberDiff line change

@@ -296,12 +296,35 @@ describe("doctor state integrity oauth dir checks", () => {

296296

expect(confirmRuntimeRepair).toHaveBeenCalledWith(

297297

expect.objectContaining({

298298

message: expect.stringContaining("This only renames them to *.deleted.<timestamp>."),

299+

requiresInteractiveConfirmation: true,

299300

}),

300301

);

301302

const files = fs.readdirSync(sessionsDir);

302303

expect(files.some((name) => name.startsWith("orphan-session.jsonl.deleted."))).toBe(true);

303304

});

304305
306+

it("does not auto-archive orphan transcripts from non-interactive repair mode", async () => {

307+

const cfg: OpenClawConfig = {};

308+

setupSessionState(cfg, process.env, process.env.HOME ?? "");

309+

const sessionsDir = resolveSessionTranscriptsDirForAgent("main", process.env, () => tempHome);

310+

fs.writeFileSync(path.join(sessionsDir, "orphan-session.jsonl"), '{"type":"session"}\n');

311+

const confirmRuntimeRepair = vi.fn(

312+

async (params: { initialValue?: boolean; requiresInteractiveConfirmation?: boolean }) =>

313+

params.requiresInteractiveConfirmation !== true,

314+

);

315+

await noteStateIntegrity(cfg, { confirmRuntimeRepair, note: noteMock });

316+
317+

expect(confirmRuntimeRepair).toHaveBeenCalledWith(

318+

expect.objectContaining({

319+

initialValue: false,

320+

requiresInteractiveConfirmation: true,

321+

}),

322+

);

323+

const files = fs.readdirSync(sessionsDir);

324+

expect(files).toContain("orphan-session.jsonl");

325+

expect(files.some((name) => name.startsWith("orphan-session.jsonl.deleted."))).toBe(false);

326+

});

327+
305328

it.skipIf(process.platform === "win32")(

306329

"does not archive referenced transcripts when the state dir path resolves through a symlink",

307330

async () => {

Original file line numberDiff line numberDiff line change

@@ -28,7 +28,11 @@ import { note } from "../terminal/note.js";

2828

import { shortenHomePath } from "../utils.js";

2929
3030

type DoctorPrompterLike = {

31-

confirmRuntimeRepair: (params: { message: string; initialValue?: boolean }) => Promise<boolean>;

31+

confirmRuntimeRepair: (params: {

32+

message: string;

33+

initialValue?: boolean;

34+

requiresInteractiveConfirmation?: boolean;

35+

}) => Promise<boolean>;

3236

note?: typeof note;

3337

};

3438

@@ -921,6 +925,7 @@ export async function noteStateIntegrity(

921925

const archiveOrphans = await prompter.confirmRuntimeRepair({

922926

message: `Archive ${orphanCount} in ${displaySessionsDir}? This only renames them to *.deleted.<timestamp>.`,

923927

initialValue: false,

928+

requiresInteractiveConfirmation: true,

924929

});

925930

if (archiveOrphans) {

926931

let archived = 0;