Web Browsing
SkillWeb & browsingFetch and read web pages using command-line tools
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the Web Browsing skill
What this skill tells your AI
The instructions your AI receives, as published by pinpox/opencrow in skills/web/SKILL.md and read by ahel’s review.
You can browse the web using command-line tools via the bash tool.
Quick fetch (raw HTML or API responses)
curl -sL "https://example.com"
Use -sL to follow redirects silently. Add -o /dev/null -w "%{http_code}" to check status codes.
Rendered text (readable output)
lynx -dump "https://example.com"
Or with w3m:
w3m -dump "https://example.com"
These render HTML to plain text, making web pages readable without HTML tags.
Downloading files
curl -sLO "https://example.com/file.tar.gz"
JSON APIs
curl -s "https://api.example.com/data" | jq .
Use jq to parse and filter JSON responses.
Tips
- Always use
curl -sL(silent + follow redirects) as the default. - For long pages, pipe through
head -n 100to avoid excessive output. - Use
lynx -dumpwhen you need to read a web page — it handles tables, links, and formatting. - Check if
lynxorw3mare available withwhich lynx w3mbefore using them.
Signals
- GitHub stars
- 50
- Forks
- 10
- Last commit
- Jul 2026
Advanced
- Catalog kind
- skill
- Gateway key
web-browsing- Source
- github.com/pinpox/opencrow