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

推荐订阅源

腾讯CDC
IT之家
IT之家
有赞技术团队
有赞技术团队
WordPress大学
WordPress大学
Apple Machine Learning Research
Apple Machine Learning Research
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
人人都是产品经理
人人都是产品经理
The Cloudflare Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
V
V2EX
Last Week in AI
Last Week in AI
H
Help Net Security
The GitHub Blog
The GitHub Blog
S
SegmentFault 最新的问题
F
Fortinet All Blogs
I
InfoQ
宝玉的分享
宝玉的分享
A
About on SuperTechFans
MongoDB | Blog
MongoDB | Blog
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
B
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
chore(scripts): harden dev tooling diagnostics · openclaw...
vincentkoc · 2026-05-17 · via Recent Commits to openclaw:main

@@ -12,35 +12,55 @@ import http from "node:http";

1212

import os from "node:os";

1313

import path from "node:path";

1414

import process from "node:process";

15+

import { pathToFileURL } from "node:url";

1516

import { resolveDefaultAgentDir } from "../src/agents/agent-scope.js";

1617

import { ensureAuthProfileStore, type AuthProfileCredential } from "../src/agents/auth-profiles.js";

1718

import { normalizeProviderId } from "../src/agents/model-selection.js";

1819

import { validateAnthropicSetupToken } from "../src/commands/auth-token.js";

1920

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

2021

import { extractPayloadText } from "../src/gateway/test-helpers.agent-results.js";

2122

import { getFreePortBlockWithPermissionFallback } from "../src/test-utils/ports.js";

23+

import {

24+

parseBooleanEnv,

25+

parseStrictIntegerOption,

26+

redactForDevToolLog,

27+

} from "./lib/dev-tooling-safety.ts";

22282329

const TRANSPORT = process.env.OPENCLAW_PROMPT_TRANSPORT?.trim() === "direct" ? "direct" : "gateway";

2430

const GATEWAY_PROMPT_MODE =

2531

process.env.OPENCLAW_PROMPT_MODE?.trim() === "override" ? "override" : "extra";

2632

const PROMPT_TEXT = process.env.OPENCLAW_PROMPT_TEXT?.trim() ?? "";

2733

const PROMPT_LIST_JSON = process.env.OPENCLAW_PROMPT_LIST_JSON?.trim() ?? "";

2834

const USER_PROMPT = process.env.OPENCLAW_USER_PROMPT?.trim() || "is clawd here?";

29-

const ENABLE_CAPTURE = process.env.OPENCLAW_PROMPT_CAPTURE === "1";

30-

const INCLUDE_RAW = process.env.OPENCLAW_PROMPT_INCLUDE_RAW === "1";

35+

const ENABLE_CAPTURE = parseBooleanEnv({

36+

fallback: false,

37+

name: "OPENCLAW_PROMPT_CAPTURE",

38+

raw: process.env.OPENCLAW_PROMPT_CAPTURE,

39+

});

40+

const INCLUDE_RAW = parseBooleanEnv({

41+

fallback: false,

42+

name: "OPENCLAW_PROMPT_INCLUDE_RAW",

43+

raw: process.env.OPENCLAW_PROMPT_INCLUDE_RAW,

44+

});

3145

const CLAUDE_BIN = process.env.CLAUDE_BIN?.trim() || "claude";

3246

const NODE_BIN = process.env.OPENCLAW_NODE_BIN?.trim() || process.execPath;

33-

const TIMEOUT_MS = Number(process.env.OPENCLAW_PROMPT_TIMEOUT_MS ?? "45000");

34-

const GATEWAY_TIMEOUT_MS = Number(process.env.OPENCLAW_PROMPT_GATEWAY_TIMEOUT_MS ?? "120000");

47+

const TIMEOUT_MS = parseStrictIntegerOption({

48+

fallback: 45_000,

49+

label: "OPENCLAW_PROMPT_TIMEOUT_MS",

50+

min: 1,

51+

raw: process.env.OPENCLAW_PROMPT_TIMEOUT_MS,

52+

});

53+

const GATEWAY_TIMEOUT_MS = parseStrictIntegerOption({

54+

fallback: 120_000,

55+

label: "OPENCLAW_PROMPT_GATEWAY_TIMEOUT_MS",

56+

min: 1,

57+

raw: process.env.OPENCLAW_PROMPT_GATEWAY_TIMEOUT_MS,

58+

});

3559

const SETUP_TOKEN_RAW = process.env.OPENCLAW_LIVE_SETUP_TOKEN?.trim() ?? "";

3660

const SETUP_TOKEN_VALUE = process.env.OPENCLAW_LIVE_SETUP_TOKEN_VALUE?.trim() ?? "";

3761

const SETUP_TOKEN_PROFILE = process.env.OPENCLAW_LIVE_SETUP_TOKEN_PROFILE?.trim() ?? "";

3862

const DIRECT_CLAUDE_ARGS = ["-p", "--append-system-prompt"];

396340-

if (!PROMPT_TEXT && !PROMPT_LIST_JSON) {

41-

throw new Error("missing OPENCLAW_PROMPT_TEXT or OPENCLAW_PROMPT_LIST_JSON");

42-

}

43-4464

type CaptureSummary = {

4565

url?: string;

4666

authScheme?: string;

@@ -125,6 +145,22 @@ function summarizeCapture(

125145

};

126146

}

127147148+

function resolveAnthropicUpstreamUrl(

149+

requestUrl: string | undefined,

150+

upstreamBaseUrl: string,

151+

): string {

152+

const raw = requestUrl || "/";

153+

if (!raw.startsWith("/") || raw.startsWith("//")) {

154+

throw new Error(`refusing non-origin proxy request URL: ${JSON.stringify(raw)}`);

155+

}

156+

const upstream = new URL(upstreamBaseUrl);

157+

if (upstream.protocol !== "https:" || upstream.hostname !== "api.anthropic.com") {

158+

throw new Error(`refusing unexpected Anthropic upstream origin: ${upstream.origin}`);

159+

}

160+

const requestPath = new URL(raw, "http://127.0.0.1");

161+

return new URL(`${requestPath.pathname}${requestPath.search}`, upstream).toString();

162+

}

163+128164

function matchesExtraUsage400(...parts: Array<string | undefined>): boolean {

129165

return parts

130166

.filter((value): value is string => typeof value === "string" && value.length > 0)

@@ -283,7 +319,7 @@ async function startAnthropicProxy(params: { port: number; upstreamBaseUrl: stri

283319

const rawBody = requestBody.toString("utf8");

284320

lastCapture = extractProxyCapture(rawBody, req);

285321286-

const upstreamUrl = new URL(req.url ?? "/", params.upstreamBaseUrl).toString();

322+

const upstreamUrl = resolveAnthropicUpstreamUrl(req.url, params.upstreamBaseUrl);

287323

const headers = new Headers();

288324

for (const [key, value] of Object.entries(req.headers)) {

289325

if (value === undefined) {

@@ -327,7 +363,7 @@ async function startAnthropicProxy(params: { port: number; upstreamBaseUrl: stri

327363

res.end();

328364

} catch (error) {

329365

res.writeHead(502, { "content-type": "text/plain; charset=utf-8" });

330-

res.end(`proxy error: ${String(error)}`);

366+

res.end(redactForDevToolLog(`proxy error: ${String(error)}`));

331367

}

332368

});

333369

server.on("connection", (socket) => {

@@ -405,8 +441,8 @@ async function runDirectPrompt(prompt: string): Promise<PromptResult> {

405441

transport: "direct",

406442

exitCode: exit.code,

407443

signal: exit.signal,

408-

stdout: joinedStdout.trim() || undefined,

409-

stderr: joinedStderr.trim() || undefined,

444+

stdout: redactForDevToolLog(joinedStdout.trim()) || undefined,

445+

stderr: redactForDevToolLog(joinedStderr.trim()) || undefined,

410446

matchedExtraUsage400: matchesExtraUsage400(joinedStdout, joinedStderr),

411447

capture: summarizeCapture(proxy?.getLastCapture(), prompt),

412448

tmpDir,

@@ -485,7 +521,7 @@ async function waitForGatewayReady(url: string, token: string): Promise<void> {

485521486522

async function readLogTail(logPath: string): Promise<string> {

487523

const raw = await fs.readFile(logPath, "utf8").catch(() => "");

488-

return raw.split(/\r?\n/).slice(-40).join("\n").trim();

524+

return redactForDevToolLog(raw.split(/\r?\n/).slice(-40).join("\n").trim());

489525

}

490526491527

async function runGatewayPrompt(prompt: string): Promise<PromptResult> {

@@ -601,7 +637,7 @@ async function runGatewayPrompt(prompt: string): Promise<PromptResult> {

601637

ok: false,

602638

transport: "gateway",

603639

promptMode: GATEWAY_PROMPT_MODE,

604-

error: `missing runId: ${JSON.stringify(agentRes)}`,

640+

error: redactForDevToolLog(`missing runId: ${JSON.stringify(agentRes)}`),

605641

matchedExtraUsage400: false,

606642

capture: summarizeCapture(proxy?.getLastCapture(), prompt),

607643

tmpDir,

@@ -626,7 +662,10 @@ async function runGatewayPrompt(prompt: string): Promise<PromptResult> {

626662

promptMode: GATEWAY_PROMPT_MODE,

627663

status: waitRes.status,

628664

text: text || undefined,

629-

error: waitRes.status === "ok" ? undefined : waitRes.error || logTail || "agent.wait failed",

665+

error:

666+

waitRes.status === "ok"

667+

? undefined

668+

: redactForDevToolLog(waitRes.error || logTail || "agent.wait failed"),

630669

matchedExtraUsage400: matched400,

631670

capture: summarizeCapture(proxy?.getLastCapture(), prompt),

632671

tmpDir,

@@ -638,6 +677,9 @@ async function runGatewayPrompt(prompt: string): Promise<PromptResult> {

638677

}

639678640679

async function main() {

680+

if (!PROMPT_TEXT && !PROMPT_LIST_JSON) {

681+

throw new Error("missing OPENCLAW_PROMPT_TEXT or OPENCLAW_PROMPT_LIST_JSON");

682+

}

641683

const prompts = PROMPT_LIST_JSON ? (JSON.parse(PROMPT_LIST_JSON) as string[]) : [PROMPT_TEXT];

642684

const results: PromptResult[] = [];

643685

for (const prompt of prompts) {

@@ -659,4 +701,16 @@ async function main() {

659701

);

660702

}

661703662-

await main();

704+

export const testing = {

705+

matchesExtraUsage400,

706+

resolveAnthropicUpstreamUrl,

707+

summarizeCapture,

708+

summarizeText,

709+

};

710+711+

if (import.meta.url === pathToFileURL(process.argv[1] ?? "").href) {

712+

await main().catch((error) => {

713+

console.error(redactForDevToolLog(error instanceof Error ? error.message : String(error)));

714+

process.exitCode = 1;

715+

});

716+

}