Agent skill
searching-web
Searches the web using Tavily API for real-time information. Use when the user needs current information, wants to search the internet, or asks questions requiring up-to-date web data.
Install this agent skill to your Project
npx add-skill https://github.com/binome-dev/humcp/tree/main/src/tools/search
SKILL.md
Web Search Tools
Tools for searching the web using the Tavily API.
Requirements
Set environment variable:
TAVILY_API_KEY: Your Tavily API key
Basic Search
result = await tavily_search(
query="latest Python release",
max_results=5
)
Response format
{
"success": true,
"data": {
"results": [
{
"title": "Result Title",
"url": "https://example.com",
"content": "Snippet of the page content...",
"score": 0.95
}
],
"query": "latest Python release"
}
}
Advanced Options
result = await tavily_search(
query="machine learning tutorials",
max_results=10,
search_depth="advanced",
include_domains=["github.com", "arxiv.org"],
exclude_domains=["pinterest.com"]
)
Parameters
| Parameter | Type | Description |
|---|---|---|
| query | str | Search query (required) |
| max_results | int | Number of results (default: 5) |
| search_depth | str | "basic" or "advanced" |
| include_domains | list | Only search these domains |
| exclude_domains | list | Exclude these domains |
When to Use
- Finding current information not in training data
- Researching recent events or news
- Looking up documentation or tutorials
- Fact-checking with web sources
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
llm
Generate text, call tools, and get structured JSON output using LLM providers (Claude, OpenAI, Gemini, Ollama). Use when the user needs to call an LLM API for text generation, function calling, or structured data extraction.
calendar-tools
Manages calendar bookings and video conferencing. Use when the user needs to check availability, create bookings on Cal.com, or schedule and manage Zoom meetings.
http-api-client
Make HTTP requests to any URL or API endpoint. Use when the user needs to call a REST API, fetch data from a URL, send webhooks, or test HTTP endpoints. Supports GET, POST, PUT, PATCH, DELETE methods with custom headers and JSON body.
processing-data
Processes CSV files and pandas DataFrames. Use when working with CSV files, tabular data, spreadsheets, or when the user asks to query, analyze, or manipulate structured data.
persistent-memory
Store, search, and retrieve persistent memories and conversation history using Mem0 or Zep. Use when the user needs to remember facts, maintain context across sessions, or manage conversational memory.
storage
Use these tools for S3-compatible object storage operations with MinIO
Didn't find tool you were looking for?