32 lines
912 B
Markdown
32 lines
912 B
Markdown
---
|
|
name: fetch
|
|
description: Use when user asks to fetch URL content, read documentation from a URL, get webpage content as markdown, or extract structured content from any web page URL.
|
|
---
|
|
|
|
# Fetch - Get Structured Content from URLs
|
|
|
|
## Overview
|
|
|
|
Fetch and extract structured markdown content from any URL without opening a browser.
|
|
|
|
## When to Use
|
|
|
|
- Fetch documentation from a URL
|
|
- Read webpage content as markdown
|
|
- Get structured content from any web page
|
|
- Extract article or blog post content
|
|
- Parse HTML content into clean markdown format
|
|
|
|
## Available Actions
|
|
|
|
| Action | Description |
|
|
|--------|-------------|
|
|
| `skill_fetch` | Fetch URL and return structured markdown content |
|
|
|
|
|
|
## When NOT to Use
|
|
|
|
- For AI-powered web search → use `search` skill instead
|
|
- For interactive browser control → use `browser` skill instead
|
|
- For complex data extraction → use `crawl` or `js_code` skill instead
|