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

推荐订阅源

J
Java Code Geeks
腾讯CDC
Jina AI
Jina AI
博客园 - 司徒正美
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
GbyAI
GbyAI
WordPress大学
WordPress大学
Hugging Face - Blog
Hugging Face - Blog
T
The Blog of Author Tim Ferriss
小众软件
小众软件
M
MIT News - Artificial intelligence
MyScale Blog
MyScale Blog
D
Docker
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
月光博客
月光博客
L
LangChain Blog
F
Fortinet All Blogs
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - Franky
C
Check Point Blog
U
Unit 42
人人都是产品经理
人人都是产品经理

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: validate firecrawl numeric options · openclaw/opencl...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -2,7 +2,8 @@ import { optionalStringEnum } from "openclaw/plugin-sdk/channel-actions";

22

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-runtime";

33

import {

44

jsonResult,

5-

readNumberParam,

5+

readNonNegativeIntegerParam,

6+

readPositiveIntegerParam,

67

readStringParam,

78

} from "openclaw/plugin-sdk/provider-web-search";

89

import { Type } from "typebox";

@@ -60,11 +61,9 @@ export function createFirecrawlScrapeTool(api: OpenClawPluginApi) {

6061

const url = readStringParam(rawParams, "url", { required: true });

6162

const extractMode =

6263

readStringParam(rawParams, "extractMode") === "text" ? "text" : "markdown";

63-

const maxChars = readNumberParam(rawParams, "maxChars", { positiveInteger: true });

64-

const maxAgeMs = readNumberParam(rawParams, "maxAgeMs", { nonNegativeInteger: true });

65-

const timeoutSeconds = readNumberParam(rawParams, "timeoutSeconds", {

66-

positiveInteger: true,

67-

});

64+

const maxChars = readPositiveIntegerParam(rawParams, "maxChars");

65+

const maxAgeMs = readNonNegativeIntegerParam(rawParams, "maxAgeMs");

66+

const timeoutSeconds = readPositiveIntegerParam(rawParams, "timeoutSeconds");

6867

const proxyRaw = readStringParam(rawParams, "proxy");

6968

const proxy =

7069

proxyRaw === "basic" || proxyRaw === "stealth" || proxyRaw === "auto"

Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import type { OpenClawPluginApi } from "openclaw/plugin-sdk/plugin-runtime";

22

import {

33

jsonResult,

4-

readNumberParam,

4+

readPositiveIntegerParam,

55

readStringArrayParam,

66

readStringParam,

77

} from "openclaw/plugin-sdk/provider-web-search";

@@ -52,10 +52,11 @@ export function createFirecrawlSearchTool(api: OpenClawPluginApi) {

5252

parameters: FirecrawlSearchToolSchema,

5353

execute: async (_toolCallId: string, rawParams: Record<string, unknown>) => {

5454

const query = readStringParam(rawParams, "query", { required: true });

55-

const count = readNumberParam(rawParams, "count", { positiveInteger: true });

56-

const timeoutSeconds = readNumberParam(rawParams, "timeoutSeconds", {

57-

positiveInteger: true,

55+

const count = readPositiveIntegerParam(rawParams, "count", {

56+

max: 10,

57+

message: "count must be an integer from 1 to 10",

5858

});

59+

const timeoutSeconds = readPositiveIntegerParam(rawParams, "timeoutSeconds");

5960

const sources = readStringArrayParam(rawParams, "sources");

6061

const categories = readStringArrayParam(rawParams, "categories");

6162

const scrapeResults = rawParams.scrapeResults === true;

Original file line numberDiff line numberDiff line change

@@ -489,47 +489,52 @@ describe("firecrawl tools", () => {

489489

});

490490

});

491491
492-

it("drops malformed numeric Firecrawl tool options", async () => {

492+

it("rejects malformed numeric Firecrawl search options before dispatch", async () => {

493493

const searchTool = createFirecrawlSearchTool({

494494

config: { env: "test" },

495495

} as never);

496-

await searchTool.execute("call-search", {

497-

query: "web search",

498-

count: 6.5,

499-

timeoutSeconds: Number.POSITIVE_INFINITY,

500-

});

501496
502-

expect(runFirecrawlSearch).toHaveBeenLastCalledWith({

503-

cfg: { env: "test" },

504-

query: "web search",

505-

count: undefined,

506-

timeoutSeconds: undefined,

507-

sources: undefined,

508-

categories: undefined,

509-

scrapeResults: false,

510-

});

497+

await expect(

498+

searchTool.execute("call-search", {

499+

query: "web search",

500+

count: 6.5,

501+

}),

502+

).rejects.toThrow("count must be an integer from 1 to 10");

503+

await expect(

504+

searchTool.execute("call-search-timeout", {

505+

query: "web search",

506+

timeoutSeconds: Number.POSITIVE_INFINITY,

507+

}),

508+

).rejects.toThrow("timeoutSeconds must be a positive integer");

509+
510+

expect(runFirecrawlSearch).not.toHaveBeenCalled();

511+

});

511512
513+

it("rejects malformed numeric Firecrawl scrape options before dispatch", async () => {

512514

const scrapeTool = createFirecrawlScrapeTool({

513515

config: { env: "test" },

514516

} as never);

515-

await scrapeTool.execute("call-scrape", {

516-

url: "https://docs.openclaw.ai",

517-

maxChars: 1500.5,

518-

maxAgeMs: -1,

519-

timeoutSeconds: 22.5,

520-

});

521517
522-

expect(runFirecrawlScrape).toHaveBeenLastCalledWith({

523-

cfg: { env: "test" },

524-

url: "https://docs.openclaw.ai",

525-

extractMode: "markdown",

526-

maxChars: undefined,

527-

onlyMainContent: undefined,

528-

maxAgeMs: undefined,

529-

proxy: undefined,

530-

storeInCache: undefined,

531-

timeoutSeconds: undefined,

532-

});

518+

await expect(

519+

scrapeTool.execute("call-scrape-max-chars", {

520+

url: "https://docs.openclaw.ai",

521+

maxChars: 1500.5,

522+

}),

523+

).rejects.toThrow("maxChars must be a positive integer");

524+

await expect(

525+

scrapeTool.execute("call-scrape-max-age", {

526+

url: "https://docs.openclaw.ai",

527+

maxAgeMs: -1,

528+

}),

529+

).rejects.toThrow("maxAgeMs must be a non-negative integer");

530+

await expect(

531+

scrapeTool.execute("call-scrape-timeout", {

532+

url: "https://docs.openclaw.ai",

533+

timeoutSeconds: 22.5,

534+

}),

535+

).rejects.toThrow("timeoutSeconds must be a positive integer");

536+
537+

expect(runFirecrawlScrape).not.toHaveBeenCalled();

533538

});

534539
535540

it("passes text mode through and ignores invalid proxy values", async () => {

Original file line numberDiff line numberDiff line change

@@ -9,6 +9,7 @@ import type {

99

} from "../plugins/types.js";

1010

export {

1111

jsonResult,

12+

readNonNegativeIntegerParam,

1213

readNumberParam,

1314

readPositiveIntegerParam,

1415

readStringArrayParam,