Loading...
Loading...
Fetch and extract full article content from URLs. Returns complete text with structure (headings, links, lists) instead of summaries. 7 extraction strategies, browser impersonation, 200-700ms.
npx skill4agent add teng-lin/agent-fetch agent-fetch/agent-fetch <url>npx agent-fetch --help/agent-fetch <url>npx agent-fetch "<url>" --json---
title: {title}
author: {byline || "Unknown"}
source: {siteName}
url: {url}
date: {publishedTime || "Unknown"}
fetched_in: {latencyMs}ms
---
## {markdown || textContent}
{markdown || textContent}suggestedAction| suggestedAction | What it means | Next action |
|---|---|---|
| Needs full browser | Inform user; agent-fetch is HTTP-only |
| Rate limited | Wait 60s and retry |
| Cannot access this site | Inform user |
/agent-fetch raw <url>npx agent-fetch "<url>" --raw/agent-fetch quiet <url>npx agent-fetch "<url>" -q/agent-fetch text <url>npx agent-fetch "<url>" --text| Strategy | What it does |
|---|---|
| Readability | Mozilla's Reader View algorithm (strict + relaxed) |
| Text density | Statistical text-to-tag ratio analysis (CETD) |
| JSON-LD | Parses schema.org structured data |
| Next.js | Extracts from page props ( |
| React Server Components | Parses streaming RSC payloads |
| WordPress REST API | Fetches via |
| CSS selectors | Probes semantic containers ( |
| agent-fetch | Built-in web fetch | |
|---|---|---|
| Content | Full article text | Summary/truncation |
| Structure | Markdown with headings, links, lists | Plain text |
| Metadata | Title, author, date, site name | None |
| Extraction | 7 strategies (best result wins) | Basic parse |
| TLS fingerprinting | Browser impersonation via httpcloak | Basic headers |
| Speed | 200-700ms | 2-5s |
| Install needed | Yes (npm) | No (built-in) |
| JavaScript | No | Yes |