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

推荐订阅源

D
DataBreaches.Net
GbyAI
GbyAI
aimingoo的专栏
aimingoo的专栏
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
腾讯CDC
博客园 - Franky
Engineering at Meta
Engineering at Meta
C
Check Point Blog
T
The Blog of Author Tim Ferriss
有赞技术团队
有赞技术团队
Microsoft Azure Blog
Microsoft Azure Blog
MyScale Blog
MyScale Blog
I
InfoQ
Blog — PlanetScale
Blog — PlanetScale
P
Proofpoint News Feed
The GitHub Blog
The GitHub Blog
N
Netflix TechBlog - Medium
Last Week in AI
Last Week in AI
S
SegmentFault 最新的问题
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
WordPress大学
WordPress大学

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
feat: expose harness selection decisions (#70760) · openc...
100yenadmin · 2026-04-24 · via Recent Commits to openclaw:main

@@ -28,6 +28,31 @@ type AgentHarnessPolicy = {

2828

fallback: EmbeddedAgentHarnessFallback;

2929

};

303031+

type AgentHarnessSelectionCandidate = {

32+

id: string;

33+

label: string;

34+

pluginId?: string;

35+

supported?: boolean;

36+

priority?: number;

37+

reason?: string;

38+

};

39+40+

type AgentHarnessSelectionDecision = {

41+

harness: AgentHarness;

42+

policy: AgentHarnessPolicy;

43+

selectedHarnessId: string;

44+

selectedReason:

45+

| "pinned"

46+

| "forced_pi"

47+

| "forced_plugin"

48+

| "forced_plugin_fallback_to_pi"

49+

// Auto mode chose a registered plugin harness that supports the provider/model.

50+

| "auto_plugin"

51+

// Auto mode found no supporting plugin harness, so PI handled the run.

52+

| "auto_pi_fallback";

53+

candidates: AgentHarnessSelectionCandidate[];

54+

};

55+3156

function listPluginAgentHarnesses(): AgentHarness[] {

3257

return listRegisteredAgentHarnesses().map((entry) => entry.harness);

3358

}

@@ -51,20 +76,41 @@ export function selectAgentHarness(params: {

5176

sessionKey?: string;

5277

agentHarnessId?: string;

5378

}): AgentHarness {

54-

const policy =

55-

resolvePinnedAgentHarnessPolicy(params.agentHarnessId) ?? resolveAgentHarnessPolicy(params);

79+

return selectAgentHarnessDecision(params).harness;

80+

}

81+82+

function selectAgentHarnessDecision(params: {

83+

provider: string;

84+

modelId?: string;

85+

config?: OpenClawConfig;

86+

agentId?: string;

87+

sessionKey?: string;

88+

agentHarnessId?: string;

89+

}): AgentHarnessSelectionDecision {

90+

const pinnedPolicy = resolvePinnedAgentHarnessPolicy(params.agentHarnessId);

91+

const policy = pinnedPolicy ?? resolveAgentHarnessPolicy(params);

5692

// PI is intentionally not part of the plugin candidate list. It is the legacy

5793

// fallback path, so `fallback: "none"` can prove that only plugin harnesses run.

5894

const pluginHarnesses = listPluginAgentHarnesses();

5995

const piHarness = createPiAgentHarness();

6096

const runtime = policy.runtime;

6197

if (runtime === "pi") {

62-

return piHarness;

98+

return buildSelectionDecision({

99+

harness: piHarness,

100+

policy,

101+

selectedReason: pinnedPolicy ? "pinned" : "forced_pi",

102+

candidates: listHarnessCandidates(pluginHarnesses),

103+

});

63104

}

64105

if (runtime !== "auto") {

65106

const forced = pluginHarnesses.find((entry) => entry.id === runtime);

66107

if (forced) {

67-

return forced;

108+

return buildSelectionDecision({

109+

harness: forced,

110+

policy,

111+

selectedReason: pinnedPolicy ? "pinned" : "forced_plugin",

112+

candidates: listHarnessCandidates(pluginHarnesses),

113+

});

68114

}

69115

if (policy.fallback === "none") {

70116

throw new Error(

@@ -74,18 +120,23 @@ export function selectAgentHarness(params: {

74120

log.warn("requested agent harness is not registered; falling back to embedded PI backend", {

75121

requestedRuntime: runtime,

76122

});

77-

return piHarness;

123+

return buildSelectionDecision({

124+

harness: piHarness,

125+

policy,

126+

selectedReason: "forced_plugin_fallback_to_pi",

127+

candidates: listHarnessCandidates(pluginHarnesses),

128+

});

78129

}

7913080-

const supported = pluginHarnesses

81-

.map((harness) => ({

82-

harness,

83-

support: harness.supports({

84-

provider: params.provider,

85-

modelId: params.modelId,

86-

requestedRuntime: runtime,

87-

}),

88-

}))

131+

const candidates = pluginHarnesses.map((harness) => ({

132+

harness,

133+

support: harness.supports({

134+

provider: params.provider,

135+

modelId: params.modelId,

136+

requestedRuntime: runtime,

137+

}),

138+

}));

139+

const supported = candidates

89140

.filter(

90141

(

91142

entry,

@@ -98,27 +149,44 @@ export function selectAgentHarness(params: {

9814999150

const selected = supported[0]?.harness;

100151

if (selected) {

101-

return selected;

152+

return buildSelectionDecision({

153+

harness: selected,

154+

policy,

155+

selectedReason: "auto_plugin",

156+

candidates: candidates.map(toSelectionCandidate),

157+

});

102158

}

103159

if (policy.fallback === "none") {

104160

throw new Error(

105161

`No registered agent harness supports ${formatProviderModel(params)} and PI fallback is disabled.`,

106162

);

107163

}

108-

return piHarness;

164+

return buildSelectionDecision({

165+

harness: piHarness,

166+

policy,

167+

selectedReason: "auto_pi_fallback",

168+

candidates: candidates.map(toSelectionCandidate),

169+

});

109170

}

110171111172

export async function runAgentHarnessAttemptWithFallback(

112173

params: EmbeddedRunAttemptParams,

113174

): Promise<EmbeddedRunAttemptResult> {

114-

const harness = selectAgentHarness({

175+

const selection = selectAgentHarnessDecision({

115176

provider: params.provider,

116177

modelId: params.modelId,

117178

config: params.config,

118179

agentId: params.agentId,

119180

sessionKey: params.sessionKey,

120181

agentHarnessId: params.agentHarnessId,

121182

});

183+

const harness = selection.harness;

184+

logAgentHarnessSelection(selection, {

185+

provider: params.provider,

186+

modelId: params.modelId,

187+

sessionKey: params.sessionKey,

188+

agentId: params.agentId,

189+

});

122190

if (harness.id === "pi") {

123191

const result = await harness.runAttempt(params);

124192

return { ...result, agentHarnessId: harness.id };

@@ -138,6 +206,63 @@ export async function runAgentHarnessAttemptWithFallback(

138206

}

139207

}

140208209+

function listHarnessCandidates(harnesses: AgentHarness[]): AgentHarnessSelectionCandidate[] {

210+

return harnesses.map((harness) => ({

211+

id: harness.id,

212+

label: harness.label,

213+

pluginId: harness.pluginId,

214+

}));

215+

}

216+217+

function toSelectionCandidate(entry: {

218+

harness: AgentHarness;

219+

support: AgentHarnessSupport;

220+

}): AgentHarnessSelectionCandidate {

221+

return {

222+

id: entry.harness.id,

223+

label: entry.harness.label,

224+

pluginId: entry.harness.pluginId,

225+

supported: entry.support.supported,

226+

priority: entry.support.supported ? entry.support.priority : undefined,

227+

reason: entry.support.reason,

228+

};

229+

}

230+231+

function buildSelectionDecision(params: {

232+

harness: AgentHarness;

233+

policy: AgentHarnessPolicy;

234+

selectedReason: AgentHarnessSelectionDecision["selectedReason"];

235+

candidates: AgentHarnessSelectionCandidate[];

236+

}): AgentHarnessSelectionDecision {

237+

return {

238+

harness: params.harness,

239+

policy: params.policy,

240+

selectedHarnessId: params.harness.id,

241+

selectedReason: params.selectedReason,

242+

candidates: params.candidates,

243+

};

244+

}

245+246+

function logAgentHarnessSelection(

247+

selection: AgentHarnessSelectionDecision,

248+

params: { provider: string; modelId?: string; sessionKey?: string; agentId?: string },

249+

) {

250+

if (!log.isEnabled("debug")) {

251+

return;

252+

}

253+

log.debug("agent harness selected", {

254+

provider: params.provider,

255+

modelId: params.modelId,

256+

sessionKey: params.sessionKey,

257+

agentId: params.agentId,

258+

selectedHarnessId: selection.selectedHarnessId,

259+

selectedReason: selection.selectedReason,

260+

runtime: selection.policy.runtime,

261+

fallback: selection.policy.fallback,

262+

candidates: selection.candidates,

263+

});

264+

}

265+141266

function resolvePinnedAgentHarnessPolicy(

142267

agentHarnessId: string | undefined,

143268

): AgentHarnessPolicy | undefined {