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

推荐订阅源

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(agents): remove unused transcript state helpers ...
vincentkoc · 2026-06-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,24 +1,17 @@

1-

import fs from "node:fs/promises";

21

import type {

32

SessionTranscriptRuntimeScope,

43

SessionTranscriptRuntimeTarget,

54

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

65

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

76

import {

87

persistTranscriptStateMutation,

9-

readTranscriptFileState,

108

type TranscriptFileState,

119

type TranscriptPersistedEntry,

1210

} from "./transcript-file-state.js";

1311
1412

export type RuntimeTranscriptScope = SessionTranscriptRuntimeScope;

1513

type RuntimeTranscriptTarget = SessionTranscriptRuntimeTarget;

1614
17-

type RuntimeTranscriptState = {

18-

state: TranscriptFileState;

19-

target: RuntimeTranscriptTarget;

20-

};

21-
2215

/**

2316

* Resolves the runtime transcript target for read/probe operations without

2417

* linking missing file-backed metadata into the session store.

@@ -29,19 +22,6 @@ export async function resolveRuntimeTranscriptReadTarget(

2922

return await resolveSessionTranscriptRuntimeReadTarget(scope);

3023

}

3124
32-

/**

33-

* Reads transcript state through the runtime transcript identity contract.

34-

*/

35-

export async function readRuntimeTranscriptState(

36-

scope: RuntimeTranscriptScope,

37-

): Promise<RuntimeTranscriptState> {

38-

const target = await resolveRuntimeTranscriptReadTarget(scope);

39-

return {

40-

state: await readTranscriptFileState(target.sessionFile),

41-

target,

42-

};

43-

}

44-
4525

/**

4626

* Persists an append or migration rewrite for a resolved runtime transcript.

4727

*/

@@ -56,34 +36,3 @@ export async function persistRuntimeTranscriptStateMutation(params: {

5636

appendedEntries: params.appendedEntries,

5737

});

5838

}

59-
60-

/**

61-

* Checks existence of the current runtime transcript without exposing path

62-

* identity to callers.

63-

*/

64-

export async function runtimeTranscriptExists(scope: RuntimeTranscriptScope): Promise<boolean> {

65-

const target = await resolveRuntimeTranscriptReadTarget(scope);

66-

try {

67-

const stat = await fs.stat(target.sessionFile);

68-

return stat.isFile();

69-

} catch {

70-

return false;

71-

}

72-

}

73-
74-

/**

75-

* Deletes the current runtime transcript. This remains file-backed until the

76-

* SQLite implementation owns transcript deletion in 3.2.

77-

*/

78-

export async function deleteRuntimeTranscript(scope: RuntimeTranscriptScope): Promise<boolean> {

79-

const target = await resolveRuntimeTranscriptReadTarget(scope);

80-

try {

81-

await fs.unlink(target.sessionFile);

82-

return true;

83-

} catch (err) {

84-

if ((err as NodeJS.ErrnoException).code === "ENOENT") {

85-

return false;

86-

}

87-

throw err;

88-

}

89-

}