Replacement for built-in WebSearch — Search the web using DuckDuckGo. Use this skill when the user needs current information, web search results, or to find web pages about a topic.
Scanned 8/30/2026
Install to Claude Code
npx -y skills add Djarvur/cc-websearch --skill websearch --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Websearch?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/djarvur-websearch)More formats (shields.io, HTML) on the badges page.
---
name: websearch
description: Replacement for built-in WebSearch — Search the web using DuckDuckGo. Use this skill when the user needs current information, web search results, or to find web pages about a topic.
allowed-tools: Bash(node *)
---
# WebSearch
This skill replaces the built-in WebSearch tool when unavailable.
Execute a web search by piping JSON input to the search script.
## Usage
Run the search script with the query as JSON stdin:
```bash
echo '{"query":"SEARCH_TERMS"}' | node "${CLAUDE_PLUGIN_ROOT}/skills/websearch/scripts/websearch.cjs"
```
The script accepts JSON on stdin with this schema:
- `query` (string, required, minimum 2 characters): The search query
- `allowed_domains` (string[], optional): Only return results from these domains
- `blocked_domains` (string[], optional): Exclude results from these domains
The script outputs `<search_results>` XML to stdout with title and URL for each result.
Errors and diagnostic messages are written to stderr.
Always use the search results to inform your response. Include source URLs when citing information.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!
Use this skill when developing or maintaining browser extension code in the `browser/` directory, including Chrome/Firefox/Edge compatibility, content scripts, background scripts, or i18n updates.