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

推荐订阅源

IT之家
IT之家
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
A
About on SuperTechFans
博客园 - 聂微东
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
B
Blog RSS Feed
U
Unit 42
Stack Overflow Blog
Stack Overflow Blog
Recent Announcements
Recent Announcements
雷峰网
雷峰网
罗磊的独立博客
Microsoft Security Blog
Microsoft Security Blog
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
人人都是产品经理
人人都是产品经理
The GitHub Blog
The GitHub Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
P
Proofpoint News Feed
The Cloudflare Blog
D
Docker
大猫的无限游戏
大猫的无限游戏

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
refactor(sessions): dedupe session helpers · openclaw/ope...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,20 +1,15 @@

11

/**

22

* Updates persisted session metadata after agent command runs.

33

*/

4-

import path from "node:path";

54

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

65

import {

7-

canonicalizeAbsoluteSessionFilePath,

8-

resolveSessionFilePath,

9-

resolveSessionFilePathOptions,

6+

resolveCompactionSessionFile,

107

setSessionRuntimeModel,

118

type SessionEntry,

12-

rewriteSessionFileForNewSessionId,

139

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

1410

import { patchSessionEntry } from "../../config/sessions/session-accessor.js";

1511

import { resolveMaintenanceConfigFromInput } from "../../config/sessions/store-maintenance.js";

1612

import type { OpenClawConfig } from "../../config/types.openclaw.js";

17-

import { resolveAgentIdFromSessionKey } from "../../routing/session-key.js";

1813

import { createLazyImportLoader } from "../../shared/lazy-promise.js";

1914

import { clearCliSession, setCliSessionBinding, setCliSessionId } from "../cli-session.js";

2015

import { DEFAULT_CONTEXT_TOKENS } from "../defaults.js";

@@ -443,30 +438,3 @@ export async function recordCliCompactionInStore(params: {

443438

}

444439

return persisted ?? undefined;

445440

}

446-
447-

function resolveCompactionSessionFile(params: {

448-

entry: SessionEntry;

449-

sessionKey: string;

450-

storePath?: string;

451-

newSessionId: string;

452-

}): string {

453-

const agentId = resolveAgentIdFromSessionKey(params.sessionKey);

454-

const pathOpts = resolveSessionFilePathOptions({

455-

agentId,

456-

storePath: params.storePath,

457-

});

458-

const rewrittenSessionFile = rewriteSessionFileForNewSessionId({

459-

sessionFile: params.entry.sessionFile,

460-

previousSessionId: params.entry.sessionId,

461-

nextSessionId: params.newSessionId,

462-

});

463-

const normalizedRewrittenSessionFile =

464-

rewrittenSessionFile && path.isAbsolute(rewrittenSessionFile)

465-

? canonicalizeAbsoluteSessionFilePath(rewrittenSessionFile)

466-

: rewrittenSessionFile;

467-

return resolveSessionFilePath(

468-

params.newSessionId,

469-

normalizedRewrittenSessionFile ? { sessionFile: normalizedRewrittenSessionFile } : undefined,

470-

pathOpts,

471-

);

472-

}

Original file line numberDiff line numberDiff line change

@@ -1,14 +1,10 @@

11

/** Session update helpers for skill snapshots, compaction, and lifecycle hooks. */

22

import crypto from "node:crypto";

3-

import path from "node:path";

43

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

54

import { resolveSessionAgentId } from "../../agents/agent-scope.js";

65

import { canExecRequestNode } from "../../agents/exec-defaults.js";

76

import {

8-

canonicalizeAbsoluteSessionFilePath,

9-

resolveSessionFilePath,

10-

resolveSessionFilePathOptions,

11-

rewriteSessionFileForNewSessionId,

7+

resolveCompactionSessionFile,

128

type SessionEntry,

139

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

1410

import { patchSessionEntry, upsertSessionEntry } from "../../config/sessions/session-accessor.js";

@@ -334,30 +330,3 @@ export async function incrementCompactionCount(params: {

334330

}

335331

return nextCount;

336332

}

337-
338-

function resolveCompactionSessionFile(params: {

339-

entry: SessionEntry;

340-

sessionKey: string;

341-

storePath?: string;

342-

newSessionId: string;

343-

}): string {

344-

const agentId = resolveAgentIdFromSessionKey(params.sessionKey);

345-

const pathOpts = resolveSessionFilePathOptions({

346-

agentId,

347-

storePath: params.storePath,

348-

});

349-

const rewrittenSessionFile = rewriteSessionFileForNewSessionId({

350-

sessionFile: params.entry.sessionFile,

351-

previousSessionId: params.entry.sessionId,

352-

nextSessionId: params.newSessionId,

353-

});

354-

const normalizedRewrittenSessionFile =

355-

rewrittenSessionFile && path.isAbsolute(rewrittenSessionFile)

356-

? canonicalizeAbsoluteSessionFilePath(rewrittenSessionFile)

357-

: rewrittenSessionFile;

358-

return resolveSessionFilePath(

359-

params.newSessionId,

360-

normalizedRewrittenSessionFile ? { sessionFile: normalizedRewrittenSessionFile } : undefined,

361-

pathOpts,

362-

);

363-

}

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,6 @@

11

// Public facade for session stores, metadata, lifecycle, reset, transcript, and cleanup APIs.

22

export * from "./sessions/combined-store-gateway.js";

3+

export * from "./sessions/compaction-session-file.js";

34

export * from "./sessions/group.js";

45

export * from "./sessions/goals.js";

56

export * from "./sessions/artifacts.js";

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,36 @@

1+

// Compaction session-file rotation shares the same owner as session path resolution.

2+

import path from "node:path";

3+

import { resolveAgentIdFromSessionKey } from "../../routing/session-key.js";

4+

import { resolveSessionFilePath, resolveSessionFilePathOptions } from "./paths.js";

5+

import {

6+

canonicalizeAbsoluteSessionFilePath,

7+

rewriteSessionFileForNewSessionId,

8+

} from "./session-file-rotation.js";

9+

import type { SessionEntry } from "./types.js";

10+
11+

export function resolveCompactionSessionFile(params: {

12+

entry: SessionEntry;

13+

sessionKey: string;

14+

storePath?: string;

15+

newSessionId: string;

16+

}): string {

17+

const agentId = resolveAgentIdFromSessionKey(params.sessionKey);

18+

const pathOpts = resolveSessionFilePathOptions({

19+

agentId,

20+

storePath: params.storePath,

21+

});

22+

const rewrittenSessionFile = rewriteSessionFileForNewSessionId({

23+

sessionFile: params.entry.sessionFile,

24+

previousSessionId: params.entry.sessionId,

25+

nextSessionId: params.newSessionId,

26+

});

27+

const normalizedRewrittenSessionFile =

28+

rewrittenSessionFile && path.isAbsolute(rewrittenSessionFile)

29+

? canonicalizeAbsoluteSessionFilePath(rewrittenSessionFile)

30+

: rewrittenSessionFile;

31+

return resolveSessionFilePath(

32+

params.newSessionId,

33+

normalizedRewrittenSessionFile ? { sessionFile: normalizedRewrittenSessionFile } : undefined,

34+

pathOpts,

35+

);

36+

}

Original file line numberDiff line numberDiff line change

@@ -1,5 +1,6 @@

11

// Session goal state tracks objective progress and token budgets in the session store.

22

import crypto from "node:crypto";

3+

import { formatTokenCount } from "../../utils/token-format.js";

34

import { getSessionEntry, patchSessionEntry } from "./store.js";

45

import { resolveFreshSessionTotalTokens } from "./types.js";

56

import type { SessionEntry, SessionGoal, SessionGoalStatus } from "./types.js";

@@ -62,25 +63,6 @@ function cloneGoal(goal: SessionGoal): SessionGoal {

6263

return { ...goal };

6364

}

6465
65-

function formatGoalTokenCount(value: number | undefined): string {

66-

if (value === undefined || !Number.isFinite(value)) {

67-

return "0";

68-

}

69-

const safe = Math.max(0, value);

70-

if (safe >= 1_000_000) {

71-

return `${(safe / 1_000_000).toFixed(1)}m`;

72-

}

73-

if (safe >= 1_000) {

74-

const precision = safe >= 10_000 ? 0 : 1;

75-

const formattedThousands = (safe / 1_000).toFixed(precision);

76-

if (Number(formattedThousands) >= 1_000) {

77-

return `${(safe / 1_000_000).toFixed(1)}m`;

78-

}

79-

return `${formattedThousands}k`;

80-

}

81-

return String(Math.round(safe));

82-

}

83-
8466

export function resolveSessionGoalDisplayState(

8567

entry: Pick<SessionEntry, "goal" | "totalTokens" | "totalTokensFresh">,

8668

now?: number,

@@ -143,14 +125,14 @@ export function formatSessionGoalStatus(goal: SessionGoal | undefined): string {

143125

const budget =

144126

goal.tokenBudget === undefined

145127

? ""

146-

: `\nToken budget: ${formatGoalTokenCount(goal.tokensUsed)}/${formatGoalTokenCount(goal.tokenBudget)}`;

128+

: `\nToken budget: ${formatTokenCount(goal.tokensUsed)}/${formatTokenCount(goal.tokenBudget)}`;

147129

const note = goal.lastStatusNote ? `\nNote: ${goal.lastStatusNote}` : "";

148130

const commands = resolveGoalCommandHint(goal.status);

149131

return [

150132

"Goal",

151133

`Status: ${goal.status}`,

152134

`Objective: ${goal.objective}`,

153-

`Tokens used: ${formatGoalTokenCount(goal.tokensUsed)}`,

135+

`Tokens used: ${formatTokenCount(goal.tokensUsed)}`,

154136

...(budget ? [budget.slice(1)] : []),

155137

...(note ? [note.slice(1)] : []),

156138

"",