From skills
Fetches source-grounded, current docs for library/framework/API implementation details, with fallback strategies for multiple sources.
How this skill is triggered — by the user, by Claude, or both
Slash command
/skills:researchThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Source-grounded docs research for implementation details that may be stale in
Source-grounded docs research for implementation details that may be stale in training data.
Try these in order and stop at the first source that is authoritative, current enough for the requested version, and contains the API/config detail needed to answer.
1. Context7 MCP — best for library/framework/SDK documentation
mcp__context7__resolve-library-id → mcp__context7__query-docs
Prefer this for npm packages, Python libraries, and popular frameworks.
2. GitHub CLI — for repos not indexed by Context7
gh repo view <owner>/<repo> --json description,readme
gh api repos/<owner>/<repo>/contents/docs
3. WebFetch → WebSearch — for everything else
If a tool is unavailable, skip to the next available source and say which source could not be checked.
Stop only when:
Deliver actionable implementation guidance — not a raw docs dump.
Key patterns — show working code examples for the most common use cases
Common pitfalls — what trips people up, especially on first use
Version notes — call out anything version-specific, especially for fast-moving ecosystems (Next.js App Router vs Pages, React 19 changes, Python 3.12+ features)
Authoritative sources — link to the official docs page you drew from so the user can verify
Search when:
Answer from memory when:
npx claudepluginhub kriscard/skillsResearches named libraries, frameworks, SDKs, APIs, and services by walking a 5-tier source ladder from official docs to community threads, citing every claim.
Finds official docs, changelogs, and migration guides for APIs, libraries, and error messages using Context7 MCP, llms.txt, and web search. Useful for debugging errors, verifying API usage, and reviews.
Uses docpull tools to fetch, index, and search live docs for fast-moving libraries like Next.js, FastAPI, LangChain, React when answering 'how to X' or API questions.