From craft-workspace-webconsulting-skills
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.
How this skill is triggered — by the user, by Claude, or both
Slash command
/craft-workspace-webconsulting-skills:context7The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fetch current library documentation, API references, and code examples via the Context7 REST API.
Fetch current library documentation, API references, and code examples via the Context7 REST API.
Use this skill when the user asks about library APIs, framework patterns, or version-specific behavior. Trigger on:
import, require, from followed by a library nameDo NOT use this skill for:
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.
| 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 |
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.
# 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"
Set CONTEXT7_API_KEY for higher rate limits (optional):
export CONTEXT7_API_KEY="your-api-key"
Contributing: https://github.com/netresearch/context7-skill
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)
Special thanks to Netresearch DTT GmbH for their generous open-source contributions to the TYPO3 community, which helped shape this skill collection. Adapted by webconsulting.at for this skill collection
npx claudepluginhub dirnbauer/webconsulting-skillsFetches current library documentation, API references, and code examples via Context7 REST API. Use for any library (React, Next.js, Vue, Django, etc.).
Fetches current library documentation via Context7 REST API for npm/PyPI packages. Use when the user needs official APIs, code examples, or migration guidance.
Fetches up-to-date library/framework docs via Context7 MCP (resolve-library-id, query-docs) for setup questions, API references, code examples.