rune-docs-seeker

Look up official API documentation, signatures, and migration guides for libraries and error messages.

1|Updated Mar 22, 2026
One-click install
npx skills add https://github.com/dangvu008/VietTruyen --skill rune-docs-seeker-dangvu008
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: rune-docs-seeker
Source: https://github.com/dangvu008/VietTruyen/tree/main/.agents/skills/rune-docs-seeker
Command: npx skills add https://github.com/dangvu008/VietTruyen --skill rune-docs-seeker-dangvu008

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Developers waste time hunting through search results for correct API signatures, version-specific behavior, and deprecation notices when working with unfamiliar libraries or debugging cryptic error messages. ## Core Features & Use Cases - Prioritized Lookup Chain: Queries Context7 MCP first, then llms.txt endpoints, then web search, ensuring fast and authoritative results. - Structured API References: Returns exact function signatures with parameter types, return types, minimal working code examples, and deprecation notes. - Use Case: When a build fails with an unfamiliar FastAPI error, pass the error message to get the official documentation, the correct API usage pattern, and any known issues with source URLs for verification. ## Quick Start Ask the agent to look up the official documentation and usage example for a specific library API or error message, optionally including a version number.

Frequently Asked Questions about rune-docs-seeker

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I find official API documentation for a library quickly?

Provide the library name and your specific question, and the lookup resolves it through Context7 MCP first, then llms.txt endpoints, then web search. You receive the exact API signature, a working code example, and the source URL.

How to look up documentation for a specific library version?

Pass the version string along with the library name and query. The lookup attempts to match version-specific docs and explicitly states when version-specific documentation is unavailable rather than silently returning mismatched information.

What is llms.txt and how does it help find documentation?

llms.txt is an AI-optimized documentation format hosted at predictable URLs like context7.com/{org}/{repo}/llms.txt. Fetching it returns condensed, structured docs, and appending a ?topic= parameter narrows results to a specific subject.

Does this skill modify code or just return documentation?

It only returns documentation. The scope guardrail explicitly prevents it from applying changes, writing code, or judging whether an API fits your use case; callers like debug or fix skills handle code changes.

What happens when Context7 and web search both lack coverage?

When documentation is sparse but source code is available, the fallback clones the repository and runs repomix to extract API patterns, usage examples, and internal documentation directly from the codebase.