From armor
Fetches webpage content from URLs as markdown, text, or raw HTML. Use to read pages, inspect links, pull docs, or extract content without browser automation. Supports GitHub blob URLs and markdown sites.
npx claudepluginhub markacianfrani/armor --plugin armorThis skill uses the workspace's default tool permissions.
Use this skill when the user gives you a URL and wants the page contents or information derived from that page.
Mandates invoking relevant skills via tools before any response in coding sessions. Covers access, priorities, and adaptations for Claude Code, Copilot CLI, Gemini CLI.
Share bugs, ideas, or general feedback.
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 automatically