Claude
Skills
Sign in
โ† Back

web

Included with Lifetime
$97 forever

Search the web using Brave Search API and fetch page content with HTML-to-markdown conversion. Use when user needs current information, online documentation, or specific URL content beyond knowledge cutoff.

Ads & Marketingscripts

What this skill does


# web

## ๐ŸŽฏ Triggers
**When user wants to:**
- Search the internet
- Get current/recent information
- Fetch content from a URL
- Access online documentation

**Skip when:**
- Answer is within knowledge cutoff
- Local file operation

## Scripts

### search
**What:** Search the web using Brave Search API
**Pattern:** User wants to search โ†’ `script_run web search --query "USER_QUERY" --json`
**Example:** "Search for python tutorials" โ†’ `script_run web search --query "python tutorials" --json`

### fetch
**What:** Fetch and convert web page to markdown
**Pattern:** User provides URL โ†’ `script_run web fetch --url "USER_URL" --json`
**Example:** "Get https://example.com" โ†’ `script_run web fetch --url "https://example.com" --json`

## Quick Reference
```
User: "Search for X"          โ†’ script_run web search --query "X" --json
User: "Fetch https://..."     โ†’ script_run web fetch --url "https://..." --json
User: "Find recent news on X" โ†’ script_run web search --query "X news" --json
```

## Requires
- `BRAVE_API_KEY` environment variable for search

Related in Ads & Marketing