一键导入
read-url
Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Turn ambiguous requirements into structured spec documents. Surface assumptions → interview → spec → human review → execute in fresh session. Spec is a contract, not a suggestion.
Pre-merge review. Reviews the diff, auto-fixes safe issues, flags destructive commands, runs verification. Evidence before assertions.
Execute an implementation plan with verification at every step. Tests first, then code. Stop on failures — never stack problems.
Systematic debugging. Reproduce → isolate → root cause → fix → verify. Root cause confirmed before any fix is applied. Never treat symptoms.
Build frontend interfaces with a committed aesthetic direction. Screenshot-based self-verification loop. Not generic defaults.
Read-only codebase exploration. Maps structure, patterns, and boundaries before any code is written. Use subagents to isolate context.
| name | read-url |
| description | Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario. |
Turn any URL into readable Markdown. Three tools, pick the right one.
mcp__Exa__crawling_exaPrimary tool. Clean Markdown extraction with configurable maxCharacters.
mcp__Exa__crawling_exa
urls: ["https://example.com/article"]
maxCharacters: 6000 # default 3000, adjust as needed
Also use mcp__Exa__web_search_exa for search-first-then-fetch workflows.
r.jina.aiFallback when Exa can't reach the content (paywalled, JS-heavy, blocked).
https://r.jina.ai/YOUR_URL
Use with WebFetch:
WebFetch
url: "https://r.jina.ai/https://example.com/article"
prompt: "extract the main content..."
s.jina.aiFor searching when you need to find pages first, then read them.
https://s.jina.ai/YOUR_SEARCH_QUERY
Built-in fallback. Use when Exa and Jina both fail, or for quick single-page fetches.
WebFetch
url: "https://example.com"
prompt: "extract key information about..."
Can Exa reach it?
YES → mcp__Exa__crawling_exa
NO → Is it JS-heavy / paywalled / blocked?
YES → https://r.jina.ai/URL via WebFetch
NO → WebFetch directly
Need to search first?
→ mcp__Exa__web_search_exa (primary)
→ https://s.jina.ai/QUERY (fallback)
gh CLI for GitHub)gh CLIRead toolr.jina.ai for reading, s.jina.ai for searchingmcp__Exa__crawling_exa, mcp__Exa__web_search_exa