Agent skill
open-web-unlocker
Fetch web pages and search results as clean markdown, structured JSON, or raw HTML. Use this skill when the task involves fetching a URL, scraping web content, or querying search engines (examples include reading articles, extracting product data, getting search results from Brave/Bing/DuckDuckGo, or handling JS-rendered and anti-bot pages).
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/open-web-unlocker
SKILL.md
Open Web Unlocker — Fetch Skill
Open Web Unlocker fetches web pages and returns clean markdown, raw HTML, or structured JSON. It handles static pages, JS-rendered pages, anti-bot challenges, and search engine results — all via a single CLI command with no installation required.
Quick start
bunx open-web-unlocker fetch <url>
Bun (bunx) is preferred. Node (npx) also works.
Format selection
bunx open-web-unlocker fetch <url> --format markdown # default
bunx open-web-unlocker fetch <url> --format json
bunx open-web-unlocker fetch <url> --format html
Which format to use:
| Format | When to use |
|---|---|
markdown |
Default. Clean content with nav/footer/boilerplate stripped. Best for reading or summarizing pages. |
json |
When you need structured extracted fields (title, author, price, etc.) |
html |
When you need the full raw page including all elements |
50+ site-specific parsers produce high-quality markdown and JSON for common domains. Pages without a parser fall back to generic extraction, which may include more noise.
Search engines
Fetch search result pages directly — Open Web Unlocker parses them into structured results:
bunx open-web-unlocker fetch "https://search.brave.com/search?q=query"
bunx open-web-unlocker fetch "https://www.bing.com/search?q=query"
bunx open-web-unlocker fetch "https://duckduckgo.com/?q=query"
Google is not supported.
Timeout
bunx open-web-unlocker fetch <url> --timeout 45000
Default per-strategy timeouts: ~8s for fetch, ~15s for browser. Increase --timeout for slow or JS-heavy pages.
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?