home / skills / xfstudio / skills / tavily-web
This skill enables web search, content extraction, and crawling via the Tavily API to enhance research and information gathering.
npx playbooks add skill xfstudio/skills --skill tavily-webReview the files below or copy the command above to add this skill to your agents.
---
name: tavily-web
description: Web search, content extraction, crawling, and research capabilities using Tavily API
---
# tavily-web
## Overview
Web search, content extraction, crawling, and research capabilities using Tavily API
## When to Use
- When you need to search the web for current information
- When extracting content from URLs
- When crawling websites
## Installation
```bash
npx skills add -g BenedictKing/tavily-web
```
## Step-by-Step Guide
1. Install the skill using the command above
2. Configure Tavily API key
3. Use naturally in Claude Code conversations
## Examples
See [GitHub Repository](https://github.com/BenedictKing/tavily-web) for examples.
## Best Practices
- Configure API keys via environment variables
## Troubleshooting
See the GitHub repository for troubleshooting guides.
## Related Skills
- context7-auto-research, exa-search, firecrawl-scraper, codex-review
This skill provides web search, content extraction, crawling, and research features by integrating with the Tavily API. It lets an AI agent or CLI tool fetch current web results, extract page text and metadata, and crawl sites for structured research. It is aimed at developers and researchers who need automated, programmable web access from Python-based agents.
The skill sends queries to the Tavily API to perform live web searches and to retrieve page content. It can extract article text, links, headings, and metadata from URLs, and follow links to crawl a site within configured limits. Results are returned in structured form so downstream code or agents can summarize, index, or analyze the extracted data.
How do I provide the Tavily API key?
Set the API key as an environment variable in your runtime environment and configure the skill to read that variable.
Can I control crawl limits?
Yes. Configure crawl depth, page limits, and request rate to match your needs and to respect site policies.
What output formats are available?
The skill returns structured JSON containing text, metadata, links, and status fields suitable for indexing or analysis.