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

推荐订阅源

G
Google Developers Blog
阮一峰的网络日志
阮一峰的网络日志
博客园 - 聂微东
F
Fortinet All Blogs
H
Help Net Security
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
D
DataBreaches.Net
MyScale Blog
MyScale Blog
B
Blog
I
InfoQ
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
GbyAI
GbyAI
Google DeepMind News
Google DeepMind News
IT之家
IT之家
The GitHub Blog
The GitHub Blog
有赞技术团队
有赞技术团队
博客园_首页
L
LangChain Blog
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky

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(agents/cli-runner): gate cliSessionBinding persist on...
adele-with-a · 2026-05-30 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import type { ReplyPayload } from "../auto-reply/reply-payload.js";

22

import { SILENT_REPLY_TOKEN } from "../auto-reply/tokens.js";

33

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

44

import { createSubsystemLogger } from "../logging/subsystem.js";

5+

import { isClaudeCliProvider } from "../plugin-sdk/anthropic-cli.js";

56

import { buildAgentHookContextChannelFields } from "../plugins/hook-agent-context.js";

67

import { resolveBlockMessage } from "../plugins/hook-decision-types.js";

78

import { getGlobalHookRunner } from "../plugins/hook-runner-global.js";

@@ -11,6 +12,7 @@ import {

1112

loadCliSessionHistoryMessages,

1213

} from "./cli-runner/session-history.js";

1314

import type { PreparedCliRunContext, RunCliAgentParams } from "./cli-runner/types.js";

15+

import { claudeCliSessionTranscriptHasContent as claudeCliSessionTranscriptHasContentImpl } from "./command/attempt-execution.helpers.js";

1416

import { classifyFailoverReason, isFailoverErrorMessage } from "./embedded-agent-helpers.js";

1517

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

1618

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

@@ -32,6 +34,39 @@ import { SessionManager } from "./sessions/index.js";

32343335

const log = createSubsystemLogger("agents/cli-runner");

343637+

const cliRunnerDeps = {

38+

claudeCliSessionTranscriptHasContent: claudeCliSessionTranscriptHasContentImpl,

39+

};

40+41+

export function setCliRunnerTestDeps(overrides: Partial<typeof cliRunnerDeps>): void {

42+

Object.assign(cliRunnerDeps, overrides);

43+

}

44+45+

export function restoreCliRunnerTestDeps(): void {

46+

cliRunnerDeps.claudeCliSessionTranscriptHasContent = claudeCliSessionTranscriptHasContentImpl;

47+

}

48+49+

export async function isCliBindingFlushed(

50+

sessionId: string | undefined,

51+

provider: string | undefined,

52+

): Promise<boolean> {

53+

if (!provider || !isClaudeCliProvider(provider)) {

54+

return true;

55+

}

56+

if (!sessionId) {

57+

return false;

58+

}

59+

for (const delayMs of [0, 50, 150]) {

60+

if (delayMs > 0) {

61+

await new Promise((resolve) => setTimeout(resolve, delayMs));

62+

}

63+

if (await cliRunnerDeps.claudeCliSessionTranscriptHasContent({ sessionId })) {

64+

return true;

65+

}

66+

}

67+

return false;

68+

}

69+3570

function flushSessionManagerFile(sessionManager: SessionManager): void {

3671

(sessionManager as unknown as { rewriteFile?: () => void }).rewriteFile?.();

3772

}

@@ -503,10 +538,21 @@ export async function runPreparedCliAgent(

503538

const buildCliRunResult = (resultParams: {

504539

output: Awaited<ReturnType<typeof executePreparedCliRun>>;

505540

effectiveCliSessionId?: string;

541+

bindingFlushOk?: boolean;

506542

}): EmbeddedAgentRunResult => {

507543

const text = resultParams.output.text?.trim();

508544

const rawText = resultParams.output.rawText?.trim();

509545

const payloads = text ? [{ text }] : undefined;

546+

const unflushedCliSessionId =

547+

resultParams.effectiveCliSessionId && resultParams.bindingFlushOk === false

548+

? resultParams.effectiveCliSessionId

549+

: undefined;

550+

const persistedCliSessionId = unflushedCliSessionId

551+

? undefined

552+

: resultParams.effectiveCliSessionId;

553+

const agentSessionId = unflushedCliSessionId

554+

? ""

555+

: (resultParams.effectiveCliSessionId ?? params.sessionId ?? "");

510556511557

return {

512558

payloads,

@@ -545,15 +591,15 @@ export async function runPreparedCliAgent(

545591

refusal: false,

546592

},

547593

agentMeta: {

548-

sessionId: resultParams.effectiveCliSessionId ?? params.sessionId ?? "",

594+

sessionId: agentSessionId,

549595

provider: params.provider,

550596

model: context.modelId,

551597

usage: resultParams.output.usage,

552598

...(resultParams.output.usage ? { lastCallUsage: resultParams.output.usage } : {}),

553-

...(resultParams.effectiveCliSessionId

599+

...(persistedCliSessionId

554600

? {

555601

cliSessionBinding: {

556-

sessionId: resultParams.effectiveCliSessionId,

602+

sessionId: persistedCliSessionId,

557603

...(context.effectiveAuthProfileId

558604

? { authProfileId: context.effectiveAuthProfileId }

559605

: {}),

@@ -672,6 +718,7 @@ export async function runPreparedCliAgent(

672718

assistantText,

673719

output,

674720

});

721+

const bindingFlushOk = await isCliBindingFlushed(effectiveCliSessionId, params.provider);

675722

await runCliAgentEndHook(params, {

676723

event: {

677724

messages: buildAgentEndMessages(lastAssistant),

@@ -681,7 +728,7 @@ export async function runPreparedCliAgent(

681728

ctx: hookContext,

682729

hookRunner,

683730

});

684-

return buildCliRunResult({ output, effectiveCliSessionId });

731+

return buildCliRunResult({ output, effectiveCliSessionId, bindingFlushOk });

685732

} catch (err) {

686733

if (isFailoverError(err)) {

687734

const retryableSessionId = context.reusableCliSession.sessionId ?? params.cliSessionId;

@@ -704,6 +751,10 @@ export async function runPreparedCliAgent(

704751

assistantText,

705752

output,

706753

});

754+

const bindingFlushOk = await isCliBindingFlushed(

755+

effectiveCliSessionId,

756+

params.provider,

757+

);

707758

await runCliAgentEndHook(params, {

708759

event: {

709760

messages: buildAgentEndMessages(lastAssistant),

@@ -713,7 +764,7 @@ export async function runPreparedCliAgent(

713764

ctx: hookContext,

714765

hookRunner,

715766

});

716-

return buildCliRunResult({ output, effectiveCliSessionId });

767+

return buildCliRunResult({ output, effectiveCliSessionId, bindingFlushOk });

717768

} catch (retryErr) {

718769

const retryMessage = formatErrorMessage(retryErr);

719770

await runCliAgentEndHook(params, {