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

推荐订阅源

L
LangChain Blog
博客园 - 司徒正美
美团技术团队
Martin Fowler
Martin Fowler
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
博客园 - 三生石上(FineUI控件)
Vercel News
Vercel News
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
爱范儿
爱范儿
U
Unit 42
Y
Y Combinator Blog
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
GbyAI
GbyAI
H
Help Net Security
量子位
Last Week in AI
Last Week in AI
博客园_首页
腾讯CDC
小众软件
小众软件

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 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 test: merge chat context notice checks · openclaw/openclaw@5c2f4af 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
Secrets: avoid broad web search discovery for single plug...
gumadeiras · 2026-04-18 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -1,4 +1,5 @@

11

import { describe, expect, it } from "vitest";

2+

import { createExaWebSearchProvider as createContractExaWebSearchProvider } from "../web-search-contract-api.js";

23

import { __testing, createExaWebSearchProvider } from "./exa-web-search-provider.js";

34
45

describe("exa web search provider", () => {

@@ -15,6 +16,31 @@ describe("exa web search provider", () => {

1516

expect(applied.plugins?.entries?.exa?.enabled).toBe(true);

1617

});

1718
19+

it("keeps the lightweight contract surface aligned with provider metadata", () => {

20+

const provider = createExaWebSearchProvider();

21+

const contractProvider = createContractExaWebSearchProvider();

22+

if (!contractProvider.applySelectionConfig) {

23+

throw new Error("Expected contract applySelectionConfig to be defined");

24+

}

25+

const applied = contractProvider.applySelectionConfig({});

26+
27+

expect(contractProvider).toMatchObject({

28+

id: provider.id,

29+

label: provider.label,

30+

hint: provider.hint,

31+

onboardingScopes: provider.onboardingScopes,

32+

credentialLabel: provider.credentialLabel,

33+

envVars: provider.envVars,

34+

placeholder: provider.placeholder,

35+

signupUrl: provider.signupUrl,

36+

docsUrl: provider.docsUrl,

37+

autoDetectOrder: provider.autoDetectOrder,

38+

credentialPath: provider.credentialPath,

39+

});

40+

expect(contractProvider.createTool({ config: {}, searchConfig: {} })).toBeNull();

41+

expect(applied.plugins?.entries?.exa?.enabled).toBe(true);

42+

});

43+
1844

it("prefers scoped configured api keys over environment fallbacks", () => {

1945

expect(__testing.resolveExaApiKey({ apiKey: "exa-secret" })).toBe("exa-secret");

2046

});

Original file line numberDiff line numberDiff line change

@@ -0,0 +1,29 @@

1+

import {

2+

createWebSearchProviderContractFields,

3+

type WebSearchProviderPlugin,

4+

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

5+
6+

export function createExaWebSearchProvider(): WebSearchProviderPlugin {

7+

const credentialPath = "plugins.entries.exa.config.webSearch.apiKey";

8+
9+

return {

10+

id: "exa",

11+

label: "Exa Search",

12+

hint: "Neural + keyword search with date filters and content extraction",

13+

onboardingScopes: ["text-inference"],

14+

credentialLabel: "Exa API key",

15+

envVars: ["EXA_API_KEY"],

16+

placeholder: "exa-...",

17+

signupUrl: "https://exa.ai/",

18+

docsUrl: "https://docs.openclaw.ai/tools/web",

19+

autoDetectOrder: 65,

20+

credentialPath,

21+

...createWebSearchProviderContractFields({

22+

credentialPath,

23+

searchCredential: { type: "scoped", scopeId: "exa" },

24+

configuredCredential: { pluginId: "exa" },

25+

selectionPluginId: "exa",

26+

}),

27+

createTool: () => null,

28+

};

29+

}

Original file line numberDiff line numberDiff line change

@@ -871,6 +871,36 @@ describe("runtime web tools resolution", () => {

871871

expect(resolvePluginWebSearchProvidersMock).not.toHaveBeenCalled();

872872

});

873873
874+

it("uses single plugin-scoped web search config as a bundled provider hint", async () => {

875+

const { metadata } = await runRuntimeWebTools({

876+

config: asConfig({

877+

plugins: {

878+

entries: {

879+

google: {

880+

enabled: true,

881+

config: {

882+

webSearch: {

883+

apiKey: { source: "env", provider: "default", id: "GOOGLE_PROVIDER_REF" },

884+

},

885+

},

886+

},

887+

},

888+

},

889+

}),

890+

env: {

891+

GOOGLE_PROVIDER_REF: "google-provider-key",

892+

},

893+

});

894+
895+

expect(metadata.search.selectedProvider).toBe("gemini");

896+

expect(resolveBundledExplicitWebSearchProvidersFromPublicArtifactsMock).toHaveBeenCalledWith({

897+

onlyPluginIds: ["google"],

898+

});

899+

expect(resolveManifestContractOwnerPluginIdMock).not.toHaveBeenCalled();

900+

expect(resolveBundledWebSearchProvidersFromPublicArtifactsMock).not.toHaveBeenCalled();

901+

expect(resolvePluginWebSearchProvidersMock).not.toHaveBeenCalled();

902+

});

903+
874904

it("limits legacy top-level web search apiKey auto-detect to compatibility owners", async () => {

875905

const { metadata } = await runRuntimeWebTools({

876906

config: asConfig({

Original file line numberDiff line numberDiff line change

@@ -542,18 +542,18 @@ export async function resolveRuntimeWebTools(params: {

542542

}

543543

const rawProvider = normalizeLowercaseStringOrEmpty(search?.provider);

544544

let configuredBundledWebSearchPluginIdHint: string | undefined;

545-

if (rawProvider && hasPluginWebSearchConfig) {

546-

configuredBundledWebSearchPluginIdHint = inferExactBundledPluginScopedWebToolConfigOwner({

547-

config: params.sourceConfig,

548-

key: "webSearch",

549-

pluginId: rawProvider,

550-

});

551-

if (!configuredBundledWebSearchPluginIdHint && !(await getHasCustomWebSearchRisk())) {

552-

configuredBundledWebSearchPluginIdHint = inferSingleBundledPluginScopedWebToolConfigOwner(

553-

params.sourceConfig,

554-

"webSearch",

555-

);

545+

if (hasPluginWebSearchConfig && !(await getHasCustomWebSearchRisk())) {

546+

if (rawProvider) {

547+

configuredBundledWebSearchPluginIdHint = inferExactBundledPluginScopedWebToolConfigOwner({

548+

config: params.sourceConfig,

549+

key: "webSearch",

550+

pluginId: rawProvider,

551+

});

556552

}

553+

configuredBundledWebSearchPluginIdHint ??= inferSingleBundledPluginScopedWebToolConfigOwner(

554+

params.sourceConfig,

555+

"webSearch",

556+

);

557557

}

558558

const searchMetadata: RuntimeWebSearchMetadata = {

559559

providerSource: "none",