
Open Websearch Maintainer
- 26 installs
- 1.7k repo stars
- Updated August 3, 2026
- aas-ee/open-websearch
open-websearch-maintainer is a Claude Code skill for maintaining and extending the open-websearch MCP server codebase by change surface area.
About
open-websearch-maintainer is a Claude Code skill for maintaining and extending the open-websearch MCP server codebase. It classifies each change as an engine, network, tool-surface, or validation change and loads only the matching checklist. A developer uses it when editing search engines, proxy or TLS behavior, or MCP tool registration in this repo. It enforces scope discipline and treats the current repository behavior as the source of truth.
- Classifies changes into engine, network, tool-surface, or validation
- Keeps MCP tool contracts stable and networking shared
- Provides per-surface change checklists for the repo
Open Websearch Maintainer by the numbers
- 26 all-time installs (skills.sh)
- Ranked #434 of 782 Skill Development skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
open-websearch-maintainer capabilities & compatibility
- Capabilities
- repo maintenance · mcp server development · change scoping
- Use cases
- refactoring · code review · testing
What open-websearch-maintainer says it does
Maintain and extend the open-websearch MCP server.
If this skill and the current repository behavior disagree, trust the repository code, tests, and intended change scope
npx skills add https://github.com/aas-ee/open-websearch --skill open-websearch-maintainerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 26 |
|---|---|
| repo stars | ★ 1.7k |
| Last updated | August 3, 2026 |
| Repository | aas-ee/open-websearch ↗ |
What it does
Guide changes to the open-websearch MCP server codebase, routing edits by surface area across engines, networking, and tool contracts.
When should I use this skill?
When changing search engines, proxy/TLS behavior, or MCP tool registration inside the open-websearch repository.
By the numbers
- 4 change categories (engine, network, tool-surface, validation)
Files
Open WebSearch Maintainer
Use this skill when modifying the open-websearch codebase itself.
If this skill and the current repository behavior disagree, trust the repository code, tests, and intended change scope, then update the skill or docs before finishing.
First classify the change
- Engine change: new engine, engine parsing, engine pagination, anti-bot handling.
- Network change: proxy, TLS, request builder, Playwright interaction, browser fallback.
- Tool surface change: MCP tool registration, schema, engine normalization, config exposure.
- Validation-only change: tests, docs, or release hygiene when no code-path behavior changes are intended.
Use this classification as the execution entrypoint. Start by choosing one category, load only the checklist that matches it, and expand scope only when the changed code path actually crosses that boundary.
Scope discipline
- Keep fixes as local as the real failure surface allows.
- Do not turn a parsing or engine-specific issue into a shared networking refactor without evidence.
- Do not widen insecure or compatibility-relaxing behavior just to make one test pass.
- Do not change tool contracts or global behavior unless the change is intentional, verified, and documented.
Core rules
- Keep MCP tool contracts stable unless the change explicitly requires a breaking change.
- Route Axios-based networking through the shared HTTP request builder instead of ad hoc proxy handling.
- Treat proxy, TLS, and Playwright behavior as cross-cutting concerns. Verify them explicitly after changes.
- Update tests and README files when adding engines or changing behavior.
Do not
- Do not bypass the shared HTTP request builder for a one-off engine fix.
- Do not silently fork proxy behavior in a single engine unless the repository explicitly adopts that policy.
- Do not widen insecure TLS behavior beyond the narrow code path that requires it.
- Do not change tool contracts without checking tests, config handling, and README files.
- Do not touch shared networking code if the change is only about result parsing or docs.
Change checklist
When adding or changing a search engine:
- update
src/config.ts - update
src/tools/setupTools.ts - add or update engine tests
- update
README.mdandREADME-zh.md
When changing network behavior:
- prefer
src/utils/httpRequest.ts - keep
proxy: falsebehavior explicit for Axios - keep insecure TLS opt-in and scoped only where necessary
Validation
- Run TypeScript checks first.
- Run targeted tests for the touched area.
- Run live tests when the change depends on real network behavior.
Review focus
- pagination and empty-result handling
- anti-bot / verification page detection
- proxy interactions with
USE_PROXYandPROXY_URL - request-mode versus Playwright-mode behavior
- documentation drift
Read references/workflow.md when implementing changes and references/validation.md before finalizing a patch.
Validation
Baseline
npx tsc --noEmit
Targeted tests
Run the tests relevant to the touched area, for example:
npm run test:engine-normalizationnpm run test:url-safetynpm run test:http-request-optionsnpm run test:web-contentnpm run test:startpage
Live checks
Run live checks when implementation depends on real remote behavior, anti-bot handling, or parsing live HTML:
npm run test:web-content:livenpm run test:bing:livenpm run test:article-fetch:livenpm run test:startpagewhen Startpage parsing, anti-bot handling, or pagination logic changed. This test depends on real network behavior and is not the default first test for unrelated changes.
Release hygiene
- confirm docs match behavior
- confirm the new engine or fix is reflected in package scripts if needed
- use
npm pack --dry-runbefore publish
Workflow
Adding a new engine
1. Create the engine implementation under src/engines/<engine>/. 2. Export it from that engine's index.ts when needed. 3. Register it in src/tools/setupTools.ts. 4. Add it to the default/valid engine config in src/config.ts. 5. Add engine normalization coverage if the engine name has aliases or mixed-case input. 6. Update user-facing documentation in both README files.
Networking conventions
- Use
buildAxiosRequestOptions()for Axios requests. - Do not let individual engines drift into separate proxy behavior.
- Keep request headers intentional and minimal.
- Browser fallback should remain explicit and testable.
- If a change only affects parsing logic, avoid widening it into a shared networking refactor.
Documentation sync
Update these together when behavior changes:
README.mdREADME-zh.md- package scripts if a new test or workflow is added
If a change only affects docs or tests, avoid touching MCP tool contracts or shared networking code.