From upstash-context7-1
Executes ctx7 CLI to fetch up-to-date library documentation, manage AI coding skills (install/search/generate/remove/suggest), and configure Context7 MCP. Useful for current API refs, skill handling, or agent setup.
npx claudepluginhub dimagi/dimagi-claude-workflows --plugin context7This skill uses the workspace's default tool permissions.
The Context7 CLI does three things: fetches up-to-date library documentation, manages AI coding skills, and sets up Context7 MCP for your editor.
Fetches latest library and framework documentation via Context7 API for Claude Code. Useful when needing up-to-date info on React, Next.js, Prisma, or similar.
Fetches current library docs, API references, framework patterns, and code examples for any library via Context7 REST API. Triggers on 'how to use library', API docs, patterns, import usage.
Retrieves up-to-date documentation, API references, and code examples for libraries, frameworks, SDKs, CLI tools, and cloud services using Context7 CLI. Use for API syntax, configurations, migrations, setups, and debugging.
Share bugs, ideas, or general feedback.
The Context7 CLI does three things: fetches up-to-date library documentation, manages AI coding skills, and sets up Context7 MCP for your editor.
Make sure the CLI is up to date before running commands:
npm install -g ctx7@latest
Or run directly without installing:
npx ctx7@latest <command>
# Documentation
ctx7 library <name> <query> # Step 1: resolve library ID
ctx7 docs <libraryId> <query> # Step 2: fetch docs
ctx7 docs <libraryId> <query> --research # Retry with deep research if the default answer didn't satisfy
# Skills
ctx7 skills install /owner/repo # Install from a repo (interactive)
ctx7 skills install /owner/repo name # Install a specific skill
ctx7 skills search <keywords> # Search the registry
ctx7 skills suggest # Auto-suggest based on project deps
ctx7 skills list # List installed skills
ctx7 skills remove <name> # Uninstall a skill
ctx7 skills generate # Generate a custom skill with AI (requires login)
# Setup
ctx7 setup # Configure Context7 MCP (interactive)
ctx7 login # Log in for higher rate limits + skill generation
ctx7 whoami # Check current login status
ctx7 login # Opens browser for OAuth
ctx7 login --no-browser # Prints URL instead of opening browser
ctx7 logout # Clear stored tokens
ctx7 whoami # Show current login status (name + email)
Most commands work without login. Exceptions: skills generate always requires it; ctx7 setup requires it unless --api-key or --oauth is passed. Login also unlocks higher rate limits on docs commands.
Set an API key via environment variable to skip interactive login entirely:
export CONTEXT7_API_KEY=your_key
/ prefix — /facebook/react not facebook/reactctx7 library first — ctx7 docs react "hooks" will fail without a valid ID/owner/repo — e.g., ctx7 skills install /anthropics/skillsskills generate requires login — run ctx7 login first