-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Add web-search-plus skill (multi-provider web search + extraction, no MCP)#2725
Open
robbyczgw-cla wants to merge 1 commit into
Open
Add web-search-plus skill (multi-provider web search + extraction, no MCP) #2725robbyczgw-cla wants to merge 1 commit into
robbyczgw-cla wants to merge 1 commit into
Conversation
This was referenced Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.
What
Adds web-search-plus — a self-contained utility skill giving the container agent multi-provider web search + URL extraction via a
wspCLI. Search + extract only, no LLM synthesis, no MCP.Engine vendored byte-identical from hermes-web-search-plus v2.4.0 — pure Python stdlib (no pip deps; HTTP via
urllib). 13 providers with deterministic routing + fallback.Why
The built-in
WebSearchruns as a server-side LLM tool billed against the Agent-SDK credit pool. web-search-plus calls providers directly, so it runs outside that pool (self-hosted SearXNG is 0ドル), with provider control + higher-quality extraction. It coexists withWebSearch— it does not replace it.Conformance to the skills model
Built to
docs/skill-guidelines.md:.claude/skills/add-web-search-plus/; apply copies files in — no branch, nogit merge.python3added to the container Dockerfile — guarded by a structural test (src/wsp-skill.test.ts, vitest). Negative-probe verified: red on unapplied tree, green on applied.Verification (full /add cycle, real keys)
git statusclean → apply twice = idempotent.pnpm test353/353,tscclean..wsp.env(real key): real Serper key →wsp searchin the built container → live results.api.search.brave.com, headerX-Subscription-Token) is injected by the gateway for anall-mode agent — verified with a real Brave search returning live results while the container sent no auth header.--explain-routingdecides + explains; explicit provider selection works.SKILL.mdalone, with no ambiguity reported; all files landed correctly.