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

推荐订阅源

V
Visual Studio Blog
N
Netflix TechBlog - Medium
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
T
Tailwind CSS Blog
IT之家
IT之家
博客园 - Franky
雷峰网
雷峰网
博客园 - 聂微东
腾讯CDC
M
MIT News - Artificial intelligence
B
Blog RSS Feed
博客园_首页
罗磊的独立博客
S
SegmentFault 最新的问题
I
InfoQ
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
阮一峰的网络日志
阮一峰的网络日志
D
Docker
宝玉的分享
宝玉的分享
B
Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报

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: assemble channel contexts in core · openclaw/op...
steipete · 2026-05-15 · via Recent Commits to openclaw:main

@@ -1,11 +1,11 @@

11

import {

2+

buildChannelTurnContext,

23

formatInboundEnvelope,

34

resolveEnvelopeFormatOptions,

45

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

56

import { resolveChannelContextVisibilityMode } from "openclaw/plugin-sdk/context-visibility-runtime";

67

import { resolvePinnedMainDmOwnerFromAllowlist } from "openclaw/plugin-sdk/conversation-runtime";

78

import { isDangerousNameMatchingEnabled } from "openclaw/plugin-sdk/dangerous-name-runtime";

8-

import { finalizeInboundContext } from "openclaw/plugin-sdk/reply-dispatch-runtime";

99

import { createChannelHistoryWindow } from "openclaw/plugin-sdk/reply-history";

1010

import { buildAgentSessionKey, resolveThreadSessionKeys } from "openclaw/plugin-sdk/routing";

1111

import { danger, logVerbose, shouldLogVerbose } from "openclaw/plugin-sdk/runtime-env";

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

2222

} from "./inbound-context.js";

2323

import type { DiscordMessagePreflightContext } from "./message-handler.preflight.js";

2424

import {

25-

buildDiscordMediaPayload,

2625

resolveReferencedReplyMediaList,

2726

resolveDiscordMessageText,

2827

type DiscordMediaInfo,

@@ -263,7 +262,6 @@ export async function buildDiscordMessageProcessContext(params: {

263262

parentSessionKey = undefined;

264263

}

265264

}

266-

const mediaPayload = buildDiscordMediaPayload(mediaListForContext);

267265

const preflightAudioIndex =

268266

preflightAudioTranscript === undefined

269267

? -1

@@ -329,59 +327,102 @@ export async function buildDiscordMessageProcessContext(params: {

329327

sessionKey: effectiveSessionKey,

330328

});

331329332-

const ctxPayload = finalizeInboundContext({

333-

Body: combinedBody,

334-

BodyForAgent: preflightAudioTranscript ?? baseText ?? text,

335-

InboundHistory: inboundHistory,

336-

RawBody: preflightAudioTranscript ?? baseText,

337-

CommandBody: preflightAudioTranscript ?? baseText,

338-

...(preflightAudioTranscript !== undefined ? { Transcript: preflightAudioTranscript } : {}),

339-

From: effectiveFrom,

340-

To: effectiveTo,

341-

SessionKey: effectiveSessionKey,

342-

AccountId: route.accountId,

343-

ChatType: isDirectMessage ? "direct" : "channel",

344-

ConversationLabel: fromLabel,

345-

SenderName: senderName,

346-

SenderId: sender.id,

347-

SenderUsername: senderUsername,

348-

SenderTag: sender.tag,

349-

GroupSubject: groupSubject,

350-

GroupChannel: groupChannel,

351-

MemberRoleIds: memberRoleIds,

352-

UntrustedContext: untrustedContext,

353-

GroupSystemPrompt: isGuildMessage ? groupSystemPrompt : undefined,

354-

GroupSpace: isGuildMessage ? (guildInfo?.id ?? guildSlug) || undefined : undefined,

355-

OwnerAllowFrom: ownerAllowFrom,

356-

Provider: "discord" as const,

357-

Surface: "discord" as const,

358-

WasMentioned: ctx.effectiveWasMentioned,

359-

MessageSid: canonicalMessageId ?? message.id,

360-

...(canonicalMessageId && canonicalMessageId !== message.id

361-

? { MessageSidFull: message.id }

362-

: {}),

363-

ReplyToId: filteredReplyContext?.id,

364-

ReplyToBody: filteredReplyContext?.body,

365-

ReplyToSender: filteredReplyContext?.sender,

366-

ParentSessionKey: autoThreadContext?.ParentSessionKey ?? threadKeys.parentSessionKey,

367-

ModelParentSessionKey:

368-

autoThreadContext?.ModelParentSessionKey ?? modelParentSessionKey ?? undefined,

369-

MessageThreadId: threadChannel?.id ?? autoThreadContext?.createdThreadId ?? undefined,

370-

ThreadStarterBody: !effectivePreviousTimestamp ? threadStarterBody : undefined,

371-

ThreadLabel: threadLabel,

372-

Timestamp: resolveTimestampMs(message.timestamp),

373-

...mediaPayload,

374-

...(preflightAudioIndex >= 0 ? { MediaTranscribedIndexes: [preflightAudioIndex] } : {}),

375-

CommandAuthorized: commandAuthorized,

376-

CommandTurn: {

330+

const ctxPayload = buildChannelTurnContext({

331+

channel: "discord",

332+

provider: "discord",

333+

surface: "discord",

334+

accountId: route.accountId,

335+

messageId: canonicalMessageId ?? message.id,

336+

messageIdFull: canonicalMessageId && canonicalMessageId !== message.id ? message.id : undefined,

337+

timestamp: resolveTimestampMs(message.timestamp),

338+

from: effectiveFrom,

339+

sender: {

340+

id: sender.id,

341+

name: senderName,

342+

username: senderUsername,

343+

tag: sender.tag,

344+

roles: memberRoleIds,

345+

displayLabel: senderLabel,

346+

},

347+

conversation: {

348+

kind: isDirectMessage ? "direct" : "channel",

349+

id: messageChannelId,

350+

label: fromLabel,

351+

spaceId: isGuildMessage ? (guildInfo?.id ?? guildSlug) || undefined : undefined,

352+

threadId: threadChannel?.id ?? autoThreadContext?.createdThreadId ?? undefined,

353+

routePeer: {

354+

kind: isDirectMessage ? "direct" : "channel",

355+

id: isDirectMessage ? author.id : messageChannelId,

356+

},

357+

},

358+

route: {

359+

agentId: route.agentId,

360+

accountId: route.accountId,

361+

routeSessionKey: route.sessionKey,

362+

dispatchSessionKey: effectiveSessionKey,

363+

parentSessionKey: autoThreadContext?.ParentSessionKey ?? threadKeys.parentSessionKey,

364+

modelParentSessionKey:

365+

autoThreadContext?.ModelParentSessionKey ?? modelParentSessionKey ?? undefined,

366+

},

367+

reply: {

368+

to: effectiveTo,

369+

originatingTo,

370+

},

371+

message: {

372+

body: combinedBody,

373+

rawBody: preflightAudioTranscript ?? baseText,

374+

bodyForAgent: preflightAudioTranscript ?? baseText ?? text,

375+

commandBody: preflightAudioTranscript ?? baseText,

376+

envelopeFrom: fromLabel,

377+

inboundHistory,

378+

},

379+

access: {

380+

mentions: {

381+

canDetectMention: ctx.canDetectMention,

382+

wasMentioned: ctx.effectiveWasMentioned,

383+

hasAnyMention: ctx.hasAnyMention,

384+

requireMention: ctx.shouldRequireMention,

385+

effectiveWasMentioned: ctx.effectiveWasMentioned,

386+

},

387+

commands: {

388+

authorized: commandAuthorized,

389+

allowTextCommands: ctx.allowTextCommands,

390+

useAccessGroups: false,

391+

authorizers: [],

392+

},

393+

},

394+

commandTurn: {

377395

kind: "text-slash" as const,

378396

source: "text" as const,

379397

authorized: commandAuthorized,

380398

body: preflightAudioTranscript ?? baseText,

381399

},

382-

CommandSource: "text" as const,

383-

OriginatingChannel: "discord" as const,

384-

OriginatingTo: originatingTo,

400+

media: mediaListForContext.map((media, index) => ({

401+

path: media.path,

402+

contentType: media.contentType,

403+

transcribed: index === preflightAudioIndex,

404+

})),

405+

supplemental: {

406+

quote: filteredReplyContext

407+

? {

408+

id: filteredReplyContext.id,

409+

body: filteredReplyContext.body,

410+

sender: filteredReplyContext.sender,

411+

}

412+

: undefined,

413+

thread: {

414+

starterBody: !effectivePreviousTimestamp ? threadStarterBody : undefined,

415+

label: threadLabel,

416+

},

417+

groupSystemPrompt: isGuildMessage ? groupSystemPrompt : undefined,

418+

},

419+

extra: {

420+

...(preflightAudioTranscript !== undefined ? { Transcript: preflightAudioTranscript } : {}),

421+

GroupSubject: groupSubject,

422+

GroupChannel: groupChannel,

423+

UntrustedContext: untrustedContext,

424+

OwnerAllowFrom: ownerAllowFrom,

425+

},

385426

});

386427

const persistedSessionKey = ctxPayload.SessionKey ?? route.sessionKey;

387428