Real-time web intelligence powered by Nimble Search API. Perform intelligent web searches with 8 specialized focus modes (general, coding, news, academic, shopping, social, geo, location). This skill provides real-time search results when you need to search the web, find current information, discover URLs, research topics, or gather up-to-date data. Use when: searching for information, finding recent news, looking up academic papers, searching for coding examples, finding shopping results, discovering social media posts, researching topics, or getting latest real-time data.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install nimble-web-search或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install nimble-web-search⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/nimble-web-search/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
--- name: nimble-web-search description: > Real-time web intelligence powered by Nimble Search API. Perform intelligent web searches with 8 specialized focus modes (general, coding, news, academic, shopping, social, geo, location). This skill provides real-time search results when you need to search the web, find current information, discover URLs, research topics, or gather up-to-date data. Use when: searching for information, finding recent news, looking up academic papers, searching for coding examples, finding shopping results, discovering social media posts, researching topics, or getting latest real-time data. license: MIT metadata: version: "0.1.0" author: Nimbleway repository: https://github.com/Nimbleway/agent-skills ---
Real-time web intelligence using Nimble Search API with specialized focus modes and AI-powered result synthesis.
Nimble API Key Required - Get your key at https://www.nimbleway.com/
Set the NIMBLE_API_KEY environment variable using your platform's method:
Claude Code:
// ~/.claude/settings.json
{
"env": {
"NIMBLE_API_KEY": "your-api-key-here"
}
}
VS Code/GitHub Copilot:
.github/skills/ directory in your repositoryShell/Terminal:
export NIMBLE_API_KEY="your-api-key-here"
Any Platform: The skill checks for the NIMBLE_API_KEY environment variable regardless of how you set it.
IMPORTANT: Before making any search request, verify the API key is configured:
# Check if API key is set
if [ -z "$NIMBLE_API_KEY" ]; then
echo "❌ Error: NIMBLE_API_KEY not configured"
echo ""
echo "Get your API key: https://www.nimbleway.com/"
echo ""
echo "Configure using your platform's method:"
echo "- Claude Code: Add to ~/.claude/settings.json"
echo "- GitHub Copilot: Use GitHub Actions secrets"
echo "- Shell: export NIMBLE_API_KEY=\"your-key\""
echo ""
echo "Do NOT fall back to other search tools - guide the user to configure first."
exit 1
fi
Nimble Search provides real-time web intelligence with 8 specialized focus modes optimized for different types of queries. Get instant access to current web data with AI-powered answer generation, deep content extraction, URL discovery, and smart filtering by domain and date.
IMPORTANT: Always Specify These Parameters
When using this skill, always explicitly set the following parameters in your requests:
deep_search: Default to false for 5-10x faster responses - Use false (FAST MODE - 1-3 seconds): For 95% of use cases - URL discovery, research, comparisons, answer generation - Use true (DEEP MODE - 5-15 seconds): Only when you specifically need full page content extracted for archiving or detailed analysis
focus: Default to "general" for broad searches - Change to specific mode (coding, news, academic, shopping, social, geo, location) for targeted results
max_results: Default to 10 - Balanced speed and coveragePerformance Awareness: By explicitly setting deep_search: false, you're choosing fast mode and should expect results in 1-3 seconds. If you set deep_search: true, expect 5-15 seconds response time.
Use the wrapper script for the simplest experience:
# ALWAYS specify deep_search explicitly
./scripts/search.sh '{
"query": "React hooks",
"deep_search": false
}'
The script automatically handles authentication, tracking headers, and output formatting.
Use deep_search: false (FAST MODE - 1-3 seconds) - Default for 95% of cases:
Use deep_search: true (DEEP MODE - 5-15 seconds) - Only when specifically needed:
Decision Rule: If you're not sure, use deep_search: false. You can always re-run with true if needed.
Choose the appropriate focus mode based on your query type:
LLM Answer Generation
URL Discovery
Deep Content Extraction
deep_search=false - Fastest response, returns titles, descriptions, and URLsdeep_search=true - Slower, extracts full page contentdeep_search=false (the default)Domain Filtering
Time Filtering
time_range for real-time recency filtering (hour, day, week, month, year)start_date/end_date for precise date ranges (YYYY-MM-DD)time_range and date filters are mutually exclusiveAll examples below use the ./scripts/search.sh wrapper for simplicity. For raw API usage, see the API Integration section.
Quick search in fast mode (ALWAYS specify deep_search explicitly):
./scripts/search.sh '{
"query": "React Server Components tutorial",
"deep_search": false
}'
For technical content, specify coding focus (still fast mode):
./scripts/search.sh '{
"query": "React Server Components tutorial",
"focus": "coding",
"deep_search": false
}'
Get synthesized insights from multiple sources (fast mode works great with answer generation):
./scripts/search.sh '{
"query": "impact of AI on software development 2026",
"deep_search": false,
"include_answer": true
}'
Target specific authoritative sources (fast mode):
./scripts/search.sh '{
"query": "async await patterns",
"focus": "coding",
"deep_search": false,
"include_domains": ["github.com", "stackoverflow.com", "dev.to"],
"max_results": 8
}'
Track current events and breaking news as they happen (fast mode):
...
安装 Nimble Web Search 后,可以对 AI 说这些话来触发它
Help me get started with Nimble Web Search
Explains what Nimble Web Search does, walks through the setup, and runs a quick demo based on your current project
Use Nimble Web Search to real-time web intelligence powered by Nimble Search API
Invokes Nimble Web Search with the right parameters and returns the result directly in the conversation
What can I do with Nimble Web Search in my data & analytics workflow?
Lists the top use cases for Nimble Web Search, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/nimble-web-search/ 目录(个人级,所有项目可用),或 .claude/skills/nimble-web-search/(项目级)。重启 AI 客户端后,用 /nimble-web-search 主动调用,或让 AI 根据上下文自动发现并使用。
Nimble Web Search 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
Nimble Web Search 可免费安装使用。请查阅仓库了解许可证信息。
Real-time web intelligence powered by Nimble Search API. Perform intelligent web searches with 8 specialized focus modes (general, coding, news, academic, shopping, social, geo, location). This skill provides real-time search results when you need to search the web, find current information, discover URLs, research topics, or gather up-to-date data. Use when: searching for information, finding recent news, looking up academic papers, searching for coding examples, finding shopping results, discovering social media posts, researching topics, or getting latest real-time data.
Automate my data & analytics tasks using Nimble Web Search
Identifies repetitive steps in your workflow and sets up Nimble Web Search to handle them automatically
Nimble Web Search 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。