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

推荐订阅源

腾讯CDC
Microsoft Azure Blog
Microsoft Azure Blog
L
LangChain Blog
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
宝玉的分享
宝玉的分享
B
Blog RSS Feed
MongoDB | Blog
MongoDB | Blog
Jina AI
Jina AI
D
Docker
B
Blog
Engineering at Meta
Engineering at Meta
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
I
InfoQ
G
Google Developers Blog
博客园 - Franky
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
大猫的无限游戏
大猫的无限游戏
阮一峰的网络日志
阮一峰的网络日志
U
Unit 42

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
fix(command): stabilize claude-cli transcript resume (#81...
benjamin1492 · 2026-05-30 · via Recent Commits to openclaw:main

@@ -8,6 +8,7 @@ import type { OpenClawConfig } from "../../config/types.openclaw.js";

88

import { runEmbeddedAgent, type EmbeddedAgentRunResult } from "../embedded-agent.js";

99

import { FailoverError } from "../failover-error.js";

1010

import { persistCliTurnTranscript, runAgentAttempt } from "./attempt-execution.js";

11+

import { resolveClaudeCliProjectDirForWorkspace } from "./claude-cli-project-dir.js";

11121213

const runCliAgentMock = vi.hoisted(() => vi.fn());

1314

const runEmbeddedAgentMock = vi.hoisted(() => vi.fn());

@@ -179,6 +180,7 @@ describe("CLI attempt execution", () => {

179180

sessionStore: Record<string, SessionEntry>;

180181

body: string;

181182

runId: string;

183+

cwd?: string;

182184

}) {

183185

await runAgentAttempt({

184186

providerOverride: "claude-cli",

@@ -191,6 +193,7 @@ describe("CLI attempt execution", () => {

191193

sessionAgentId: "main",

192194

sessionFile: path.join(tmpDir, "session.jsonl"),

193195

workspaceDir: tmpDir,

196+

cwd: params.cwd,

194197

body: params.body,

195198

isFallbackRetry: false,

196199

resolvedThinkLevel: "medium",

@@ -213,7 +216,10 @@ describe("CLI attempt execution", () => {

213216214217

async function writeClaudeCliAssistantTranscript(cliSessionId: string) {

215218

const homeDir = path.join(tmpDir, `home-${cliSessionId}`);

216-

const projectsDir = path.join(homeDir, ".claude", "projects", "demo-workspace");

219+

const projectsDir = resolveClaudeCliProjectDirForWorkspace({

220+

workspaceDir: tmpDir,

221+

homeDir,

222+

});

217223

process.env.HOME = homeDir;

218224

await fs.mkdir(projectsDir, { recursive: true });

219225

await fs.writeFile(

@@ -247,7 +253,10 @@ describe("CLI attempt execution", () => {

247253

it("clears stale Claude CLI session IDs before retrying after session expiration", async () => {

248254

const sessionKey = "agent:main:subagent:cli-expired";

249255

const homeDir = path.join(tmpDir, "home");

250-

const projectsDir = path.join(homeDir, ".claude", "projects", "demo-workspace");

256+

const projectsDir = resolveClaudeCliProjectDirForWorkspace({

257+

workspaceDir: tmpDir,

258+

homeDir,

259+

});

251260

process.env.HOME = homeDir;

252261

await fs.mkdir(projectsDir, { recursive: true });

253262

await fs.writeFile(

@@ -437,7 +446,10 @@ describe("CLI attempt execution", () => {

437446

const sessionKey = "agent:main:direct:claude-transcript-present";

438447

const cliSessionId = "existing-claude-session";

439448

const homeDir = path.join(tmpDir, "home");

440-

const projectsDir = path.join(homeDir, ".claude", "projects", "demo-workspace");

449+

const projectsDir = resolveClaudeCliProjectDirForWorkspace({

450+

workspaceDir: tmpDir,

451+

homeDir,

452+

});

441453

process.env.HOME = homeDir;

442454

await fs.mkdir(projectsDir, { recursive: true });

443455

await fs.writeFile(

@@ -485,6 +497,48 @@ describe("CLI attempt execution", () => {

485497

expect(sessionStore[sessionKey]?.claudeCliSessionId).toBe(cliSessionId);

486498

});

487499500+

it("checks Claude CLI transcript content under the process cwd", async () => {

501+

const sessionKey = "agent:main:direct:claude-transcript-cwd-present";

502+

const cliSessionId = "existing-claude-cwd-session";

503+

const homeDir = path.join(tmpDir, "home");

504+

const cwd = path.join(tmpDir, "task");

505+

const projectsDir = resolveClaudeCliProjectDirForWorkspace({

506+

workspaceDir: cwd,

507+

homeDir,

508+

});

509+

process.env.HOME = homeDir;

510+

await fs.mkdir(projectsDir, { recursive: true });

511+

await fs.writeFile(

512+

path.join(projectsDir, `${cliSessionId}.jsonl`),

513+

`${JSON.stringify({

514+

type: "assistant",

515+

message: {

516+

role: "assistant",

517+

content: [{ type: "text", text: "previous reply" }],

518+

},

519+

})}\n`,

520+

"utf-8",

521+

);

522+

const sessionEntry = makeClaudeCliSessionEntry("openclaw-session-cwd", cliSessionId);

523+

const sessionStore: Record<string, SessionEntry> = { [sessionKey]: sessionEntry };

524+

await fs.writeFile(storePath, JSON.stringify(sessionStore, null, 2), "utf-8");

525+

runCliAgentMock.mockResolvedValueOnce(makeCliResult("resumed cli response"));

526+527+

await runClaudeCliAttempt({

528+

sessionKey,

529+

sessionEntry,

530+

sessionStore,

531+

body: "continue from task cwd",

532+

runId: "run-cli-transcript-cwd-present",

533+

cwd,

534+

});

535+536+

expect(runCliAgentMock).toHaveBeenCalledTimes(1);

537+

expect(firstRunCliAgentArg().cliSessionId).toBe(cliSessionId);

538+

expect(firstRunCliAgentArg().cwd).toBe(cwd);

539+

expect(sessionStore[sessionKey]?.cliSessionIds?.["claude-cli"]).toBe(cliSessionId);

540+

});

541+488542

it("passes session-bound OpenAI Codex auth profile to codex-cli aliases", async () => {

489543

const sessionKey = "agent:main:direct:codex-cli-auth-alias";

490544

const sessionEntry: SessionEntry = {