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

推荐订阅源

GbyAI
GbyAI
Martin Fowler
Martin Fowler
I
InfoQ
腾讯CDC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Microsoft Security Blog
Microsoft Security Blog
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
云风的 BLOG
云风的 BLOG
F
Fortinet All Blogs
N
Netflix TechBlog - Medium
博客园 - 聂微东
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
博客园 - 三生石上(FineUI控件)
Y
Y Combinator Blog
博客园 - Franky
Engineering at Meta
Engineering at Meta
B
Blog
罗磊的独立博客
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
V
Visual Studio 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
refactor(auto-reply): centralize command turn context · o...
steipete · 2026-05-15 · via Recent Commits to openclaw:main

@@ -2,6 +2,7 @@ import {

22

DEFAULT_TIMING,

33

type StatusReactionController,

44

} from "openclaw/plugin-sdk/channel-feedback";

5+

import type { CommandTurnContext } from "openclaw/plugin-sdk/channel-inbound";

56

import { deliverInboundReplyWithMessageSendContext } from "openclaw/plugin-sdk/channel-message";

67

import { hasVisibleInboundReplyDispatch } from "openclaw/plugin-sdk/inbound-reply-dispatch";

78

import type { FinalizedMsgContext } from "openclaw/plugin-sdk/reply-runtime";

@@ -225,6 +226,7 @@ export function buildWhatsAppInboundContext(params: {

225226

combinedBody: string;

226227

commandBody?: string;

227228

commandAuthorized?: boolean;

229+

commandTurn?: CommandTurnContext;

228230

commandSource?: "text";

229231

conversationId: string;

230232

groupHistory?: GroupHistoryEntry[];

@@ -280,7 +282,12 @@ export function buildWhatsAppInboundContext(params: {

280282

SenderId: params.sender.id ?? params.sender.e164,

281283

SenderE164: params.sender.e164,

282284

CommandAuthorized: params.commandAuthorized,

283-

CommandSource: params.commandSource,

285+

CommandTurn: params.commandTurn,

286+

CommandSource:

287+

params.commandSource ??

288+

(params.commandTurn?.source === "native" || params.commandTurn?.source === "text"

289+

? params.commandTurn.source

290+

: undefined),

284291

ReplyThreading: params.replyThreading,

285292

WasMentioned: params.msg.wasMentioned,

286293

GroupSystemPrompt: params.groupSystemPrompt,

@@ -294,6 +301,43 @@ export function buildWhatsAppInboundContext(params: {

294301

return result;

295302

}

296303304+

function normalizeCommandTurnFromContext(value: unknown): CommandTurnContext | undefined {

305+

if (!value || typeof value !== "object") {

306+

return undefined;

307+

}

308+

const record = value as Partial<CommandTurnContext>;

309+

const kind = record.kind;

310+

const source = record.source;

311+

if (kind === "native" && source === "native" && typeof record.authorized === "boolean") {

312+

return {

313+

kind: "native",

314+

source: "native",

315+

authorized: record.authorized,

316+

commandName: typeof record.commandName === "string" ? record.commandName : undefined,

317+

body: typeof record.body === "string" ? record.body : undefined,

318+

};

319+

}

320+

if (kind === "text-slash" && source === "text" && typeof record.authorized === "boolean") {

321+

return {

322+

kind: "text-slash",

323+

source: "text",

324+

authorized: record.authorized,

325+

commandName: typeof record.commandName === "string" ? record.commandName : undefined,

326+

body: typeof record.body === "string" ? record.body : undefined,

327+

};

328+

}

329+

if (kind === "normal" && source === "message") {

330+

return {

331+

kind: "normal",

332+

source: "message",

333+

authorized: false,

334+

commandName: typeof record.commandName === "string" ? record.commandName : undefined,

335+

body: typeof record.body === "string" ? record.body : undefined,

336+

};

337+

}

338+

return undefined;

339+

}

340+297341

export function resolveWhatsAppDmRouteTarget(params: {

298342

msg: WebInboundMsg;

299343

senderE164?: string;

@@ -427,6 +471,7 @@ export async function dispatchWhatsAppBufferedReply(params: {

427471

params.context.CommandSource === "native" || params.context.CommandSource === "text"

428472

? params.context.CommandSource

429473

: undefined;

474+

const sourceReplyCommandTurn = normalizeCommandTurnFromContext(params.context.CommandTurn);

430475

const sourceReplyCommandAuthorized =

431476

typeof params.context.CommandAuthorized === "boolean"

432477

? params.context.CommandAuthorized

@@ -437,6 +482,7 @@ export async function dispatchWhatsAppBufferedReply(params: {

437482

cfg: params.cfg,

438483

ctx: {

439484

ChatType: sourceReplyChatType,

485+

CommandTurn: sourceReplyCommandTurn,

440486

CommandSource: sourceReplyCommandSource,

441487

CommandAuthorized: sourceReplyCommandAuthorized,

442488

},