Global Rank · of 601 Skills
context7 AI Agent Skill
View Source: dirnbauer/webconsulting-skills
MediumInstallation
npx skills add dirnbauer/webconsulting-skills --skill context7 29
Installs
Context7 Documentation Lookup Skill
Fetch current library documentation, API references, and code examples via the Context7 REST API.
When to Use
Activate this skill when:
- User asks about library APIs or framework patterns
- Import statements suggest documentation needs:
import,require,from - Questions about specific library versions or migration
- Need for official documentation patterns vs generic solutions
- "How do I use X library?", "What's the API for Y?"
Workflow
Step 1: Search for Library ID
Always search first to get the correct library ID:
curl -s "https://context7.com/api/v1/search?q=library-name" | jqExample output shows library IDs you can use:
{
"id": "/facebook/react",
"name": "React",
"snippets": 2135,
"score": 79.4
}Step 2: Fetch Documentation
curl -s "https://context7.com/api/v1/docs?library=<library-id>&topic=<topic>&mode=<mode>" | jqParameters:
library: Library ID from search results (e.g.,/facebook/react)topic: Optional focus area (e.g.,hooks,routing)mode:code(default) for API/examples,infofor guides
Examples:
# Get React hooks documentation
curl -s "https://context7.com/api/v1/docs?library=/facebook/react&topic=hooks" | jq
# Get Next.js routing docs
curl -s "https://context7.com/api/v1/docs?library=/vercel/next.js&topic=routing" | jq
# Get conceptual guide (info mode)
curl -s "https://context7.com/api/v1/docs?library=/vercel/next.js&topic=app%20router&mode=info" | jqStep 3: Apply to User's Question
Use the returned documentation to:
- Provide accurate, version-specific answers
- Show official code patterns and examples
- Reference correct API signatures
- Include relevant caveats or deprecations
Common Library IDs
| Library | ID |
|---|---|
| React | /facebook/react |
| Next.js | /vercel/next.js |
| Vue.js | /vuejs/vue |
| Prisma | /prisma/prisma |
| Laravel | /laravel/laravel |
| Symfony | /symfony/symfony |
| TYPO3 | /typo3/typo3 |
| Tailwind CSS | /tailwindlabs/tailwindcss |
| TypeScript | /microsoft/typescript |
Documentation Modes
| Mode | Use For |
|---|---|
code |
API references, code examples, function signatures (default) |
info |
Conceptual guides, tutorials, architecture docs |
Example Workflow
# User asks: "How do I use React hooks?"
# Step 1: Search for React
curl -s "https://context7.com/api/v1/search?q=react" | jq '.results[0]'
# Output shows: id: /facebook/react
# Step 2: Fetch hooks docs
curl -s "https://context7.com/api/v1/docs?library=/facebook/react&topic=hooks" | jq
# Step 3: Use the returned documentation to answerTYPO3 Documentation Lookup
For TYPO3-specific documentation:
# Search for TYPO3
curl -s "https://context7.com/api/v1/search?q=typo3" | jq
# Get DataHandler docs
curl -s "https://context7.com/api/v1/docs?library=/typo3/typo3&topic=DataHandler" | jq
# Get Fluid ViewHelper docs
curl -s "https://context7.com/api/v1/docs?library=/typo3/typo3&topic=ViewHelper" | jqError Handling
If requests fail:
- Verify
jqandcurlare installed - Check the library ID format (
/org/project) - Try a broader topic or no topic filter
- Try
infomode ifcodereturns nothing - Check network connectivity
MCP Alternative
If you have the Context7 MCP server configured, you can use it directly:
{
"mcpServers": {
"context7": {
"command": "npx",
"args": ["-y", "@context7/mcp-server"]
}
}
}Notes
- No persistent context overhead: Uses REST API directly
- API key optional: Works without key, but rate-limited
- Topic filtering: Use specific topics for focused results
- Search first: Always search to find the correct library ID
- Fresh data: Results are not cached; each call fetches fresh data
Credits & Attribution
This skill is based on the excellent work by
Netresearch DTT GmbH.
Original repository: https://github.com/netresearch/context7-skill
Copyright (c) Netresearch DTT GmbH — Methodology and best practices (MIT / CC-BY-SA-4.0)
Adapted by webconsulting.at for this skill collection
Installs
Security Audit
Power your AI Agents with
the best open-source models.
Drop-in OpenAI-compatible API. No data leaves Europe.
Explore Inference APIGLM
GLM 5
$1.00 / $3.20
per M tokens
Kimi
Kimi K2.5
$0.60 / $2.80
per M tokens
MiniMax
MiniMax M2.5
$0.30 / $1.20
per M tokens
Qwen
Qwen3.5 122B
$0.40 / $3.00
per M tokens
How to use this skill
Install context7 by running npx skills add dirnbauer/webconsulting-skills --skill context7 in your project directory. Run the install command above in your project directory. The skill file will be downloaded from GitHub and placed in your project.
No configuration needed. Your AI agent (Claude Code, Cursor, Windsurf, etc.) automatically detects installed skills and uses them as context when generating code.
The skill enhances your agent's understanding of context7, helping it follow established patterns, avoid common mistakes, and produce production-ready output.
What you get
Skills are plain-text instruction files — not executable code. They encode expert knowledge about frameworks, languages, or tools that your AI agent reads to improve its output. This means zero runtime overhead, no dependency conflicts, and full transparency: you can read and review every instruction before installing.
Compatibility
This skill works with any AI coding agent that supports the skills.sh format, including Claude Code (Anthropic), Cursor, Windsurf, Cline, Aider, and other tools that read project-level context files. Skills are framework-agnostic at the transport level — the content inside determines which language or framework it applies to.
Chat with 100+ AI Models in one App.
Use Claude, ChatGPT, Gemini alongside with EU-Hosted Models like Deepseek, GLM-5, Kimi K2.5 and many more.