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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
G
Google Developers Blog
Hugging Face - Blog
Hugging Face - Blog
博客园 - 【当耐特】
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
博客园 - Franky
博客园_首页
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
WordPress大学
WordPress大学
有赞技术团队
有赞技术团队
月光博客
月光博客
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
Last Week in AI
Last Week in AI
Vercel News
Vercel News
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
爱范儿
爱范儿
J
Java Code Geeks
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
阮一峰的网络日志
阮一峰的网络日志

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(docs): use Cloudflare docs search API · openclaw/open...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -1,119 +1,21 @@

1-

import { hasBinary } from "../agents/skills.js";

21

import { formatCliCommand } from "../cli/command-format.js";

3-

import { runCommandWithTimeout } from "../process/exec.js";

42

import type { RuntimeEnv } from "../runtime.js";

5-

import { normalizeStringEntries } from "../shared/string-normalization.js";

63

import { formatDocsLink } from "../terminal/links.js";

74

import { isRich, theme } from "../terminal/theme.js";

859-

const SEARCH_TOOL = "https://docs.openclaw.ai/mcp.search_open_claw";

6+

const SEARCH_API = "https://docs.openclaw.ai/api/search";

107

const SEARCH_TIMEOUT_MS = 30_000;

11-

const DEFAULT_SNIPPET_MAX = 220;

12-

const MCP_ERROR_PATTERN = /MCP error\s+-?\d+/i;

138149

type DocResult = {

1510

title: string;

1611

link: string;

1712

snippet?: string;

1813

};

191420-

type NodeRunner = {

21-

cmd: string;

22-

args: string[];

15+

type DocsSearchResponse = {

16+

results?: unknown;

2317

};

241825-

type ToolRunOptions = {

26-

input?: string;

27-

timeoutMs?: number;

28-

};

29-30-

function resolveNodeRunner(): NodeRunner {

31-

if (hasBinary("pnpm")) {

32-

return { cmd: "pnpm", args: ["dlx"] };

33-

}

34-

if (hasBinary("npx")) {

35-

return { cmd: "npx", args: ["-y"] };

36-

}

37-

throw new Error(

38-

`Docs search needs pnpm or npx to run the docs search helper. Install pnpm, or run ${formatCliCommand("npm install -g pnpm")}.`,

39-

);

40-

}

41-42-

async function runNodeTool(tool: string, toolArgs: string[], options: ToolRunOptions = {}) {

43-

const runner = resolveNodeRunner();

44-

const argv = [runner.cmd, ...runner.args, tool, ...toolArgs];

45-

return await runCommandWithTimeout(argv, {

46-

timeoutMs: options.timeoutMs ?? SEARCH_TIMEOUT_MS,

47-

input: options.input,

48-

});

49-

}

50-51-

async function runTool(tool: string, toolArgs: string[], options: ToolRunOptions = {}) {

52-

if (hasBinary(tool)) {

53-

return await runCommandWithTimeout([tool, ...toolArgs], {

54-

timeoutMs: options.timeoutMs ?? SEARCH_TIMEOUT_MS,

55-

input: options.input,

56-

});

57-

}

58-

return await runNodeTool(tool, toolArgs, options);

59-

}

60-61-

function extractLine(lines: string[], prefix: string): string | undefined {

62-

const line = lines.find((value) => value.startsWith(prefix));

63-

if (!line) {

64-

return undefined;

65-

}

66-

return line.slice(prefix.length).trim();

67-

}

68-69-

function normalizeSnippet(raw: string | undefined, fallback: string): string {

70-

const base = raw && raw.trim().length > 0 ? raw : fallback;

71-

const cleaned = base.replace(/\s+/g, " ").trim();

72-

if (!cleaned) {

73-

return "";

74-

}

75-

if (cleaned.length <= DEFAULT_SNIPPET_MAX) {

76-

return cleaned;

77-

}

78-

return `${cleaned.slice(0, DEFAULT_SNIPPET_MAX - 3)}...`;

79-

}

80-81-

function firstParagraph(text: string): string {

82-

return (

83-

text

84-

.split(/\n\s*\n/)

85-

.map((chunk) => chunk.trim())

86-

.find(Boolean) ?? ""

87-

);

88-

}

89-90-

function parseSearchOutput(raw: string): DocResult[] {

91-

const normalized = raw.replace(/\r/g, "");

92-

const blocks = normalizeStringEntries(normalized.split(/\n(?=Title: )/g));

93-94-

const results: DocResult[] = [];

95-

for (const block of blocks) {

96-

const lines = block.split("\n");

97-

const title = extractLine(lines, "Title:");

98-

const link = extractLine(lines, "Link:");

99-

if (!title || !link) {

100-

continue;

101-

}

102-

const content = extractLine(lines, "Content:");

103-

const contentIndex = lines.findIndex((line) => line.startsWith("Content:"));

104-

const body =

105-

contentIndex >= 0

106-

? lines

107-

.slice(contentIndex + 1)

108-

.join("\n")

109-

.trim()

110-

: "";

111-

const snippet = normalizeSnippet(content, firstParagraph(body));

112-

results.push({ title, link, snippet: snippet || undefined });

113-

}

114-

return results;

115-

}

116-11719

function escapeMarkdown(text: string): string {

11820

return text.replace(/[()[\]]/g, "\\$&");

11921

}

@@ -159,6 +61,49 @@ async function renderMarkdown(markdown: string, runtime: RuntimeEnv) {

15961

runtime.log(markdown.trimEnd());

16062

}

1616364+

async function fetchDocsSearch(query: string): Promise<DocResult[]> {

65+

const url = new URL(SEARCH_API);

66+

url.searchParams.set("q", query);

67+

const controller = new AbortController();

68+

const timeout = setTimeout(() => controller.abort(), SEARCH_TIMEOUT_MS);

69+

try {

70+

const response = await fetch(url, {

71+

headers: { Accept: "application/json" },

72+

signal: controller.signal,

73+

});

74+

if (!response.ok) {

75+

throw new Error(`HTTP ${response.status}`);

76+

}

77+

const payload = (await response.json()) as DocsSearchResponse;

78+

return parseDocsSearchResults(payload.results);

79+

} finally {

80+

clearTimeout(timeout);

81+

}

82+

}

83+84+

function parseDocsSearchResults(raw: unknown): DocResult[] {

85+

if (!Array.isArray(raw)) {

86+

return [];

87+

}

88+

const results: DocResult[] = [];

89+

for (const item of raw) {

90+

if (!item || typeof item !== "object") {

91+

continue;

92+

}

93+

const entry = item as Record<string, unknown>;

94+

if (typeof entry.title !== "string" || typeof entry.link !== "string") {

95+

continue;

96+

}

97+

results.push({

98+

title: entry.title,

99+

link: entry.link,

100+

snippet:

101+

typeof entry.snippet === "string" && entry.snippet.trim() ? entry.snippet : undefined,

102+

});

103+

}

104+

return results;

105+

}

106+162107

export async function docsSearchCommand(queryParts: string[], runtime: RuntimeEnv) {

163108

const query = queryParts.join(" ").trim();

164109

if (!query) {

@@ -173,31 +118,16 @@ export async function docsSearchCommand(queryParts: string[], runtime: RuntimeEn

173118

return;

174119

}

175120176-

const payload = JSON.stringify({ query });

177-

const res = await runTool(

178-

"mcporter",

179-

["call", SEARCH_TOOL, "--args", payload, "--output", "text"],

180-

{ timeoutMs: SEARCH_TIMEOUT_MS },

181-

);

182-183-

if (res.code !== 0) {

184-

const err = res.stderr.trim() || res.stdout.trim() || `exit ${res.code}`;

185-

runtime.error(`Docs search failed: ${err}`);

186-

runtime.exit(1);

187-

return;

188-

}

189-190-

const combined = `${res.stdout}\n${res.stderr}`;

191-

if (MCP_ERROR_PATTERN.test(combined)) {

192-

const err = (res.stderr.trim() || res.stdout.trim())

193-

.split("\n")

194-

.find((line) => MCP_ERROR_PATTERN.test(line));

195-

runtime.error(`Docs search failed: ${err ?? "MCP error reported by docs search tool"}`);

121+

let results: DocResult[];

122+

try {

123+

results = await fetchDocsSearch(query);

124+

} catch (error) {

125+

const message = error instanceof Error ? error.message : String(error);

126+

runtime.error(`Docs search failed: ${message}`);

196127

runtime.exit(1);

197128

return;

198129

}

199130200-

const results = parseSearchOutput(res.stdout);

201131

if (isRich()) {

202132

renderRichResults(query, results, runtime);

203133

return;