用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AxGord/claude-workflow --skill web-reading命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Debugging meta-patterns — what to do when fixes don't stick
Game dev precision and physics gotchas
Claude Code configuration gotchas — permission rule syntax and evaluation order, settings hierarchy, plugin install scopes, hook behavior
基于 SOC 职业分类
正在显示 SKILL.md
| name | web-reading |
| description | Fetch web content via subagents |
Every web fetch goes through a subagent (Agent tool) with a precise extraction prompt — ALWAYS specify exactly what to extract, never "get the page content" or "summarize this page". Never put raw web content into main conversation context.
Subagents run in the background by default — pass
run_in_background: false when the fetched result gates your next step.
Note: WebFetch/WebSearch may be deferred tools — load them via
ToolSearch (select:WebFetch,WebSearch) before first use.
Pick the right tool before reaching for the web:
gh CLIgh api or direct WebFetchnpm info <pkg>pip index versions <pkg> or the PyPI JSON API
(https://pypi.org/pypi/<pkg>/json) — pip show only reports the
locally installed version, not what's availableIf none apply → Step 2.
Subagent uses WebFetch with a strict prompt:
"Extract ONLY the main article content as clean markdown. Ignore navigation, sidebars, headers, footers, ads, cookie banners. Return structured content with headings, code blocks, and lists."
Use WebFetch for raw files too (.md, .json, .yaml, .txt, .xml, .csv).
If WebFetch failed or returned junk (bot walls, heavily scripted pages), Jina converts HTML → clean markdown:
https://r.jina.ai/<original-url>
If the page itself is inaccessible — search for the same content in mirrors, official docs, blogs, cached versions.
When content requires JS rendering or visual analysis, and a browser MCP is available. Route through a subagent like every other fetch — the subagent drives the browser and returns a TEXT summary only: