Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Trending on skills.sh. Installs from upstream source veithly/tavily-search.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: tavily-search3description: |4Tavily AI search API - Optimized search for AI agents. Use when searching the web for current information, news, facts, or any task requiring real-time data.5---67# Tavily Search89Web search optimized for AI agents using Tavily API.1011## Usage1213```bash14./scripts/search "your search query"15```1617## Scripts1819| Script | Usage |20|--------|-------|21| `scripts/search <query>` | Search the web |22| `scripts/search "latest AI news" --format json` | JSON output |2324## Environment2526```bash27export TAVILY_API_KEY="your-api-key"28```2930Get API key: https://tavily.com/3132## Example3334```bash35./scripts/search "Claude AI latest features"36# Returns: Search results optimized for AI context37```38