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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
The GitHub Blog
The GitHub Blog
J
Java Code Geeks
Engineering at Meta
Engineering at Meta
N
Netflix TechBlog - Medium
A
About on SuperTechFans
博客园 - 三生石上(FineUI控件)
罗磊的独立博客
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
T
Tailwind CSS Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Vercel News
Vercel News
腾讯CDC
博客园 - 聂微东
The Cloudflare Blog
F
Fortinet All Blogs
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
Visual Studio Blog
Last Week in AI
Last Week in AI
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
feat: add PI tool search runtime · openclaw/openclaw@93acb38
steipete · 2026-05-10 · via Recent Commits to openclaw:main

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

7878

normalizeToolName,

7979

resolveToolProfilePolicy,

8080

} from "./tool-policy.js";

81+

import {

82+

createToolSearchTools,

83+

resolveToolSearchConfig,

84+

TOOL_CALL_RAW_TOOL_NAME,

85+

TOOL_DESCRIBE_RAW_TOOL_NAME,

86+

TOOL_SEARCH_CODE_MODE_TOOL_NAME,

87+

TOOL_SEARCH_RAW_TOOL_NAME,

88+

type ToolSearchCatalogRef,

89+

type ToolSearchCatalogToolExecutor,

90+

} from "./tool-search.js";

8191

import { resolveWorkspaceRoot } from "./workspace-dir.js";

82928393

function isOpenAIProvider(provider?: string) {

@@ -376,6 +386,12 @@ export function createOpenClawCodingTools(options?: {

376386

forceHeartbeatTool?: boolean;

377387

/** If false, build plugin tools only while preserving the shared policy pipeline. */

378388

includeCoreTools?: boolean;

389+

/** PI-only: expose OpenClaw Tool Search controls for catalog compaction. */

390+

includeToolSearchControls?: boolean;

391+

/** Executes cataloged tools through the active PI run lifecycle. */

392+

toolSearchCatalogExecutor?: ToolSearchCatalogToolExecutor;

393+

/** Runtime-local Tool Search catalog ref shared with PI attempt compaction. */

394+

toolSearchCatalogRef?: ToolSearchCatalogRef;

379395

/** Limits which tool families are materialized before the shared policy pipeline runs. */

380396

toolConstructionPlan?: OpenClawCodingToolConstructionPlan;

381397

/** Whether the sender is an owner (required for owner-only tools). */

@@ -450,9 +466,24 @@ export function createOpenClawCodingTools(options?: {

450466

(options?.trigger === "heartbeat" &&

451467

options?.config?.messages?.visibleReplies === "message_tool");

452468

const forceHeartbeatTool = options?.forceHeartbeatTool === true || enableHeartbeatTool;

469+

const toolSearchConfig = resolveToolSearchConfig(options?.config);

470+

const toolSearchControlsEnabled =

471+

options?.includeToolSearchControls === true && toolSearchConfig.enabled;

472+

const toolSearchControlAllowlist = toolSearchControlsEnabled

473+

? [

474+

TOOL_SEARCH_CODE_MODE_TOOL_NAME,

475+

TOOL_SEARCH_RAW_TOOL_NAME,

476+

TOOL_DESCRIBE_RAW_TOOL_NAME,

477+

TOOL_CALL_RAW_TOOL_NAME,

478+

]

479+

: [];

480+

const mergeToolSearchControlAllowlist = <TPolicy extends { allow?: string[] }>(

481+

policy: TPolicy | undefined,

482+

) => mergeAlsoAllowPolicy(policy, toolSearchControlAllowlist);

453483

const runtimeProfileAlsoAllow = [

454484

...(options?.forceMessageTool ? ["message"] : []),

455485

...(forceHeartbeatTool ? [HEARTBEAT_RESPONSE_TOOL_NAME] : []),

486+

...toolSearchControlAllowlist,

456487

];

457488

const profilePolicyWithAlsoAllow = mergeAlsoAllowPolicy(profilePolicy, [

458489

...(profileAlsoAllow ?? []),

@@ -483,16 +514,26 @@ export function createOpenClawCodingTools(options?: {

483514

store: subagentStore,

484515

})

485516

: undefined;

517+

const globalPolicyWithToolSearchControls = mergeToolSearchControlAllowlist(globalPolicy);

518+

const globalProviderPolicyWithToolSearchControls =

519+

mergeToolSearchControlAllowlist(globalProviderPolicy);

520+

const agentPolicyWithToolSearchControls = mergeToolSearchControlAllowlist(agentPolicy);

521+

const agentProviderPolicyWithToolSearchControls =

522+

mergeToolSearchControlAllowlist(agentProviderPolicy);

523+

const groupPolicyWithToolSearchControls = mergeToolSearchControlAllowlist(groupPolicy);

524+

const sandboxToolPolicyWithToolSearchControls =

525+

mergeToolSearchControlAllowlist(sandboxToolPolicy);

526+

const subagentPolicyWithToolSearchControls = mergeToolSearchControlAllowlist(subagentPolicy);

486527

const allowBackground = isToolAllowedByPolicies("process", [

487528

profilePolicyWithAlsoAllow,

488529

providerProfilePolicyWithAlsoAllow,

489-

globalPolicy,

490-

globalProviderPolicy,

491-

agentPolicy,

492-

agentProviderPolicy,

493-

groupPolicy,

494-

sandboxToolPolicy,

495-

subagentPolicy,

530+

globalPolicyWithToolSearchControls,

531+

globalProviderPolicyWithToolSearchControls,

532+

agentPolicyWithToolSearchControls,

533+

agentProviderPolicyWithToolSearchControls,

534+

groupPolicyWithToolSearchControls,

535+

sandboxToolPolicyWithToolSearchControls,

536+

subagentPolicyWithToolSearchControls,

496537

]);

497538

options?.recordToolPrepStage?.("tool-policy");

498539

const execConfig = resolveExecConfig({ cfg: options?.config, agentId });

@@ -705,6 +746,19 @@ export function createOpenClawCodingTools(options?: {

705746

},

706747

resolvedConfig: options?.config,

707748

});

749+

const toolSearchTools = toolSearchControlsEnabled

750+

? createToolSearchTools({

751+

config: options?.config,

752+

runtimeConfig: options?.config,

753+

agentId,

754+

sessionKey: options?.sessionKey,

755+

sessionId: options?.sessionId,

756+

runId: options?.runId,

757+

catalogRef: options?.toolSearchCatalogRef,

758+

abortSignal: options?.abortSignal,

759+

executeTool: options?.toolSearchCatalogExecutor,

760+

})

761+

: [];

708762

const tools: AnyAgentTool[] = [

709763

...base,

710764

...(includeBaseCodingTools && sandboxRoot

@@ -788,6 +842,7 @@ export function createOpenClawCodingTools(options?: {

788842

recordToolPrepStage: options?.recordToolPrepStage,

789843

})

790844

: pluginToolsOnly),

845+

...toolSearchTools,

791846

];

792847

options?.recordToolPrepStage?.("openclaw-tools");

793848

const toolsForMemoryFlush: AnyAgentTool[] = isMemoryFlushRun && memoryFlushWritePath ? [] : tools;

@@ -847,15 +902,15 @@ export function createOpenClawCodingTools(options?: {

847902

providerProfilePolicy: providerProfilePolicyWithAlsoAllow,

848903

providerProfile,

849904

providerProfileUnavailableCoreWarningAllowlist: providerProfilePolicy?.allow,

850-

globalPolicy,

851-

globalProviderPolicy,

852-

agentPolicy,

853-

agentProviderPolicy,

854-

groupPolicy,

905+

globalPolicy: globalPolicyWithToolSearchControls,

906+

globalProviderPolicy: globalProviderPolicyWithToolSearchControls,

907+

agentPolicy: agentPolicyWithToolSearchControls,

908+

agentProviderPolicy: agentProviderPolicyWithToolSearchControls,

909+

groupPolicy: groupPolicyWithToolSearchControls,

855910

agentId,

856911

}),

857-

{ policy: sandboxToolPolicy, label: "sandbox tools.allow" },

858-

{ policy: subagentPolicy, label: "subagent tools.allow" },

912+

{ policy: sandboxToolPolicyWithToolSearchControls, label: "sandbox tools.allow" },

913+

{ policy: subagentPolicyWithToolSearchControls, label: "subagent tools.allow" },

859914

],

860915

});

861916

options?.recordToolPrepStage?.("authorization-policy");