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

推荐订阅源

腾讯CDC
N
Netflix TechBlog - Medium
aimingoo的专栏
aimingoo的专栏
P
Proofpoint News Feed
F
Fortinet All Blogs
大猫的无限游戏
大猫的无限游戏
I
InfoQ
V
V2EX
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
有赞技术团队
有赞技术团队
G
Google Developers Blog
L
LangChain Blog
博客园_首页
M
MIT News - Artificial intelligence
H
Hackread – Cybersecurity News, Data Breaches, AI and More
月光博客
月光博客
IT之家
IT之家
量子位
宝玉的分享
宝玉的分享
S
SegmentFault 最新的问题
Stack Overflow Blog
Stack Overflow Blog
V
Visual Studio Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
雷峰网
雷峰网

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(cron): preserve scheduled turn tool policy [AI] (#914...
mmaps · 2026-06-16 · via Recent Commits to openclaw:main

@@ -27,9 +27,11 @@ import * as openClawPluginTools from "./openclaw-plugin-tools.js";

2727

import { createOpenClawTools } from "./openclaw-tools.js";

2828

import { expectReadWriteEditTools } from "./test-helpers/agent-tools-fs-helpers.js";

2929

import { createAgentToolsSandboxContext } from "./test-helpers/agent-tools-sandbox-context.js";

30+

import { stubTool } from "./test-helpers/fast-tool-stubs.js";

3031

import { createHostSandboxFsBridge } from "./test-helpers/host-sandbox-fs-bridge.js";

3132

import { buildEmptyExplicitToolAllowlistError } from "./tool-allowlist-guard.js";

3233

import { DEFAULT_PLUGIN_TOOLS_ALLOWLIST_ENTRY, normalizeToolName } from "./tool-policy.js";

34+

import { replaceWithEffectiveCronCreatorToolAllowlist } from "./tools/cron-tool.js";

33353436

const tinyPngBuffer = Buffer.from(

3537

"iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mP8/x8AAwMCAO2f7z8AAAAASUVORK5CYII=",

@@ -154,6 +156,12 @@ function expectListIncludes(

154156

}

155157

}

156158159+

function cronCreatorToolNames(

160+

list: OpenClawToolsOptions["cronCreatorToolAllowlist"] | undefined,

161+

): string[] | undefined {

162+

return list?.map((entry) => (typeof entry === "string" ? entry : entry.name));

163+

}

164+157165

describe("createOpenClawCodingTools", () => {

158166

const testConfig: OpenClawConfig = {};

159167

@@ -739,6 +747,88 @@ describe("createOpenClawCodingTools", () => {

739747

expect(inheritedAllow?.includes("process")).toBe(false);

740748

});

741749750+

it("passes group-restricted tool surface to cron-created agent turns", () => {

751+

const createOpenClawToolsMock = vi.mocked(createOpenClawTools);

752+

createOpenClawToolsMock.mockClear();

753+754+

createOpenClawCodingTools({

755+

sessionKey: "agent:main:whatsapp:group:restricted-room",

756+

config: {

757+

tools: { allow: ["read", "exec", "process", "cron"] },

758+

channels: {

759+

whatsapp: {

760+

groups: {

761+

"restricted-room": {

762+

tools: { allow: ["read", "cron"] },

763+

},

764+

},

765+

},

766+

},

767+

},

768+

});

769+770+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

771+

const cronAllow = latestCreateOpenClawToolsOptions().cronCreatorToolAllowlist;

772+

const cronAllowNames = cronCreatorToolNames(cronAllow);

773+

expectListIncludes(cronAllowNames, ["read", "cron"]);

774+

expect(cronAllowNames?.includes("exec")).toBe(false);

775+

expect(cronAllowNames?.includes("process")).toBe(false);

776+

});

777+778+

it("lets embedded attempts refresh a caller-owned cron creator tool surface", () => {

779+

const createOpenClawToolsMock = vi.mocked(createOpenClawTools);

780+

createOpenClawToolsMock.mockClear();

781+

const cronCreatorToolAllowlistRef: NonNullable<

782+

OpenClawToolsOptions["cronCreatorToolAllowlist"]

783+

> = [];

784+785+

createOpenClawCodingTools({

786+

config: { tools: { allow: ["read", "cron"] } },

787+

cronCreatorToolAllowlistRef,

788+

});

789+790+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

791+

const cronAllow = latestCreateOpenClawToolsOptions().cronCreatorToolAllowlist;

792+

expect(cronAllow).toBe(cronCreatorToolAllowlistRef);

793+

expect(cronCreatorToolNames(cronAllow)).toEqual(["read", "cron"]);

794+795+

replaceWithEffectiveCronCreatorToolAllowlist(cronCreatorToolAllowlistRef, [

796+

stubTool("read"),

797+

stubTool("cron"),

798+

stubTool("bundle_mcp_search"),

799+

]);

800+801+

expect(cronCreatorToolNames(cronAllow)).toEqual(["read", "cron", "bundle_mcp_search"]);

802+

});

803+804+

it("passes deny-restricted tool surface to cron-created agent turns", () => {

805+

const createOpenClawToolsMock = vi.mocked(createOpenClawTools);

806+

createOpenClawToolsMock.mockClear();

807+808+

createOpenClawCodingTools({

809+

sessionKey: "agent:main:whatsapp:group:restricted-room",

810+

config: {

811+

tools: { allow: ["read", "exec", "process", "cron"] },

812+

channels: {

813+

whatsapp: {

814+

groups: {

815+

"restricted-room": {

816+

tools: { deny: ["exec", "process"] },

817+

},

818+

},

819+

},

820+

},

821+

},

822+

});

823+824+

expect(createOpenClawToolsMock).toHaveBeenCalledTimes(1);

825+

const cronAllow = latestCreateOpenClawToolsOptions().cronCreatorToolAllowlist;

826+

const cronAllowNames = cronCreatorToolNames(cronAllow);

827+

expectListIncludes(cronAllowNames, ["read", "cron"]);

828+

expect(cronAllowNames?.includes("exec")).toBe(false);

829+

expect(cronAllowNames?.includes("process")).toBe(false);

830+

});

831+742832

it("records core tool-prep stages for hot-path diagnostics", () => {

743833

const stages: string[] = [];

744834