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

推荐订阅源

人人都是产品经理
人人都是产品经理
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
月光博客
月光博客
雷峰网
雷峰网
Google DeepMind News
Google DeepMind News
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
M
MIT News - Artificial intelligence
WordPress大学
WordPress大学
MongoDB | Blog
MongoDB | Blog
V
V2EX
博客园 - 【当耐特】
GbyAI
GbyAI
Stack Overflow Blog
Stack Overflow Blog
I
InfoQ
Martin Fowler
Martin Fowler
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Hugging Face - Blog
Hugging Face - Blog
B
Blog
V
Visual Studio Blog
D
DataBreaches.Net
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
F
Fortinet All Blogs

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(copilot): wire harness parity helpers · openclaw/ope...
vincentkoc · 2026-06-23 · via Recent Commits to openclaw:main

@@ -3,7 +3,12 @@

33

* turns replies into app-server answer payloads.

44

*/

55

import {

6+

buildAgentHarnessUserInputAnswers,

7+

deliverAgentHarnessUserInputPrompt,

68

embeddedAgentLog,

9+

emptyAgentHarnessUserInputAnswers,

10+

type AgentHarnessUserInputOption,

11+

type AgentHarnessUserInputQuestion,

712

type EmbeddedRunAttemptParams,

813

} from "openclaw/plugin-sdk/agent-harness-runtime";

914

import { formatCodexDisplayText } from "../command-formatters.js";

@@ -19,25 +24,11 @@ type PendingUserInput = {

1924

threadId: string;

2025

turnId: string;

2126

itemId: string;

22-

questions: UserInputQuestion[];

27+

questions: AgentHarnessUserInputQuestion[];

2328

resolve: (value: JsonValue) => void;

2429

cleanup: () => void;

2530

};

263127-

type UserInputQuestion = {

28-

id: string;

29-

header: string;

30-

question: string;

31-

isOther: boolean;

32-

isSecret: boolean;

33-

options: UserInputOption[] | null;

34-

};

35-36-

type UserInputOption = {

37-

label: string;

38-

description: string;

39-

};

40-4132

type CodexUserInputBridge = {

4233

handleRequest: (request: {

4334

id: number | string;

@@ -142,7 +133,7 @@ function readUserInputParams(value: JsonValue | undefined):

142133

threadId: string;

143134

turnId: string;

144135

itemId: string;

145-

questions: UserInputQuestion[];

136+

questions: AgentHarnessUserInputQuestion[];

146137

}

147138

| undefined {

148139

if (!isJsonObject(value)) {

@@ -157,11 +148,11 @@ function readUserInputParams(value: JsonValue | undefined):

157148

}

158149

const questions = questionsRaw

159150

.map(readQuestion)

160-

.filter((question): question is UserInputQuestion => Boolean(question));

151+

.filter((question): question is AgentHarnessUserInputQuestion => Boolean(question));

161152

return { threadId, turnId, itemId, questions };

162153

}

163154164-

function readQuestion(value: JsonValue): UserInputQuestion | undefined {

155+

function readQuestion(value: JsonValue): AgentHarnessUserInputQuestion | undefined {

165156

if (!isJsonObject(value)) {

166157

return undefined;

167158

}

@@ -181,17 +172,17 @@ function readQuestion(value: JsonValue): UserInputQuestion | undefined {

181172

};

182173

}

183174184-

function readOptions(value: JsonValue | undefined): UserInputOption[] | null {

175+

function readOptions(value: JsonValue | undefined): AgentHarnessUserInputOption[] | null {

185176

if (!Array.isArray(value)) {

186177

return null;

187178

}

188179

const options = value

189180

.map(readOption)

190-

.filter((option): option is UserInputOption => Boolean(option));

181+

.filter((option): option is AgentHarnessUserInputOption => Boolean(option));

191182

return options.length > 0 ? options : null;

192183

}

193184194-

function readOption(value: JsonValue): UserInputOption | undefined {

185+

function readOption(value: JsonValue): AgentHarnessUserInputOption | undefined {

195186

if (!isJsonObject(value)) {

196187

return undefined;

197188

}

@@ -202,116 +193,25 @@ function readOption(value: JsonValue): UserInputOption | undefined {

202193203194

async function deliverUserInputPrompt(

204195

params: EmbeddedRunAttemptParams,

205-

questions: UserInputQuestion[],

196+

questions: AgentHarnessUserInputQuestion[],

206197

): Promise<void> {

207-

const text = formatUserInputPrompt(questions);

208-

if (params.onBlockReply) {

209-

await params.onBlockReply({ text });

210-

return;

211-

}

212-

await params.onPartialReply?.({ text });

213-

}

214-215-

function formatUserInputPrompt(questions: UserInputQuestion[]): string {

216-

const lines = ["Codex needs input:"];

217-

questions.forEach((question, index) => {

218-

if (questions.length > 1) {

219-

lines.push(

220-

"",

221-

`${index + 1}. ${formatCodexDisplayText(question.header)}`,

222-

formatCodexDisplayText(question.question),

223-

);

224-

} else {

225-

lines.push(

226-

"",

227-

formatCodexDisplayText(question.header),

228-

formatCodexDisplayText(question.question),

229-

);

230-

}

231-

if (question.isSecret) {

232-

lines.push("This channel may show your reply to other participants.");

233-

}

234-

question.options?.forEach((option, optionIndex) => {

235-

lines.push(

236-

`${optionIndex + 1}. ${formatCodexDisplayText(option.label)}${

237-

option.description ? ` - ${formatCodexDisplayText(option.description)}` : ""

238-

}`,

239-

);

240-

});

241-

if (question.isOther) {

242-

lines.push("Other: reply with your own answer.");

243-

}

198+

await deliverAgentHarnessUserInputPrompt(params, questions, {

199+

formatText: formatCodexDisplayText,

200+

intro: "Codex needs input:",

244201

});

245-

return lines.join("\n");

246202

}

247203248-

function buildUserInputResponse(questions: UserInputQuestion[], inputText: string): JsonObject {

204+

function buildUserInputResponse(

205+

questions: AgentHarnessUserInputQuestion[],

206+

inputText: string,

207+

): JsonObject {

249208

// Multi-question replies may use "header: answer" or numbered lines. Keep the

250209

// parser permissive so chat-channel replies remain ergonomic.

251-

const answers: JsonObject = {};

252-

if (questions.length === 1) {

253-

const question = questions[0];

254-

if (question) {

255-

const answer = normalizeAnswer(inputText, question);

256-

answers[question.id] = { answers: answer ? [answer] : [] };

257-

}

258-

return { answers };

259-

}

260-261-

const keyed = parseKeyedAnswers(inputText);

262-

const fallbackLines = inputText

263-

.split(/\r?\n/)

264-

.map((line) => line.trim())

265-

.filter(Boolean);

266-

questions.forEach((question, index) => {

267-

const key =

268-

keyed.get(question.id.toLowerCase()) ??

269-

keyed.get(question.header.toLowerCase()) ??

270-

keyed.get(question.question.toLowerCase()) ??

271-

keyed.get(String(index + 1));

272-

const answer = key ?? fallbackLines[index] ?? "";

273-

const normalized = answer ? normalizeAnswer(answer, question) : undefined;

274-

answers[question.id] = { answers: normalized ? [normalized] : [] };

275-

});

276-

return { answers };

277-

}

278-279-

function normalizeAnswer(answer: string, question: UserInputQuestion): string | undefined {

280-

const trimmed = answer.trim();

281-

const options = question.options ?? [];

282-

const optionIndex = /^\d+$/.test(trimmed) ? Number(trimmed) - 1 : -1;

283-

const indexed = optionIndex >= 0 ? options[optionIndex] : undefined;

284-

if (indexed) {

285-

return indexed.label;

286-

}

287-

const exact = options.find((option) => option.label.toLowerCase() === trimmed.toLowerCase());

288-

if (exact) {

289-

return exact.label;

290-

}

291-

if (options.length > 0 && !question.isOther) {

292-

return undefined;

293-

}

294-

return trimmed || undefined;

295-

}

296-297-

function parseKeyedAnswers(inputText: string): Map<string, string> {

298-

const answers = new Map<string, string>();

299-

for (const line of inputText.split(/\r?\n/)) {

300-

const match = line.match(/^\s*([^:=-]+?)\s*[:=-]\s*(.+?)\s*$/);

301-

if (!match) {

302-

continue;

303-

}

304-

const key = match[1]?.trim().toLowerCase();

305-

const value = match[2]?.trim();

306-

if (key && value) {

307-

answers.set(key, value);

308-

}

309-

}

310-

return answers;

210+

return buildAgentHarnessUserInputAnswers(questions, inputText) as unknown as JsonObject;

311211

}

312212313213

function emptyUserInputResponse(): JsonObject {

314-

return { answers: {} };

214+

return emptyAgentHarnessUserInputAnswers() as unknown as JsonObject;

315215

}

316216317217

function readString(record: JsonObject, key: string): string | undefined {