From armor
Fetches URLs and returns content as markdown, text, or raw HTML. Used when users want to read a webpage, inspect a URL, or pull docs from a site without a browser. Supports GitHub blobs and LLM-optimized markdown sites.
How this skill is triggered — by the user, by Claude, or both
Slash command
/armor:web-fetchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Use this skill when the user gives you a URL and wants the page contents or information derived from that page.
Use this skill when the user gives you a URL and wants the page contents or information derived from that page.
Prefer this skill over browser automation when:
Use browser tooling instead when the page requires login, heavy client-side rendering, form interaction, clicks, or debugging in a real browser.
Run the wrapper script relative to this skill directory (requires bun or node):
./web-fetch <url> [format]
Formats:
markdown — preferred default for most reading/summarization taskstext — use when the user wants plain extracted texthtml — use only when the user explicitly wants raw markup or you need to inspect the sourceExamples:
./web-fetch https://example.com markdown
./web-fetch https://example.com text
./web-fetch https://example.com html
The fetcher already does the following:
Accept: text/markdown, text/html;q=0.9 first, so sites that support agent-friendly markdown can return it directly.../blob/... URLs to raw content URLs automaticallynpx claudepluginhub markacianfrani/armor --plugin armorGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.