Agent skill
reading-websites
Use ONLY this skill when user mentions a domain (example.com, site.pl, docs.io), URL (https://...), or asks to read/fetch/check a website or webpage - MANDATORY, replaces WebFetch, crawl4ai, and curl
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/reading-websites
SKILL.md
Reading Websites
Overview
MANDATORY: Use fetch-url.sh for ALL web content fetching. This REPLACES WebFetch, crawl4ai, and curl.
When to Use
Trigger on ANY of these:
- Domain names:
example.com,site.pl,docs.io,github.com/path - URLs:
https://...,http://... - Keywords: "website", "webpage", "web page", "site content"
- User asks to read/fetch/check/view web content
The Command
~/.claude/skills/reading-websites/fetch-url.sh <url> [char_limit]
Arguments:
url- Full URL with protocol (e.g.,https://example.com/page)char_limit- Optional. Max characters to return (default: 512)
Examples:
# Read first 512 chars (default)
~/.claude/skills/reading-websites/fetch-url.sh https://docs.example.com/api
# Read more content
~/.claude/skills/reading-websites/fetch-url.sh https://docs.example.com/api 2000
Why This Wrapper
Security: This script has explicit permission. Raw curl does not.
Do NOT use:
curldirectlyWebFetchtoolmcp__crawl4aitools- Any other URL fetching method
Why: The wrapper is permissioned and scoped. Other methods require broad permissions that expose security risks.
Common Mistakes
| Mistake | Fix |
|---|---|
| Using curl directly | Use fetch-url.sh |
| Using WebFetch "because it's faster" | Use fetch-url.sh |
| Using crawl4ai "because it's better" | Use fetch-url.sh |
| Forgetting the protocol | Include https:// in URL |
Red Flags - You're About to Violate This Skill
- "curl is simpler for this"
- "WebFetch is already available"
- "crawl4ai returns cleaner output"
- "MCP tools are more capable"
- "I have direct access to web fetching tools"
- "This is just a quick fetch"
- "The wrapper is overkill for this"
- "The skill is a workaround for restricted environments"
All of these mean: Use fetch-url.sh anyway. No exceptions.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?