ソース情報
- リポジトリ
- AxGord/claude-workflow
- ソースの最終更新活動
- 2026年7月8日 18:54
- 検出された SKILL.md の言語
- 英語
- スター
- 5
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AxGord/claude-workflow --skill web-readingコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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: