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

推荐订阅源

G
Google Developers Blog
博客园 - 聂微东
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
Jina AI
Jina AI
D
Docker
B
Blog
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
D
DataBreaches.Net
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
月光博客
月光博客
F
Fortinet All Blogs
爱范儿
爱范儿
H
Help Net Security
腾讯CDC
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
WordPress大学
WordPress大学
The Cloudflare Blog
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
U
Unit 42

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): stop promising --fix for working isolated sh...
clawsweeper · 2026-06-22 · via Recent Commits to openclaw:main

@@ -600,6 +600,144 @@ describe("maybeRepairLegacyCronStore", () => {

600600

expectNoteContaining("1 job still uses legacy", "Cron");

601601

});

602602603+

it("advises on isolated shell-prompt jobs without a non-actionable --fix repair note (#94655)", async () => {

604+

const storePath = await makeTempStorePath();

605+

const shellPromptJobs: Array<Record<string, unknown>> = [

606+

createCurrentCronJob({

607+

id: "shell-prompt-job-1",

608+

name: "Shell prompt job 1",

609+

schedule: { kind: "cron", expr: "*/30 * * * *", tz: "UTC" },

610+

sessionTarget: "isolated",

611+

payload: {

612+

kind: "agentTurn",

613+

message:

614+

"Run python3 scripts/check_mail.py and send a compact summary if anything changed.",

615+

toolsAllow: ["*"],

616+

},

617+

delivery: { mode: "announce" },

618+

}),

619+

createCurrentCronJob({

620+

id: "shell-prompt-job-2",

621+

name: "Shell prompt job 2",

622+

schedule: { kind: "cron", expr: "15 * * * *", tz: "UTC" },

623+

sessionTarget: "isolated",

624+

payload: {

625+

kind: "agentTurn",

626+

message: "Run node scripts/check_mail.js and summarize any new messages.",

627+

toolsAllow: ["bash"],

628+

},

629+

delivery: { mode: "announce" },

630+

}),

631+

createCurrentCronJob({

632+

id: "shell-prompt-job-3",

633+

name: "Shell prompt job 3",

634+

schedule: { kind: "cron", expr: "45 * * * *", tz: "UTC" },

635+

sessionTarget: "isolated",

636+

payload: {

637+

kind: "agentTurn",

638+

message: "Execute ./scripts/check_mail.sh and report changed mailbox counts.",

639+

toolsAllow: ["shell"],

640+

},

641+

delivery: { mode: "announce" },

642+

}),

643+

];

644+

const shellPromptJob = requirePersistedJob(shellPromptJobs, 0);

645+

await writeCurrentCronStore(storePath, shellPromptJobs);

646+647+

const prompter = makePrompter(true);

648+

await maybeRepairLegacyCronStore({

649+

cfg: createCronConfig(storePath),

650+

options: {},

651+

prompter,

652+

});

653+654+

// The advisory is informational only: doctor --fix cannot rewrite a working

655+

// isolated agentTurn job, so the misleading repair note must stay absent.

656+

expectNoNoteContaining("Cron store issues detected", "Cron");

657+

expectNoteContaining(

658+

"3 isolated cron jobs drive shell/process tools from the agent prompt and keep running as-is: `Shell prompt job 1`, `Shell prompt job 2`, `Shell prompt job 3`.",

659+

"Cron",

660+

);

661+

expectNoteContaining("informational only", "Cron");

662+

expectNoteContaining("Shell prompt job 1", "Cron");

663+

expectNoteContaining("Shell prompt job 2", "Cron");

664+

expectNoteContaining("Shell prompt job 3", "Cron");

665+

expectNoNoteContaining("openclaw doctor --fix", "Cron");

666+

expectNoNoteContaining("jobs.json", "Cron");

667+

expect(prompter.confirm).not.toHaveBeenCalled();

668+669+

// No churn: the advisory does not rewrite the still-working jobs.

670+

const persistedJobs = await readPersistedJobs(storePath);

671+

expect(persistedJobs).toEqual(shellPromptJobs);

672+

const job = requirePersistedJob(persistedJobs, 0);

673+

expect(job).toEqual(shellPromptJob);

674+

const reloaded = await loadCronJobsStoreWithConfigJobs(storePath);

675+

expect(reloaded.configJobIndexes).toEqual([0, 1, 2]);

676+

expect(reloaded.invalidConfigRows).toEqual([]);

677+

const configJob = requirePersistedJob(reloaded.configJobs, 0);

678+

expect(configJob).toEqual(

679+

Object.fromEntries(Object.entries(shellPromptJob).filter(([key]) => key !== "updatedAtMs")),

680+

);

681+

expect(reloaded.configJobRuntimeEntries[0]).toEqual({

682+

updatedAtMs: shellPromptJob.updatedAtMs,

683+

state: {},

684+

scheduleIdentity: JSON.stringify({

685+

version: 1,

686+

enabled: shellPromptJob.enabled,

687+

schedule: shellPromptJob.schedule,

688+

}),

689+

});

690+

const payload = requireRecord(job.payload, "cron payload");

691+

expect(payload.kind).toBe("agentTurn");

692+

expect(payload.message).toContain("python3 scripts/check_mail.py");

693+

});

694+695+

it("keeps restricted command prompts actionable without a --fix repair note", async () => {

696+

const storePath = await makeTempStorePath();

697+

const commandPromptJob = createCurrentCronJob({

698+

id: "restricted-command-prompt",

699+

name: "Restricted command prompt",

700+

schedule: { kind: "cron", expr: "*/30 * * * *", tz: "UTC" },

701+

sessionTarget: "isolated",

702+

payload: {

703+

kind: "agentTurn",

704+

message: [

705+

"Command to run:",

706+

"- command: python3 scripts/check_mail.py",

707+

"- workdir: /home/openclaw/.razor/clawd",

708+

].join("\n"),

709+

toolsAllow: ["read", "message"],

710+

},

711+

delivery: { mode: "announce" },

712+

});

713+

await writeCurrentCronStore(storePath, [commandPromptJob]);

714+715+

const prompter = makePrompter(true);

716+

await maybeRepairLegacyCronStore({

717+

cfg: createCronConfig(storePath),

718+

options: {},

719+

prompter,

720+

});

721+722+

expectNoNoteContaining("Cron store issues detected", "Cron");

723+

expectNoteContaining(

724+

"1 isolated cron job describes a shell command in the agent prompt but lacks shell/process tool access: `Restricted command prompt`.",

725+

"Cron",

726+

);

727+

expectNoteContaining("not the supported shell-tool prompt shape", "Cron");

728+

expectNoteContaining("Recreate the job as a command cron job", "Cron");

729+

expectNoNoteContaining("informational only", "Cron");

730+

expectNoNoteContaining("keep running as-is", "Cron");

731+

expectNoNoteContaining("openclaw doctor --fix", "Cron");

732+

expect(prompter.confirm).not.toHaveBeenCalled();

733+734+

const job = requirePersistedJob(await readPersistedJobs(storePath), 0);

735+

const payload = requireRecord(job.payload, "cron payload");

736+

expect(payload.kind).toBe("agentTurn");

737+

expect(payload.message).toContain("python3 scripts/check_mail.py");

738+

expect(payload.toolsAllow).toEqual(["read", "message"]);

739+

});

740+603741

it("repairs malformed persisted cron ids before list rendering sees them", async () => {

604742

const storePath = await makeTempStorePath();

605743

await writeCronStore(storePath, [