docs-seeker

Solid

Find documentation for APIs, libraries, and error messages. Looks up official docs, changelog entries, and migration guides.

Data & Documents 81 stars 23 forks Updated 3 days ago MIT

Install

View on GitHub

Quality Score: 88/100

Stars 20%
64
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

# docs-seeker ## Purpose Documentation lookup utility. Receives a library name, API reference, or error message, resolves the correct documentation, and returns API signatures, usage examples, and known issues. Stateless — no memory between calls. ## Calls (outbound) None — pure L3 utility using `WebSearch`, `WebFetch`, and Context7 MCP tools directly. ## Called By (inbound) - `debug` (L2): lookup API docs for unclear errors - `fix` (L2): check correct API usage before applying changes - `review` (L2): verify API usage is current and correct - `adversary` (L2): verify framework/API assumptions in plan are correct ## Execution ### Input ``` target: string — library name, API endpoint, or error message version: string — (optional) specific version to look up query: string — specific question about the target (e.g., "how to configure retry") ``` ### Step 1 — Identify Target Parse the input to extract: - Library or framework name (e.g., "react-query", "fastapi", "prisma") - Version if specified - The specific API, method, or error to look up ### Step 2 — Try Context7 MCP (fastest) Attempt Context7 MCP lookup first (faster, higher quality): 1. Call `mcp__plugin_context7_context7__resolve-library-id` with the library name and query 2. Select the best matching library ID from results (prioritize: name match, source reputation, snippet count) 3. Call `mcp__plugin_context7_context7__query-docs` with the resolved library ID and the specific query 4...

Details

Author
Rune-kit
Repository
Rune-kit/rune
Created
5 months ago
Last Updated
3 days ago
Language
JavaScript
License
MIT

Integrates with

Bundled in these plugins

Similar Skills

Semantically similar based on skill content — not just same category