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

推荐订阅源

Y
Y Combinator Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 司徒正美
Blog — PlanetScale
Blog — PlanetScale
博客园 - 聂微东
月光博客
月光博客
量子位
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
P
Proofpoint News Feed
B
Blog RSS Feed
美团技术团队
腾讯CDC
C
Check Point Blog
Engineering at Meta
Engineering at Meta
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
Recent Announcements
Recent Announcements
J
Java Code Geeks
S
SegmentFault 最新的问题
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享

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
clawdbot-d02.1.9.1.39: add task session registry maintena...
jalehman · 2026-06-19 · via Recent Commits to openclaw:main
11

// Human-facing background task commands.

22

// Handles task listing/show/cancel/notify/audit plus registry maintenance for tasks, flows, and sessions.

334-

import fs from "node:fs";

54

import { timestampMsToIsoString } from "@openclaw/normalization-core/number-coercion";

65

import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce";

76

import { isRich, theme } from "../../packages/terminal-core/src/theme.js";

87

import { formatCliCommand } from "../cli/command-format.js";

98

import { formatLookupMiss } from "../cli/error-format.js";

109

import { getRuntimeConfig } from "../config/config.js";

1110

import {

12-

loadSessionStore,

13-

pruneStaleEntries,

1411

resolveAllAgentSessionStoreTargetsSync,

15-

updateSessionStore,

16-

type SessionEntry,

12+

runSessionRegistryMaintenanceForStore,

1713

} from "../config/sessions.js";

1814

import { loadCronJobsStoreSync, resolveCronJobsStorePath } from "../cron/store.js";

1915

import type { RuntimeEnv } from "../runtime.js";

20-

import { parseAgentSessionKey } from "../sessions/session-key-utils.js";

2116

import { getTaskById, updateTaskNotifyPolicyById } from "../tasks/runtime-internal.js";

2217

import { cancelDetachedTaskRunById } from "../tasks/task-executor.js";

2318

import { listTaskFlowAuditFindings } from "../tasks/task-flow-registry.audit.js";

@@ -133,14 +128,6 @@ type SessionRegistryMaintenanceSummary = {

133128

stores: SessionRegistryMaintenanceStoreSummary[];

134129

};

135130136-

function parseCronRunSessionJobId(sessionKey: string): string | undefined {

137-

const parsed = parseAgentSessionKey(sessionKey);

138-

if (!parsed) {

139-

return undefined;

140-

}

141-

return /^cron:([^:]+):run:[^:]+$/u.exec(parsed.rest)?.[1];

142-

}

143-144131

function readRunningCronJobIds(): Set<string> {

145132

try {

146133

const cronStorePath = resolveCronJobsStorePath(getRuntimeConfig().cron?.store);

@@ -155,95 +142,26 @@ function readRunningCronJobIds(): Set<string> {

155142

}

156143

}

157144158-

function buildSessionRegistryPreserveKeys(params: {

159-

store: Record<string, SessionEntry>;

160-

runningCronJobIds: ReadonlySet<string>;

161-

}): { preserveKeys: Set<string>; preservedRunning: number } {

162-

const preserveKeys = new Set<string>();

163-

let preservedRunning = 0;

164-

for (const key of Object.keys(params.store)) {

165-

const jobId = parseCronRunSessionJobId(key);

166-

if (!jobId) {

167-

// Non-cron session rows are outside this maintenance pass; preserve them.

168-

preserveKeys.add(key);

169-

continue;

170-

}

171-

if (params.runningCronJobIds.has(jobId)) {

172-

preserveKeys.add(key);

173-

preservedRunning += 1;

174-

}

175-

}

176-

return { preserveKeys, preservedRunning };

177-

}

178-179145

async function runSessionRegistryMaintenance(params: {

180146

apply: boolean;

181147

}): Promise<SessionRegistryMaintenanceSummary> {

182148

const cfg = getRuntimeConfig();

183149

const runningCronJobIds = readRunningCronJobIds();

184150

const stores: SessionRegistryMaintenanceStoreSummary[] = [];

185151

for (const target of resolveAllAgentSessionStoreTargetsSync(cfg)) {

186-

if (!fs.existsSync(target.storePath)) {

187-

stores.push({

188-

agentId: target.agentId,

189-

storePath: target.storePath,

190-

beforeCount: 0,

191-

afterCount: 0,

192-

pruned: 0,

193-

preservedRunning: 0,

194-

});

195-

continue;

196-

}

197-

const beforeStore = loadSessionStore(target.storePath, { skipCache: true });

198-

const beforeCount = Object.keys(beforeStore).length;

199-

if (params.apply) {

200-

// Apply mode mutates each store atomically through updateSessionStore.

201-

const applied = await updateSessionStore(

202-

target.storePath,

203-

(store) => {

204-

const { preserveKeys, preservedRunning } = buildSessionRegistryPreserveKeys({

205-

store,

206-

runningCronJobIds,

207-

});

208-

const pruned = pruneStaleEntries(store, SESSION_REGISTRY_RETENTION_MS, {

209-

log: false,

210-

preserveKeys,

211-

});

212-

return {

213-

pruned,

214-

afterCount: Object.keys(store).length,

215-

preservedRunning,

216-

};

217-

},

218-

{ skipMaintenance: true },

219-

);

220-

stores.push({

221-

agentId: target.agentId,

222-

storePath: target.storePath,

223-

beforeCount,

224-

afterCount: applied.afterCount,

225-

pruned: applied.pruned,

226-

preservedRunning: applied.preservedRunning,

227-

});

228-

continue;

229-

}

230-

const previewStore = structuredClone(beforeStore);

231-

// Preview mode runs pruning against a clone so dry-run output cannot change stores.

232-

const { preserveKeys, preservedRunning } = buildSessionRegistryPreserveKeys({

233-

store: previewStore,

152+

const result = await runSessionRegistryMaintenanceForStore({

153+

apply: params.apply,

154+

retentionMs: SESSION_REGISTRY_RETENTION_MS,

234155

runningCronJobIds,

235-

});

236-

const pruned = pruneStaleEntries(previewStore, SESSION_REGISTRY_RETENTION_MS, {

237-

log: false,

238-

preserveKeys,

156+

storePath: target.storePath,

239157

});

240158

stores.push({

241159

agentId: target.agentId,

242160

storePath: target.storePath,

243-

beforeCount,

244-

afterCount: Object.keys(previewStore).length,

245-

pruned,

246-

preservedRunning,

161+

beforeCount: result.beforeCount,

162+

afterCount: result.afterCount,

163+

pruned: result.pruned,

164+

preservedRunning: result.preservedRunning,

247165

});

248166

}

249167

return {