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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
Jina AI
Jina AI
量子位
博客园 - 叶小钗
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
IT之家
IT之家
S
SegmentFault 最新的问题
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
雷峰网
雷峰网
博客园 - 聂微东
美团技术团队
Last Week in AI
Last Week in AI
罗磊的独立博客
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园_首页
V
Visual Studio Blog
大猫的无限游戏
大猫的无限游戏
The Cloudflare 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(channels): centralize conversation resolution · ...
steipete · 2026-04-23 · via Recent Commits to openclaw:main

@@ -13,14 +13,9 @@ import {

1313

import type { AcpRuntimeSessionMode } from "../acp/runtime/types.js";

1414

import { DEFAULT_HEARTBEAT_EVERY } from "../auto-reply/heartbeat.js";

1515

import {

16-

getChannelPlugin,

17-

getLoadedChannelPlugin,

18-

normalizeChannelId,

19-

} from "../channels/plugins/index.js";

20-

import {

21-

resolveBundledChannelThreadBindingDefaultPlacement,

22-

resolveBundledChannelThreadBindingInboundConversation,

23-

} from "../channels/plugins/thread-binding-api.js";

16+

resolveChannelDefaultBindingPlacement,

17+

resolveInboundConversationResolution,

18+

} from "../channels/conversation-resolution.js";

2419

import {

2520

resolveThreadBindingIntroText,

2621

resolveThreadBindingThreadName,

@@ -45,8 +40,6 @@ import type { SessionEntry } from "../config/sessions/types.js";

4540

import type { OpenClawConfig } from "../config/types.openclaw.js";

4641

import { callGateway } from "../gateway/call.js";

4742

import { areHeartbeatsEnabled } from "../infra/heartbeat-wake.js";

48-

import { resolveConversationIdFromTargets } from "../infra/outbound/conversation-id.js";

49-

import { normalizeConversationTargetRef } from "../infra/outbound/session-binding-normalization.js";

5043

import {

5144

getSessionBindingService,

5245

isSessionBindingError,

@@ -291,46 +284,6 @@ function resolvePlacementWithoutChannelPlugin(params: {

291284

return params.capabilities.placements.includes("child") ? "child" : "current";

292285

}

293286294-

function resolvePluginConversationRefForThreadBinding(params: {

295-

channelId: string;

296-

to?: string;

297-

threadId?: string | number;

298-

groupId?: string;

299-

}): { conversationId: string; parentConversationId?: string } | null {

300-

const resolverParams = {

301-

// Keep the live delivery target authoritative; conversationId is only a fallback hint.

302-

to: params.to,

303-

conversationId: params.groupId ?? params.to,

304-

threadId: params.threadId,

305-

isGroup: true,

306-

};

307-

const loadedPluginConversation = getLoadedChannelPlugin(

308-

params.channelId,

309-

)?.messaging?.resolveInboundConversation?.(resolverParams);

310-

const bundledApiConversation =

311-

loadedPluginConversation === undefined

312-

? resolveBundledChannelThreadBindingInboundConversation({

313-

channelId: params.channelId,

314-

...resolverParams,

315-

})

316-

: undefined;

317-

const resolvedConversation =

318-

loadedPluginConversation ??

319-

(bundledApiConversation !== undefined

320-

? bundledApiConversation

321-

: getChannelPlugin(params.channelId)?.messaging?.resolveInboundConversation?.(

322-

resolverParams,

323-

));

324-

const conversationId = normalizeOptionalString(resolvedConversation?.conversationId);

325-

if (!conversationId) {

326-

return null;

327-

}

328-

return normalizeConversationTargetRef({

329-

conversationId,

330-

parentConversationId: resolvedConversation?.parentConversationId,

331-

});

332-

}

333-334287

function resolveSpawnMode(params: {

335288

requestedMode?: SpawnAcpMode;

336289

threadRequested: boolean;

@@ -559,38 +512,23 @@ async function persistAcpSpawnSessionFileBestEffort(params: {

559512

}

560513561514

function resolveConversationRefForThreadBinding(params: {

515+

cfg: OpenClawConfig;

562516

channel?: string;

517+

accountId?: string;

563518

to?: string;

564519

threadId?: string | number;

565520

groupId?: string;

566521

}): { conversationId: string; parentConversationId?: string } | null {

567-

const channel = normalizeOptionalLowercaseString(params.channel);

568-

const normalizedChannelId = channel ? normalizeChannelId(channel) : null;

569-

const pluginResolvedConversation = normalizedChannelId

570-

? resolvePluginConversationRefForThreadBinding({

571-

channelId: normalizedChannelId,

572-

to: params.to,

573-

threadId: params.threadId,

574-

groupId: params.groupId,

575-

})

576-

: null;

577-

if (pluginResolvedConversation) {

578-

return pluginResolvedConversation;

579-

}

580-

const parentConversationId = resolveConversationIdFromTargets({

581-

targets: [params.to],

582-

});

583-

const genericConversationId = resolveConversationIdFromTargets({

522+

const resolution = resolveInboundConversationResolution({

523+

cfg: params.cfg,

524+

channel: params.channel,

525+

accountId: params.accountId,

526+

to: params.to,

584527

threadId: params.threadId,

585-

targets: [params.to],

528+

groupId: params.groupId,

529+

isGroup: true,

586530

});

587-

if (genericConversationId) {

588-

return normalizeConversationTargetRef({

589-

conversationId: genericConversationId,

590-

parentConversationId: params.threadId != null ? parentConversationId : undefined,

591-

});

592-

}

593-

return null;

531+

return resolution?.canonical ?? null;

594532

}

595533596534

function resolveAcpSpawnChannelAccountId(params: {

@@ -669,13 +607,7 @@ function prepareAcpThreadBinding(params: {

669607

error: `Thread bindings are unavailable for ${policy.channel}.`,

670608

};

671609

}

672-

const loadedPluginPlacement = getLoadedChannelPlugin(policy.channel)?.conversationBindings

673-

?.defaultTopLevelPlacement;

674-

const bundledApiPlacement =

675-

loadedPluginPlacement ?? resolveBundledChannelThreadBindingDefaultPlacement(policy.channel);

676-

const pluginPlacement =

677-

bundledApiPlacement ??

678-

getChannelPlugin(policy.channel)?.conversationBindings?.defaultTopLevelPlacement;

610+

const pluginPlacement = resolveChannelDefaultBindingPlacement(policy.channel);

679611

const placementToUse =

680612

pluginPlacement ??

681613

resolvePlacementWithoutChannelPlugin({

@@ -688,7 +620,9 @@ function prepareAcpThreadBinding(params: {

688620

};

689621

}

690622

const conversationRef = resolveConversationRefForThreadBinding({

623+

cfg: params.cfg,

691624

channel: policy.channel,

625+

accountId: policy.accountId,

692626

to: params.to,

693627

threadId: params.threadId,

694628

groupId: params.groupId,

@@ -1031,7 +965,9 @@ function resolveAcpSpawnBootstrapDeliveryPlan(params: {

1031965

fallbackThreadIdRaw != null ? normalizeOptionalString(String(fallbackThreadIdRaw)) : undefined;

1032966

const deliveryThreadId = boundThreadId ?? fallbackThreadId;

1033967

const requesterConversationRef = resolveConversationRefForThreadBinding({

968+

cfg: params.cfg,

1034969

channel: params.requester.origin?.channel,

970+

accountId: params.requester.origin?.accountId,

1035971

threadId: fallbackThreadId,

1036972

to: params.requester.origin?.to,

1037973

});