AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Web Doc Resolver

skill-d-o-hub-rust-self-learning-memory-web-doc-resolver · by d-o-hub

Resolve queries or URLs into compact, LLM-ready markdown using a low-cost cascade. Prioritizes llms.txt for structured docs, uses web fetch/search tools for extraction. Use when you need to fetch documentation, resolve web URLs to markdown, search for technical content, or build context from web sources.

No reviews yet
0 installs
36 views
0.0% view→install

Install

$ agentstack add skill-d-o-hub-rust-self-learning-memory-web-doc-resolver

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-d-o-hub-rust-self-learning-memory-web-doc-resolver)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Web Doc Resolver? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Web Documentation Resolver

Resolve query or URL inputs into compact, high-signal markdown using an intelligent cascade.

Platform Tool Mapping

| Platform | Fetch Tool | Search Tool | |----------|------------|-------------| | opencode | webfetch | websearch | | claude code | WebFetch (MCP) | WebSearch (MCP) | | blackbox | web_fetch | web_search | | Python | scripts/resolve.py (auto-detects) | scripts/resolve.py (auto-detects) |

Cascade Resolution Strategy

URL Inputs

  1. llms.txt: Probe https://origin/llms.txt first (free, structured)
  2. Fetch: Use platform fetch tool for markdown content
  3. Search fallback: Find cached/mirrored versions if fetch fails

Query Inputs

  1. Search first: Use platform search tool (fast, free)
  2. Fetch top results: Get markdown from promising results

Python Script

python scripts/resolve.py "https://docs.rust-lang.org/book/"  # URL
python scripts/resolve.py "Rust async programming"           # Query
python scripts/resolve.py "query" --json --max-chars 4000    # Options

Direct Tool Usage

# opencode
webfetch https://example.com/llms.txt
webfetch --format markdown https://docs.rust-lang.org/book/
websearch "Rust book documentation"

# claude code (MCP)
WebFetch(url="https://example.com/llms.txt")
WebFetch(url="https://docs.rust-lang.org/book/")
WebSearch(query="Rust book documentation")

# blackbox
web_fetch(url="https://example.com/llms.txt", prompt="Extract all content")
web_search(query="Rust book documentation")

Best Practices

  • Check /llms.txt first for structured documentation
  • Use specific queries: "tokio spawn vs spawn_blocking difference" > "tokio"
  • Add year to queries for current info: "Rust async 2026"
  • Prefer official docs; try mirrors if primary fails

Quality Indicators

Good: Code examples, API signatures, config samples, version info, clear structure Poor: Boilerplate, paywalls, login requirements, heavy ads

Error Handling

  • Cascade fallback on provider failures
  • Log errors for debugging
  • Search fallback when direct fetch fails

Testing

cd .agents/skills/web-doc-resolver
python -m pytest tests/ -v

Files

scripts/resolve.py - Main implementation | tests/test_resolve.py - Unit tests | reference.md - Detailed reference

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.