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

推荐订阅源

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: centralize gateway timeout schema · openclaw/opencla...
steipete · 2026-05-29 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -17,6 +17,7 @@ import {

1717

readNonNegativeIntegerParam,

1818

readStringParam,

1919

} from "./common.js";

20+

import { gatewayCallOptionSchemaProperties } from "./gateway-schema.js";

2021

import { callGatewayTool, readGatewayCallOptions, type GatewayCallOptions } from "./gateway.js";

2122

import { resolveInternalSessionKey, resolveMainSessionAlias } from "./sessions-helpers.js";

2223

@@ -294,9 +295,7 @@ const CronPatchObjectSchema = Type.Optional(

294295

export const CronToolSchema = Type.Object(

295296

{

296297

action: stringEnum(CRON_ACTIONS),

297-

gatewayUrl: Type.Optional(Type.String()),

298-

gatewayToken: Type.Optional(Type.String()),

299-

timeoutMs: Type.Optional(Type.Number()),

298+

...gatewayCallOptionSchemaProperties(),

300299

includeDisabled: Type.Optional(Type.Boolean()),

301300

job: CronJobObjectSchema,

302301

jobId: Type.Optional(Type.String()),

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,10 @@

1+

import { Type } from "typebox";

2+

import { optionalPositiveIntegerSchema } from "../schema/typebox.js";

3+
4+

export function gatewayCallOptionSchemaProperties() {

5+

return {

6+

gatewayUrl: Type.Optional(Type.String()),

7+

gatewayToken: Type.Optional(Type.String()),

8+

timeoutMs: optionalPositiveIntegerSchema(),

9+

};

10+

}

Original file line numberDiff line numberDiff line change

@@ -17,17 +17,14 @@ import { createSubsystemLogger } from "../../logging/subsystem.js";

1717

import { collectEnabledInsecureOrDangerousFlags } from "../../security/dangerous-config-flags.js";

1818

import { isRecord as isPlainObject } from "../../shared/record-coerce.js";

1919

import { normalizeOptionalString, readStringValue } from "../../shared/string-coerce.js";

20-

import {

21-

optionalNonNegativeIntegerSchema,

22-

optionalPositiveIntegerSchema,

23-

stringEnum,

24-

} from "../schema/typebox.js";

20+

import { optionalNonNegativeIntegerSchema, stringEnum } from "../schema/typebox.js";

2521

import {

2622

type AnyAgentTool,

2723

jsonResult,

2824

readNonNegativeIntegerParam,

2925

readStringParam,

3026

} from "./common.js";

27+

import { gatewayCallOptionSchemaProperties } from "./gateway-schema.js";

3128

import { callGatewayTool, readGatewayCallOptions } from "./gateway.js";

3229
3330

const log = createSubsystemLogger("gateway-tool");

@@ -350,9 +347,7 @@ const GatewayToolSchema = Type.Object({

350347

reason: Type.Optional(Type.String()),

351348

continuationMessage: Type.Optional(Type.String()),

352349

// config.get, config.schema.lookup, config.apply, update.run

353-

gatewayUrl: Type.Optional(Type.String()),

354-

gatewayToken: Type.Optional(Type.String()),

355-

timeoutMs: optionalPositiveIntegerSchema(),

350+

...gatewayCallOptionSchemaProperties(),

356351

// config.schema.lookup

357352

path: Type.Optional(Type.String()),

358353

// config.apply, config.patch

Original file line numberDiff line numberDiff line change

@@ -381,6 +381,47 @@ async function executeSend(params: {

381381

return lastRunMessageActionInput();

382382

}

383383
384+

describe("message tool gateway timeout", () => {

385+

it("advertises timeoutMs as a positive integer", () => {

386+

const tool = createMessageTool();

387+

expect(getToolProperties(tool).timeoutMs).toMatchObject({ type: "integer", minimum: 1 });

388+

});

389+
390+

it.each([-1, 1.5, "fast"])(

391+

"rejects invalid timeoutMs value %s before dispatch",

392+

async (timeoutMs) => {

393+

mockSendResult();

394+

const tool = createMessageTool({

395+

runMessageAction: mocks.runMessageAction as never,

396+

});

397+
398+

await expect(

399+

tool.execute("1", {

400+

action: "send",

401+

target: "telegram:123",

402+

message: "hi",

403+

timeoutMs,

404+

}),

405+

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

406+

expect(mocks.runMessageAction).not.toHaveBeenCalled();

407+

},

408+

);

409+
410+

it("accepts string timeoutMs values through the shared numeric reader", async () => {

411+

mockSendResult();

412+
413+

const call = await executeSend({

414+

action: {

415+

target: "telegram:123",

416+

message: "hi",

417+

timeoutMs: "5000",

418+

},

419+

});

420+
421+

expect(call?.gateway?.timeoutMs).toBe(5000);

422+

});

423+

});

424+
384425

describe("message tool secret scoping", () => {

385426

it("marks message-tool-only source replies in the tool description", () => {

386427

const scopedTool = createMessageTool({

Original file line numberDiff line numberDiff line change

@@ -39,8 +39,9 @@ import { resolveSessionAgentId } from "../agent-scope.js";

3939

import { listAllChannelSupportedActions, listChannelSupportedActions } from "../channel-tools.js";

4040

import { channelTargetSchema, channelTargetsSchema, stringEnum } from "../schema/typebox.js";

4141

import type { AnyAgentTool } from "./common.js";

42-

import { jsonResult, readNumberParam, readStringParam } from "./common.js";

43-

import { resolveGatewayOptions } from "./gateway.js";

42+

import { jsonResult, readStringParam } from "./common.js";

43+

import { gatewayCallOptionSchemaProperties } from "./gateway-schema.js";

44+

import { readGatewayCallOptions, resolveGatewayOptions } from "./gateway.js";

4445
4546

const AllMessageActions = CHANNEL_MESSAGE_ACTION_NAMES;

4647

const MESSAGE_TOOL_THREAD_READ_HINT =

@@ -421,11 +422,7 @@ function buildModerationSchema() {

421422

}

422423
423424

function buildGatewaySchema() {

424-

return {

425-

gatewayUrl: Type.Optional(Type.String()),

426-

gatewayToken: Type.Optional(Type.String()),

427-

timeoutMs: Type.Optional(Type.Number()),

428-

};

425+

return gatewayCallOptionSchemaProperties();

429426

}

430427
431428

function buildPresenceSchema() {

@@ -1014,11 +1011,7 @@ export function createMessageTool(options?: MessageToolOptions): AnyAgentTool {

10141011

params.accountId = accountId;

10151012

}

10161013
1017-

const gatewayResolved = resolveGatewayOptions({

1018-

gatewayUrl: readStringParam(params, "gatewayUrl", { trim: false }),

1019-

gatewayToken: readStringParam(params, "gatewayToken", { trim: false }),

1020-

timeoutMs: readNumberParam(params, "timeoutMs"),

1021-

});

1014+

const gatewayResolved = resolveGatewayOptions(readGatewayCallOptions(params));

10221015

const gateway = {

10231016

url: gatewayResolved.url,

10241017

token: gatewayResolved.token,

Original file line numberDiff line numberDiff line change

@@ -16,6 +16,7 @@ import {

1616

stringEnum,

1717

} from "../schema/typebox.js";

1818

import { type AnyAgentTool, jsonResult, readStringParam } from "./common.js";

19+

import { gatewayCallOptionSchemaProperties } from "./gateway-schema.js";

1920

import { callGatewayTool, readGatewayCallOptions } from "./gateway.js";

2021

import { executeNodeCommandAction, type NodeCommandAction } from "./nodes-tool-commands.js";

2122

import { executeNodeMediaAction, MEDIA_INVOKE_ACTIONS } from "./nodes-tool-media.js";

@@ -82,9 +83,7 @@ async function resolveNodePairApproveScopes(

8283

// Flattened schema: runtime validates per-action requirements.

8384

const NodesToolSchema = Type.Object({

8485

action: stringEnum(NODES_TOOL_ACTIONS),

85-

gatewayUrl: Type.Optional(Type.String()),

86-

gatewayToken: Type.Optional(Type.String()),

87-

timeoutMs: optionalPositiveIntegerSchema(),

86+

...gatewayCallOptionSchemaProperties(),

8887

node: Type.Optional(Type.String()),

8988

requestId: Type.Optional(Type.String()),

9089

// notify