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

推荐订阅源

D
Docker
I
InfoQ
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog
博客园_首页
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
A
About on SuperTechFans
Apple Machine Learning Research
Apple Machine Learning Research
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
C
Check Point Blog
B
Blog RSS Feed
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Engineering at Meta
Engineering at Meta
B
Blog
爱范儿
爱范儿
Stack Overflow Blog
Stack Overflow Blog
aimingoo的专栏
aimingoo的专栏
WordPress大学
WordPress大学
F
Fortinet All Blogs
月光博客
月光博客
GbyAI
GbyAI

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(plugin-sdk): parse harmony text tool calls · openclaw...
steipete · 2026-05-09 · via Recent Commits to openclaw:main

@@ -57,6 +57,15 @@ export type PlainTextToolCallParseOptions = {

57575858

const DEFAULT_MAX_PLAIN_TEXT_TOOL_PAYLOAD_BYTES = 256_000;

5959

const END_TOOL_REQUEST = "[END_TOOL_REQUEST]";

60+

const HARMONY_CHANNEL_MARKER = "<|channel|>";

61+

const HARMONY_MESSAGE_MARKER = "<|message|>";

62+

const HARMONY_CALL_MARKER = "<|call|>";

63+64+

type PlainTextToolCallOpening = {

65+

end: number;

66+

name: string;

67+

requiresClosing: boolean;

68+

};

60696170

function isToolNameChar(char: string | undefined): boolean {

6271

return Boolean(char && /[A-Za-z0-9_-]/.test(char));

@@ -88,7 +97,7 @@ function consumeLineBreak(text: string, start: number): number | null {

8897

return null;

8998

}

909991-

function parseOpening(text: string, start: number): { end: number; name: string } | null {

100+

function parseBracketOpening(text: string, start: number): PlainTextToolCallOpening | null {

92101

if (text[start] !== "[") {

93102

return null;

94103

}

@@ -107,7 +116,49 @@ function parseOpening(text: string, start: number): { end: number; name: string

107116

if (afterLineBreak === null) {

108117

return null;

109118

}

110-

return { end: afterLineBreak, name };

119+

return { end: afterLineBreak, name, requiresClosing: true };

120+

}

121+122+

function parseHarmonyOpening(text: string, start: number): PlainTextToolCallOpening | null {

123+

let cursor = start;

124+

if (text.startsWith(HARMONY_CHANNEL_MARKER, cursor)) {

125+

cursor += HARMONY_CHANNEL_MARKER.length;

126+

}

127+

const channelStart = cursor;

128+

while (/[A-Za-z_]/.test(text[cursor] ?? "")) {

129+

cursor += 1;

130+

}

131+

const channel = text.slice(channelStart, cursor);

132+

if (channel !== "commentary" && channel !== "analysis" && channel !== "final") {

133+

return null;

134+

}

135+

cursor = skipHorizontalWhitespace(text, cursor);

136+

if (!text.startsWith("to=", cursor)) {

137+

return null;

138+

}

139+

cursor += 3;

140+

const nameStart = cursor;

141+

while (isToolNameChar(text[cursor])) {

142+

cursor += 1;

143+

}

144+

if (cursor === nameStart) {

145+

return null;

146+

}

147+

const name = text.slice(nameStart, cursor);

148+

cursor = skipHorizontalWhitespace(text, cursor);

149+

if (!text.startsWith("code", cursor)) {

150+

return null;

151+

}

152+

cursor += 4;

153+

cursor = skipWhitespace(text, cursor);

154+

if (text.startsWith(HARMONY_MESSAGE_MARKER, cursor)) {

155+

cursor = skipWhitespace(text, cursor + HARMONY_MESSAGE_MARKER.length);

156+

}

157+

return { end: cursor, name, requiresClosing: false };

158+

}

159+160+

function parseOpening(text: string, start: number): PlainTextToolCallOpening | null {

161+

return parseBracketOpening(text, start) ?? parseHarmonyOpening(text, start);

111162

}

112163113164

function consumeJsonObject(

@@ -174,6 +225,14 @@ function parseClosing(text: string, start: number, name: string): number | null

174225

return null;

175226

}

176227228+

function parseOptionalHarmonyClosing(text: string, start: number): number {

229+

const cursor = skipWhitespace(text, start);

230+

if (text.startsWith(HARMONY_CALL_MARKER, cursor)) {

231+

return cursor + HARMONY_CALL_MARKER.length;

232+

}

233+

return start;

234+

}

235+177236

function parsePlainTextToolCallBlockAt(

178237

text: string,

179238

start: number,

@@ -197,15 +256,17 @@ function parsePlainTextToolCallBlockAt(

197256

if (!payload) {

198257

return null;

199258

}

200-

const end = parseClosing(text, payload.end, opening.name);

201-

if (end === null) {

259+

const closingEnd = opening.requiresClosing

260+

? parseClosing(text, payload.end, opening.name)

261+

: parseOptionalHarmonyClosing(text, payload.end);

262+

if (closingEnd === null) {

202263

return null;

203264

}

204265

return {

205266

arguments: payload.value,

206-

end,

267+

end: closingEnd,

207268

name: opening.name,

208-

raw: text.slice(start, end),

269+

raw: text.slice(start, closingEnd),

209270

start,

210271

};

211272

}

@@ -228,7 +289,11 @@ export function parseStandalonePlainTextToolCallBlocks(

228289

}

229290230291

export function stripPlainTextToolCallBlocks(text: string): string {

231-

if (!text || !/\[[A-Za-z0-9_-]+\]/.test(text)) {

292+

if (

293+

!text ||

294+

(!/\[[A-Za-z0-9_-]+\]/.test(text) &&

295+

!/(?:^|\n)\s*(?:<\|channel\|>)?(?:commentary|analysis|final)\s+to=/.test(text))

296+

) {

232297

return text;

233298

}

234299

let result = "";

@@ -248,7 +313,11 @@ export function stripPlainTextToolCallBlocks(text: string): string {

248313

}

249314

result += text.slice(cursor, index);

250315

cursor = block.end;

251-

index = block.end;

316+

const afterBlockLineBreak = consumeLineBreak(text, cursor);

317+

if (afterBlockLineBreak !== null) {

318+

cursor = afterBlockLineBreak;

319+

}

320+

index = cursor;

252321

}

253322

result += text.slice(cursor);

254323

return result;