d-o-hub/rust-self-learning-memory

web-doc-resolver

Resolve queries or URLs into compact, LLM-ready markdown using a low-cost cascade.

First seen Mar 27, 2026

Installation

$ npx skills add d-o-hub/rust-self-learning-memory --skill web-doc-resolver

Summary

  • 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.

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from d-o-hub/rust-self-learning-memory · top by installs.

npx skills add d-o-hub/rust-self-learning-memory

Browse all from d-o-hub/rust-self-learning-memory

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Declared

Repository health

Stars 12
License LICENSE
Default branch main
Open issues 3
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Allowed toolsBash, webfetch, websearch, WebFetch, WebSearch, web_fetch, web_search
Declared agents claude-code opencode

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 2,766 B
  • docs SUMMARY.md 329 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 15 installs

SKILL.md

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