From scott-cc
Retrieve up-to-date documentation for software libraries, frameworks, and components via the Context7 API. This skill should be used when looking up documentation for any programming library or framework, finding code examples for specific APIs or features, verifying correct usage of library functions, or obtaining current information about library APIs that may have changed since training.
How this skill is triggered — by the user, by Claude, or both
Slash command
/scott-cc:context7The summary Claude sees in its skill listing — used to decide when to auto-load this skill
This skill enables retrieval of current documentation for software libraries and components. **Prefer the Context7 MCP tools** (`mcp__plugin_compound-engineering_context7__resolve-library-id` and `mcp__plugin_compound-engineering_context7__query-docs`) when they are available — they handle auth, rate limits, and error handling natively. Use the curl workflow below only when the MCP tools are no...
This skill enables retrieval of current documentation for software libraries and components. Prefer the Context7 MCP tools (mcp__plugin_compound-engineering_context7__resolve-library-id and mcp__plugin_compound-engineering_context7__query-docs) when they are available — they handle auth, rate limits, and error handling natively. Use the curl workflow below only when the MCP tools are not loaded.
To find the Context7 library ID, query the search endpoint:
curl -s "https://context7.com/api/v2/libs/search?libraryName=LIBRARY_NAME&query=TOPIC" | jq '.results[0]'
Parameters:
libraryName (required): The library name to search for (e.g., "react", "nextjs", "fastapi", "axios")query (required): A description of the topic for relevance rankingResponse fields:
id: Library identifier for the context endpoint (e.g., /websites/react_dev_reference)title: Human-readable library namedescription: Brief description of the librarytotalSnippets: Number of documentation snippets availableAfter step 1: verify the results array is non-empty before proceeding. If jq '.results' returns [] or null, the library was not found — try a different libraryName or broader query instead of proceeding with a null ID.
To retrieve documentation, use the library ID from step 1:
curl -s "https://context7.com/api/v2/context?libraryId=LIBRARY_ID&query=TOPIC&type=txt"
Parameters:
libraryId (required): The library ID from search resultsquery (required): The specific topic to retrieve documentation fortype (optional): Response format - json (default) or txt (plain text, more readable)# Find React library ID
curl -s "https://context7.com/api/v2/libs/search?libraryName=react&query=hooks" | jq '.results[0].id'
# Returns: "/websites/react_dev_reference"
# Fetch useState documentation
curl -s "https://context7.com/api/v2/context?libraryId=/websites/react_dev_reference&query=useState&type=txt"
# Find Next.js library ID
curl -s "https://context7.com/api/v2/libs/search?libraryName=nextjs&query=routing" | jq '.results[0].id'
# Fetch app router documentation
curl -s "https://context7.com/api/v2/context?libraryId=/vercel/next.js&query=app+router&type=txt"
# Find FastAPI library ID
curl -s "https://context7.com/api/v2/libs/search?libraryName=fastapi&query=dependencies" | jq '.results[0].id'
# Fetch dependency injection documentation
curl -s "https://context7.com/api/v2/context?libraryId=/fastapi/fastapi&query=dependency+injection&type=txt"
type=txt for more readable outputjq to filter and format JSON responsesquery parameter to improve relevance ranking+ or %20)Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub citadelgrad/scott-cc --plugin scott-cc