Context7 Documentation Lookup skill
Fetch up-to-date documentation and code examples for any library, framework, SDK, CLI tool, or cloud service.
by upstash·MIT license·GitHub ↗
★ 62,297 Stars on the repo·Checked
npx degit upstash/context7/packages/pi/skills/context7-docs#master ~/.claude/skills/context7-docsFiles of Context7 Documentation Lookup
Files 1 file
Show the full text46 lines
Context7 Documentation Lookup
Retrieve current documentation and code examples from Context7 using the resolve-library-id and query-docs tools that ship with this extension.
When to use
Reach for these tools whenever a question involves a specific library, framework, SDK, CLI tool, or cloud service. Examples:
- "How do I configure caching in Next.js 16?"
- "What's the syntax for Prisma's
findManywith relations?" - "Show me a working Tailwind v4 install for a Vite app."
- "How do I rate-limit with
@upstash/ratelimit?"
Workflow
- Resolve the library ID. Call
resolve-library-idwith the library name and what to look up in the library's documentation. The tool returns matching libraries with their Context7 IDs (/org/projectformat), descriptions, snippet counts, and quality scores. Pick the best match — prioritize official sources, name match, and high benchmark scores. - Query the docs. Call
query-docswith the chosen library ID and what to look up in the library's documentation, scoped to a single concept — if the question spans multiple distinct concepts, make a separate call per concept with the same library ID, unless the question is about how the concepts interact. The tool returns documentation snippets and code examples. - Answer. Cite the library ID you used and quote code examples verbatim when relevant.
If the user supplies a library ID in /org/project or /org/project/version format directly, skip step 1 and call query-docs immediately.
Constraints
- Do not call either tool more than 3 times per question.
- Do not pass API keys, passwords, credentials, personal data, or proprietary code as the
queryargument — it is sent to the Context7 API. - Authentication uses the
CONTEXT7_API_KEYenvironment variable. Get a key at https://context7.com/dashboard if requests fail with an auth error.
| 1 | |
| 2 | name context7-docs |
| 3 | description >- |
| 4 | Fetch up-to-date documentation and code examples for any library, framework, |
| 5 | SDK, CLI tool, or cloud service. Use whenever the user asks about a specific |
| 6 | library — even well-known ones like React, Next.js, Prisma, Express, Tailwind, |
| 7 | Django, or Spring Boot — because training data may not reflect recent API |
| 8 | changes or version updates. |
| 9 | |
| 10 | Always use for: API syntax questions, configuration options, version migration |
| 11 | issues, "how do I" questions mentioning a library name, debugging that involves |
| 12 | library-specific behavior, setup instructions, and CLI tool usage. |
| 13 | |
| 14 | Use even when you think you know the answer. Do not rely on training data for |
| 15 | API details, signatures, or configuration options — they are frequently out of |
| 16 | date. Prefer this over web search for library documentation. |
| 17 | license MIT |
| 18 | |
| 19 | |
| 20 | # Context7 Documentation Lookup |
| 21 | |
| 22 | Retrieve current documentation and code examples from [Context7] using the `resolve-library-id` and `query-docs` tools that ship with this extension. |
| 23 | |
| 24 | ## When to use |
| 25 | |
| 26 | Reach for these tools whenever a question involves a specific library, framework, SDK, CLI tool, or cloud service. Examples: |
| 27 | |
| 28 | "How do I configure caching in Next.js 16?" |
| 29 | "What's the syntax for Prisma's `findMany` with relations?" |
| 30 | "Show me a working Tailwind v4 install for a Vite app." |
| 31 | "How do I rate-limit with `@upstash/ratelimit`?" |
| 32 | |
| 33 | ## Workflow |
| 34 | |
| 35 | **Resolve the library ID.** Call `resolve-library-id` with the library name and what to look up in the library's documentation. The tool returns matching libraries with their Context7 IDs (`/org/project` format), descriptions, snippet counts, and quality scores. Pick the best match — prioritize official sources, name match, and high benchmark scores. |
| 36 | **Query the docs.** Call `query-docs` with the chosen library ID and what to look up in the library's documentation, scoped to a single concept — if the question spans multiple distinct concepts, make a separate call per concept with the same library ID, unless the question is about how the concepts interact. The tool returns documentation snippets and code examples. |
| 37 | **Answer.** Cite the library ID you used and quote code examples verbatim when relevant. |
| 38 | |
| 39 | If the user supplies a library ID in `/org/project` or `/org/project/version` format directly, skip step 1 and call `query-docs` immediately. |
| 40 | |
| 41 | ## Constraints |
| 42 | |
| 43 | Do not call either tool more than 3 times per question. |
| 44 | Do not pass API keys, passwords, credentials, personal data, or proprietary code as the `query` argument — it is sent to the Context7 API. |
| 45 | Authentication uses the `CONTEXT7_API_KEY` environment variable. Get a key at https://context7.com/dashboard if requests fail with an auth error. |
| 46 |
Discussion
API and interface designGuides stable API and interface design. Use when designing APIs, module boundaries, or any public interface. Use when creating REST or GraphQL endpoints, defining type contracts between modules, or establishing boundaries between frontend and backend.Context7Pulls up-to-date, version-specific library docs and code examples into the prompt so the AI stops inventing old APIs.Adaptyv Bio Foundry APIHow to use the Adaptyv Bio Foundry API and Python SDK for protein experiment design, submission, and results retrieval. Use this skill whenever the user mentions Adaptyv, Foundry API, protein binding assays, protein screening experiments, BLI/SPR assays, thermostability assays, or wants to submit protein sequences for experimental characterization. Also trigger when code imports `adaptyv`, `adaptyv_sdk`, or `FoundryClient`, or references `foundry-api-public.adaptyvbio.com`..NET Backend Development PatternsMaster C#/.NET backend development patterns for building robust APIs, MCP servers, and enterprise applications. Covers async/await, dependency injection, Entity Framework Core, Dapper, configuration, caching, and testing with xUnit. Use when developing .NET backends, reviewing C# code, or designing API architectures.
Browse more free Claude skills or everything in Development.