Agent skill
web-search
General-purpose web search for facts, documentation, and current information.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/web-search-niraven-pokee-deep-research-
Metadata
Additional technical details for this skill
- openclaw
-
{ "emoji": "\ud83c\udf10", "category": "research" }
SKILL.md
Web Search
General-purpose web search for facts, documentation, and current information.
Basic Usage
web_search(query="...", count=5)
Parameters
| Parameter | Type | Description |
|---|---|---|
query |
string | Search query |
count |
number | Results (1-10) |
country |
string | Region code (US, DE, ALL) |
freshness |
string | pd (day), pw (week), pm (month), py (year) |
search_lang |
string | ISO language code |
When to Use
| Scenario | Example |
|---|---|
| Quick facts | "Python 3.12 release date" |
| Documentation | "Docker compose syntax volumes" |
| Current events | "OpenAI news this week" |
| Troubleshooting | "Error: connection refused port 5432" |
| Comparisons | "Ubuntu 22.04 vs 24.04" |
Advanced Queries
Time-Bound
# Last week only
freshness="pw"
# Specific date range
freshness="2026-01-01to2026-02-01"
Site-Specific
Add to query:
"query" site:github.com
"query" site:stackoverflow.com
"query" site:docs.python.org
Region-Specific
country="DE" # German results
search_lang="de" # German language
Integration with Research
Use web_search as first step, then:
- Quick facts → Use directly
- Complex topics → Follow with
web_fetchon top results - Deep research → Feed to
perplexity-deep-searchorpokee-deep-research
Best Practices
- Be specific — "Docker volume mount permissions" > "Docker issues"
- Include context — "Python" vs "Python programming language"
- Check dates — Use
freshnessfor time-sensitive topics - Verify sources — Prefer official docs over forums
- Chain tools — Search → Fetch → Synthesize
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?