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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
WordPress大学
WordPress大学
博客园 - 三生石上(FineUI控件)
J
Java Code Geeks
Vercel News
Vercel News
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
罗磊的独立博客
B
Blog
博客园_首页
A
About on SuperTechFans
有赞技术团队
有赞技术团队
V
V2EX
U
Unit 42
I
InfoQ
IT之家
IT之家
博客园 - 司徒正美
阮一峰的网络日志
阮一峰的网络日志
博客园 - 叶小钗
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Stack Overflow Blog
Stack Overflow Blog
The Cloudflare Blog
H
Help Net Security

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(ci): repair extension type drift · openclaw/openclaw@...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

File tree

    • slack/src/monitor/message-handler

Original file line numberDiff line numberDiff line change

@@ -9,7 +9,7 @@ import {

99

type AcpRuntimeTurn,

1010

} from "../runtime-api.js";

1111

import { OPENCLAW_ACPX_LEASE_ID_ARG, OPENCLAW_GATEWAY_INSTANCE_ID_ARG } from "./process-lease.js";

12-

import { AcpxRuntime, testing } from "./runtime.js";

12+

import { AcpxRuntime, testing, type AcpSessionStore } from "./runtime.js";

1313
1414

type TestSessionStore = {

1515

load(sessionId: string): Promise<Record<string, unknown> | undefined>;

@@ -55,7 +55,7 @@ function makeRuntime(

5555

const runtime = new AcpxRuntime(

5656

{

5757

cwd: "/tmp",

58-

sessionStore: baseStore,

58+

sessionStore: baseStore as unknown as AcpSessionStore,

5959

agentRegistry: {

6060

resolve: (agentName: string) => (agentName === "openclaw" ? "openclaw acp" : agentName),

6161

list: () => ["codex", "openclaw"],

Original file line numberDiff line numberDiff line change

@@ -238,7 +238,7 @@ function createResetAwareSessionStore(

238238

...(record as Record<string, unknown>),

239239

openclawLeaseId: lease.leaseId,

240240

openclawGatewayInstanceId: lease.gatewayInstanceId,

241-

} as AcpLoadedSessionRecord;

241+

} as unknown as AcpLoadedSessionRecord;

242242

},

243243

async save(record: AcpSessionRecord): Promise<void> {

244244

let recordToSave = record;

@@ -273,7 +273,7 @@ function createResetAwareSessionStore(

273273

agentCommand: stableAgentCommand,

274274

openclawLeaseId: launch.leaseId,

275275

openclawGatewayInstanceId: launch.gatewayInstanceId,

276-

} as AcpSessionRecord;

276+

} as unknown as AcpSessionRecord;

277277

}

278278

await baseStore.save(recordToSave);

279279

if (sessionName) {

Original file line numberDiff line numberDiff line change

@@ -750,7 +750,6 @@ class GoogleRealtimeVoiceBridge implements RealtimeVoiceBridge {

750750

);

751751

}

752752
753-

let emittedAssistantText = false;

754753

for (const part of content.modelTurn?.parts ?? []) {

755754

if (part.inlineData?.data) {

756755

const pcm = Buffer.from(part.inlineData.data, "base64");

@@ -766,7 +765,6 @@ class GoogleRealtimeVoiceBridge implements RealtimeVoiceBridge {

766765

continue;

767766

}

768767

if (!content.outputTranscription?.text && typeof part.text === "string" && part.text.trim()) {

769-

emittedAssistantText = true;

770768

this.config.onTranscript?.("assistant", part.text, content.turnComplete ?? false);

771769

}

772770

}

Original file line numberDiff line numberDiff line change

@@ -1159,7 +1159,7 @@ export async function dispatchPreparedSlackMessage(prepared: PreparedSlackMessag

11591159

}

11601160

}

11611161
1162-

const result = await deliverWithFinalizableLivePreviewAdapter({

1162+

await deliverWithFinalizableLivePreviewAdapter({

11631163

kind: info.kind,

11641164

payload,

11651165

adapter: defineFinalizableLivePreviewAdapter({