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

推荐订阅源

WordPress大学
WordPress大学
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
阮一峰的网络日志
阮一峰的网络日志
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
MyScale Blog
MyScale Blog
雷峰网
雷峰网
博客园 - 叶小钗
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园 - 三生石上(FineUI控件)
云风的 BLOG
云风的 BLOG
V
V2EX
宝玉的分享
宝玉的分享
酷 壳 – CoolShell
酷 壳 – CoolShell
N
Netflix TechBlog - Medium
Vercel News
Vercel News
美团技术团队
人人都是产品经理
人人都是产品经理
The Cloudflare Blog

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.31: add sessions.create lifecycle seam...
jalehman · 2026-06-17 · via Recent Commits to openclaw:main
11

import { randomUUID } from "node:crypto";

2+

import fs from "node:fs";

23

import path from "node:path";

34

import {

45

acquireSessionWriteLock,

56

resolveSessionWriteLockOptions,

67

} from "../../agents/session-write-lock.js";

8+

import { formatErrorMessage } from "../../infra/errors.js";

79

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

810

import { emitSessionTranscriptUpdate } from "../../sessions/transcript-events.js";

911

import type { SessionTranscriptUpdate } from "../../sessions/transcript-events.js";

@@ -26,6 +28,7 @@ import {

2628

patchSessionEntry as patchFileSessionEntry,

2729

readSessionUpdatedAt as readFileSessionUpdatedAt,

2830

resolveSessionStoreEntry,

31+

updateSessionStore,

2932

updateSessionStoreEntry as updateFileSessionStoreEntry,

3033

type SessionLifecycleArtifactCleanupParams,

3134

type SessionLifecycleArtifactCleanupResult,

@@ -40,6 +43,7 @@ import {

4043

withSessionTranscriptAppendQueue,

4144

} from "./transcript-append.js";

4245

import { resolveSessionTranscriptFile } from "./transcript-file-resolve.js";

46+

import { createSessionTranscriptHeader } from "./transcript-header.js";

4347

import { streamSessionTranscriptLines } from "./transcript-stream.js";

4448

import {

4549

type OwnedSessionTranscriptPublishedEntry,

@@ -243,6 +247,26 @@ export type SessionEntryPatchContext = {

243247

existingEntry?: SessionEntry;

244248

};

245249250+

export type SessionEntryCreateWithTranscriptContext = {

251+

/** Current entry under the requested key before creation, if any. */

252+

existingEntry?: SessionEntry;

253+

/** Current entries snapshot for validation rules such as label uniqueness. */

254+

sessionEntries: Record<string, SessionEntry>;

255+

};

256+257+

export type SessionEntryCreateWithTranscriptResult<TError = string> =

258+

| { ok: true; entry: SessionEntry; sessionFile: string }

259+

| { ok: false; error: TError; phase: "entry" }

260+

| { ok: false; error: string; phase: "transcript" };

261+262+

export type SessionEntryCreateWithTranscriptPrepareResult<TError = string> =

263+

| { ok: true; entry: SessionEntry }

264+

| { ok: false; error: TError };

265+266+

type CreatedSessionTranscriptResult =

267+

| { ok: true; sessionFile: string }

268+

| { ok: false; error: string; phase: "transcript" };

269+246270

export type { SessionLifecycleArtifactCleanupParams, SessionLifecycleArtifactCleanupResult };

247271248272

/** Returns the entry for a canonical or alias session key, if one exists. */

@@ -349,6 +373,100 @@ export async function patchSessionEntry(

349373

});

350374

}

351375376+

/**

377+

* Creates or updates one session entry and initializes its transcript header as

378+

* one storage-sized lifecycle operation. File-backed storage still writes JSON

379+

* plus JSONL, but callers no longer compose entry write, header creation,

380+

* rollback, and normalized sessionFile persistence themselves.

381+

*/

382+

export async function createSessionEntryWithTranscript<TError = string>(

383+

scope: SessionAccessScope,

384+

createEntry: (

385+

context: SessionEntryCreateWithTranscriptContext,

386+

) =>

387+

| Promise<SessionEntryCreateWithTranscriptPrepareResult<TError>>

388+

| SessionEntryCreateWithTranscriptPrepareResult<TError>,

389+

): Promise<SessionEntryCreateWithTranscriptResult<TError>> {

390+

const storePath = resolveAccessStorePath(scope);

391+

return await updateSessionStore(storePath, async (store) => {

392+

const resolved = resolveSessionStoreEntry({ store, sessionKey: scope.sessionKey });

393+

const created = await createEntry({

394+

existingEntry: resolved.existing ? { ...resolved.existing } : undefined,

395+

sessionEntries: cloneSessionEntries(store),

396+

});

397+

if (!created.ok) {

398+

return { ok: false, error: created.error, phase: "entry" };

399+

}

400+401+

const ensured = ensureCreatedSessionTranscript({

402+

agentId: scope.agentId,

403+

entry: created.entry,

404+

storePath,

405+

});

406+

if (!ensured.ok) {

407+

delete store[resolved.normalizedKey];

408+

return ensured;

409+

}

410+411+

const entry =

412+

created.entry.sessionFile === ensured.sessionFile

413+

? created.entry

414+

: {

415+

...created.entry,

416+

sessionFile: ensured.sessionFile,

417+

};

418+

store[resolved.normalizedKey] = entry;

419+

for (const legacyKey of resolved.legacyKeys) {

420+

delete store[legacyKey];

421+

}

422+

return { ok: true, entry, sessionFile: ensured.sessionFile };

423+

});

424+

}

425+426+

function cloneSessionEntries(store: Record<string, SessionEntry>): Record<string, SessionEntry> {

427+

return Object.fromEntries(

428+

Object.entries(store).map(([sessionKey, entry]) => [sessionKey, { ...entry }]),

429+

);

430+

}

431+432+

// File-backed creation resolves the concrete transcript artifact and writes the

433+

// header before the store mutation is saved; SQLite adapters implement this as

434+

// the same lifecycle operation without exposing rollback details to callers.

435+

function ensureCreatedSessionTranscript(params: {

436+

agentId?: string;

437+

entry: SessionEntry;

438+

storePath: string;

439+

}): CreatedSessionTranscriptResult {

440+

try {

441+

const sessionFile = resolveSessionFilePath(

442+

params.entry.sessionId,

443+

params.entry.sessionFile ? { sessionFile: params.entry.sessionFile } : undefined,

444+

{

445+

agentId: params.agentId,

446+

sessionsDir: path.dirname(path.resolve(params.storePath)),

447+

},

448+

);

449+

if (!fs.existsSync(sessionFile)) {

450+

fs.mkdirSync(path.dirname(sessionFile), { recursive: true });

451+

fs.writeFileSync(

452+

sessionFile,

453+

`${JSON.stringify(createSessionTranscriptHeader({ sessionId: params.entry.sessionId }))}\n`,

454+

{

455+

encoding: "utf-8",

456+

mode: 0o600,

457+

},

458+

);

459+

}

460+

return { ok: true, sessionFile };

461+

} catch (err) {

462+

return {

463+

ok: false,

464+

error: formatErrorMessage(err),

465+

phase: "transcript",

466+

};

467+

}

468+

}

469+352470

/** Updates an existing entry only; returns null when the session is absent. */

353471

export async function updateSessionEntry(

354472

scope: SessionAccessScope,