Context7 Documentation Lookup Skill
Fetch current library documentation, API references, and code examples via the Context7 REST API.
When to Use
Use this skill when the user asks about library APIs, framework patterns, or version-specific behavior. Trigger on:
- Library questions: "How do I use [library]?", "[library] API docs", "[library] patterns"
- Import statements:
import, require, from followed by a library name
- Framework-specific topics: hooks, routing, middleware, ORM queries, schema definitions
When NOT to Use
Do NOT use this skill for:
- General programming concepts (closures, recursion, design patterns)
- Code review or refactoring tasks
- Debugging business logic
- Writing scripts from scratch without library-specific questions
Core Workflow
Search for the library ID:
scripts/context7.sh search "library-name"
Pick the best result: Choose the ID with the highest score and most relevant description. Prefer official sources (e.g., /vercel/next.js over community forks).
Fetch documentation with a focused topic:
scripts/context7.sh docs "<library-id>" "<topic>" "<mode>"
Always extract a specific topic from the user's question. For "How does React Suspense work with server components?", use topic suspense server components.
Parameters
| Parameter |
Required |
Description |
library-id |
Yes |
From search results, format /vendor/library |
topic |
No |
Focus area extracted from user query (e.g., hooks, routing, validation) |
mode |
No |
code (default) for API references; info for conceptual guides |
Mode Selection
Use code mode (default) when the user asks for API references, code examples, or implementation patterns.
Use info mode when the user asks for conceptual explanations, architecture guides, or migration tutorials.
Examples
# React hooks API
scripts/context7.sh search "react"
scripts/context7.sh docs "/facebook/react" "hooks" "code"
# Next.js App Router conceptual guide
scripts/context7.sh search "nextjs"
scripts/context7.sh docs "/vercel/next.js" "app router" "info"
# Django ORM queries
scripts/context7.sh search "django"
scripts/context7.sh docs "/django/django" "queryset filter" "code"
# Laravel Eloquent relationships
scripts/context7.sh search "laravel"
scripts/context7.sh docs "/laravel/framework" "eloquent relationships" "code"
Environment Configuration
Set CONTEXT7_API_KEY for higher rate limits (optional):
export CONTEXT7_API_KEY="your-api-key"
Contributing: https://github.com/netresearch/context7-skill
1---2name: context73description: Use when looking up library documentation, API references, framework patterns, or code examples for ANY library (React, Next.js, Vue, Django, Laravel, etc.). Fetches current docs via Context7 REST API. Triggers on: how to use library, API docs, framework pattern, import usage, library example.4license: (MIT AND CC-BY-SA-4.0)5---67# Context7 Documentation Lookup Skill89Fetch current library documentation, API references, and code examples via the Context7 REST API.1011## When to Use1213Use this skill when the user asks about library APIs, framework patterns, or version-specific behavior. Trigger on:1415- Library questions: "How do I use [library]?", "[library] API docs", "[library] patterns"16- Import statements: `import`, `require`, `from` followed by a library name17- Framework-specific topics: hooks, routing, middleware, ORM queries, schema definitions1819## When NOT to Use2021Do NOT use this skill for:2223- General programming concepts (closures, recursion, design patterns)24- Code review or refactoring tasks25- Debugging business logic26- Writing scripts from scratch without library-specific questions2728## Core Workflow29301. **Search** for the library ID:31 ```bash32 scripts/context7.sh search "library-name"33 ```34352. **Pick the best result**: Choose the ID with the highest score and most relevant description. Prefer official sources (e.g., `/vercel/next.js` over community forks).36373. **Fetch documentation** with a focused topic:38 ```bash39 scripts/context7.sh docs "<library-id>" "<topic>" "<mode>"40 ```4142Always extract a specific topic from the user's question. For "How does React Suspense work with server components?", use topic `suspense server components`.4344## Parameters4546| Parameter | Required | Description |47|-----------|----------|-------------|48| `library-id` | Yes | From search results, format `/vendor/library` |49| `topic` | No | Focus area extracted from user query (e.g., `hooks`, `routing`, `validation`) |50| `mode` | No | `code` (default) for API references; `info` for conceptual guides |5152## Mode Selection5354Use `code` mode (default) when the user asks for API references, code examples, or implementation patterns.5556Use `info` mode when the user asks for conceptual explanations, architecture guides, or migration tutorials.5758## Examples5960```bash61# React hooks API62scripts/context7.sh search "react"63scripts/context7.sh docs "/facebook/react" "hooks" "code"6465# Next.js App Router conceptual guide66scripts/context7.sh search "nextjs"67scripts/context7.sh docs "/vercel/next.js" "app router" "info"6869# Django ORM queries70scripts/context7.sh search "django"71scripts/context7.sh docs "/django/django" "queryset filter" "code"7273# Laravel Eloquent relationships74scripts/context7.sh search "laravel"75scripts/context7.sh docs "/laravel/framework" "eloquent relationships" "code"76```7778## Environment Configuration7980Set `CONTEXT7_API_KEY` for higher rate limits (optional):8182```bash83export CONTEXT7_API_KEY="your-api-key"84```8586---8788> **Contributing:** https://github.com/netresearch/context7-skill