Awesome-omni-skill Context7
Up-to-date library documentation and code examples from Context7. USE WHEN looking up API docs, library documentation, framework guides, code examples, OR needing version-specific technical documentation. Prevents hallucinated APIs.
git clone https://github.com/diegosouzapw/awesome-omni-skill
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skill "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/development/context7-julianobarbosa" ~/.claude/skills/diegosouzapw-awesome-omni-skill-context7-2b564a && rm -rf "$T"
skills/development/context7-julianobarbosa/SKILL.mdContext7
Query up-to-date, version-specific documentation and code examples directly from source libraries via Context7's documentation aggregation platform.
Why Context7
| Benefit | Description |
|---|---|
| Current APIs | No hallucinated or outdated patterns - documentation comes from actual sources |
| Version-Specific | Gets docs for exact library versions you're using |
| Code Examples | Real, working code extracted from actual documentation |
| Broad Coverage | 1000+ libraries including React, Next.js, Vue, Go, Python, Kubernetes, etc. |
Setup
# Navigate to tools directory and install dependencies cd ~/.claude/skills/Context7/Tools bun install # Optional: Set API key for higher rate limits export CONTEXT7_API_KEY="ctx7sk_your_key_here" # Get at context7.com/dashboard
Available CLI Tools
| Tool | Purpose | Command |
|---|---|---|
| Full lookup (resolve + query) | |
| Find library ID | |
| Query docs by ID | |
Quick Reference
Full Lookup (Recommended)
One command to resolve library and query documentation:
cd ~/.claude/skills/Context7/Tools bun src/cli/lookup.ts react "useEffect cleanup function" bun src/cli/lookup.ts next.js "app router middleware" bun src/cli/lookup.ts kubernetes "deployment rolling update"
Step-by-Step (When Needed)
Step 1: Resolve Library ID
bun src/cli/resolve.ts react bun src/cli/resolve.ts next.js "authentication"
Returns: Context7-compatible library ID like
/facebook/react or /vercel/next.js
Step 2: Query Documentation
bun src/cli/query.ts /facebook/react "useEffect cleanup" bun src/cli/query.ts /vercel/next.js "middleware configuration"
Returns: Relevant documentation snippets and code examples
Common Library IDs
| Library | Context7 ID | CLI Shortcut |
|---|---|---|
| React | | |
| Next.js | | , |
| Vue | | |
| Kubernetes | | , |
| Go stdlib | | , |
| Python | | |
| Node.js | | , |
| TypeScript | | , |
| Prisma | | |
| Tailwind | | , |
Workflow Routing
| Workflow | Trigger | File |
|---|---|---|
| ResolveLibrary | "find library ID", "resolve library" | |
| QueryDocs | "lookup docs", "get documentation", "code examples" | |
| FullLookup | "help me with [library]", "how do I use [feature]" | |
Examples
Example 1: React Hooks Documentation
cd ~/.claude/skills/Context7/Tools bun src/cli/lookup.ts react "useEffect cleanup function"
Output includes current React docs with cleanup pattern examples.
Example 2: Kubernetes Deployment Spec
bun src/cli/lookup.ts kubernetes "deployment spec rolling update strategy"
Output includes current K8s API reference for Deployment.
Example 3: Next.js App Router
bun src/cli/lookup.ts next.js "middleware authentication app router"
Output includes latest Next.js middleware documentation.
Example 4: Using in Claude Code Session
When you need documentation during a coding session:
User: "How do I implement server-side data fetching in Next.js 14?" Claude runs: cd ~/.claude/skills/Context7/Tools && bun src/cli/lookup.ts next.js "server components data fetching" Then synthesizes response with current patterns (Server Components, not old getServerSideProps)
Environment Variables
| Variable | Description | Default |
|---|---|---|
| API key for higher rate limits | None (uses public rate limits) |
Get your API key at context7.com/dashboard
Tips
- Be specific in your query for better results
- Max 3 calls per question - if you can't find it after 3 tries, use best available info
- Include version in query if you need specific version docs (e.g., "React 18 concurrent features")
- Combine with local context - use Context7 to verify APIs, then apply to your codebase
- Known IDs skip API - common libraries like
,react
use cached IDs to skip the resolve stepnext.js
Project Structure
Tools/ ├── package.json # Dependencies and scripts ├── tsconfig.json # TypeScript configuration └── src/ ├── index.ts # Library exports ├── lib/ │ └── context7.ts # Core API client └── cli/ ├── lookup.ts # Full lookup command ├── resolve.ts # Library ID resolver └── query.ts # Documentation query
API Reference
The TypeScript client can also be imported programmatically:
import { Context7Client, getKnownLibraryId } from "./src/index.js"; const client = new Context7Client({ apiKey: process.env.CONTEXT7_API_KEY }); // Full lookup const result = await client.lookup("react", "useEffect hooks"); console.log(result.rawContent); // Or step by step const { bestMatch } = await client.resolveLibrary("react"); const docs = await client.queryDocs(bestMatch.id, "useEffect cleanup");