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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
J
Java Code Geeks
B
Blog
腾讯CDC
博客园 - 三生石上(FineUI控件)
S
SegmentFault 最新的问题
H
Hackread – Cybersecurity News, Data Breaches, AI and More
博客园 - Franky
罗磊的独立博客
月光博客
月光博客
Jina AI
Jina AI
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
D
Docker
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
G
Google Developers Blog
V
Visual Studio Blog
I
InfoQ
有赞技术团队
有赞技术团队
D
DataBreaches.Net
Microsoft Security Blog
Microsoft Security Blog
WordPress大学
WordPress大学
阮一峰的网络日志
阮一峰的网络日志
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale

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
feat(cron): add direct job lookup · openclaw/openclaw@380...
samzong · 2026-05-12 · via Recent Commits to openclaw:main

@@ -29,7 +29,17 @@ import { resolveInternalSessionKey, resolveMainSessionAlias } from "./sessions-h

2929

// We spell out job/patch properties so that LLMs know what fields to send.

3030

// Nested unions are avoided; runtime validation happens in normalizeCronJob*.

313132-

const CRON_ACTIONS = ["status", "list", "add", "update", "remove", "run", "runs", "wake"] as const;

32+

const CRON_ACTIONS = [

33+

"status",

34+

"list",

35+

"get",

36+

"add",

37+

"update",

38+

"remove",

39+

"run",

40+

"runs",

41+

"wake",

42+

] as const;

33433444

const CRON_SCHEDULE_KINDS = ["at", "every", "cron"] as const;

3545

const CRON_WAKE_MODES = ["now", "next-heartbeat"] as const;

@@ -315,7 +325,6 @@ export const CronToolSchema = Type.Object(

315325

type CronToolOptions = {

316326

agentSessionKey?: string;

317327

currentDeliveryContext?: DeliveryContext;

318-

/** Restrict this cron tool instance to removing only this active cron job. */

319328

selfRemoveOnlyJobId?: string;

320329

};

321330

@@ -350,7 +359,7 @@ function readCronJobIdParam(params: Record<string, unknown>) {

350359

return readStringParam(params, "jobId") ?? readStringParam(params, "id");

351360

}

352361353-

const CRON_SELF_REMOVE_SCOPE_ERROR = "Cron tool is restricted to removing the current cron job.";

362+

const CRON_SELF_REMOVE_SCOPE_ERROR = "Cron tool is restricted to the current cron job.";

354363355364

function readCronSelfRemoveOnlyJobId(opts: CronToolOptions | undefined) {

356365

return opts?.selfRemoveOnlyJobId?.trim() || undefined;

@@ -369,7 +378,7 @@ function assertCronSelfRemoveScope(

369378

if (!selfRemoveOnlyJobId || isCronSelfIntrospectionAction(action)) {

370379

return;

371380

}

372-

if (action === "remove" || action === "runs") {

381+

if (action === "get" || action === "remove" || action === "runs") {

373382

const id = readCronJobIdParam(params);

374383

if (id && id === selfRemoveOnlyJobId) {

375384

return;

@@ -623,13 +632,14 @@ export function createCronTool(opts?: CronToolOptions, deps?: CronToolDeps): Any

623632

name: "cron",

624633

ownerOnly: isOpenClawOwnerOnlyCoreToolName("cron"),

625634

displaySummary: CRON_TOOL_DISPLAY_SUMMARY,

626-

description: `Manage Gateway cron jobs (status/list/add/update/remove/run/runs) and send wake events. Use this for reminders, "check back later" requests, delayed follow-ups, and recurring tasks. Do not emulate scheduling with exec sleep or process polling.

635+

description: `Manage Gateway cron jobs (status/list/get/add/update/remove/run/runs) and send wake events. Use this for reminders, "check back later" requests, delayed follow-ups, and recurring tasks. Do not emulate scheduling with exec sleep or process polling.

627636628637

Main-session cron jobs enqueue system events for heartbeat handling. Isolated cron jobs create background task runs that appear in \`openclaw tasks\`.

629638630639

ACTIONS:

631640

- status: Check cron scheduler status

632641

- list: List jobs (use includeDisabled:true to include disabled; agentId filters by agent, auto-filled from session)

642+

- get: Get one job by id (requires jobId)

633643

- add: Create job (requires job object, see schema below)

634644

- update: Modify job (requires jobId + patch object)

635645

- remove: Delete job (requires jobId)

@@ -692,7 +702,7 @@ CRITICAL CONSTRAINTS:

692702

Default: prefer isolated agentTurn jobs unless the user explicitly wants current-session binding.

693703694704

RESTRICTED CRON RUNS:

695-

- Some isolated cron runs receive a narrow cron grant for self-cleanup. In that mode, read-only status and list are for self-introspection only, runs (job run history) is allowed for the current job only, and mutation actions remain limited to removing the current cron job.

705+

- Some isolated cron runs receive a narrow cron grant for self-cleanup. In that mode, read-only status and list are for self-introspection only, get/runs are allowed for the current job only, and mutation actions remain limited to removing the current cron job.

696706697707

WAKE MODES (for wake action):

698708

- "next-heartbeat" (default): Wake on next heartbeat

@@ -756,6 +766,13 @@ Use jobId as the canonical identifier; id is accepted for compatibility. Use con

756766

selfRemoveOnlyJobId ? filterCronListResultToJobId(result, selfRemoveOnlyJobId) : result,

757767

);

758768

}

769+

case "get": {

770+

const id = readCronJobIdParam(params);

771+

if (!id) {

772+

throw new Error("jobId required (id accepted for backward compatibility)");

773+

}

774+

return jsonResult(await callGateway("cron.get", gatewayOpts, { id }));

775+

}

759776

case "add": {

760777

// Flat-params recovery: non-frontier models (e.g. Grok) sometimes flatten

761778

// job properties to the top level alongside `action` instead of nesting