From sundial-org-awesome-openclaw-skills-4
Searches library documentation and retrieves intelligent context using LLM-powered ranking. Provides search and context commands for any library.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sundial-org-awesome-openclaw-skills-4:context7The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Context7 provides intelligent documentation search and context for any library, powered by LLMs.
Context7 provides intelligent documentation search and context for any library, powered by LLMs.
Copy .env.example to .env and add your Context7 API key:
cp .env.example .env
Add your API key to .env:
CONTEXT7_API_KEY=your-api-key-here
Get your key from context7.com/dashboard
Install dependencies:
npm install
Context7 provides two main commands:
Search for libraries by name with intelligent LLM-powered ranking:
npx tsx query.ts search <library_name> <query>
# Examples:
npx tsx query.ts search "nextjs" "setup ssr"
npx tsx query.ts search "react" "useEffect cleanup"
npx tsx query.ts search "better-auth" "authentication flow"
This calls the Context7 Search API:
GET https://context7.com/api/v2/libs/search?libraryName=<name>&query=<query>
Response includes:
/vercel/next.js)Retrieve intelligent, LLM-reranked documentation context:
npx tsx query.ts context <owner/repo> <query>
# Examples:
npx tsx query.ts context "vercel/next.js" "setup ssr"
npx tsx query.ts context "facebook/react" "useState hook"
This calls the Context7 Context API:
GET https://context7.com/api/v2/context?libraryId=<repo>&query=<query>&type=txt
Response includes:
# Search for documentation
npx tsx query.ts search "library-name" "your search query"
# Get context from a specific repo
npx tsx query.ts context "owner/repo" "your question"
Get the most out of the Context7 API with these best practices:
When using the /libs/search endpoint, always include the user's original question in the query parameter. This allows the API to use LLM-powered ranking to find the most relevant library for the specific task, rather than relying on a simple name match.
Example: If a user asks about SSR in Next.js, search with:
libraryName=nextjsquery=setup+ssrThis ensures the best ranking for the specific task.
For the fastest and most accurate results with the /context endpoint, provide the full libraryId (e.g., /vercel/next.js). If you already know the library the user is asking about, skipping the search step and calling the context endpoint directly reduces latency.
To ensure documentation accuracy for older or specific project requirements, include the version in the libraryId using the /owner/repo/version format. You can find available version tags in the response from the search endpoint.
Tailor the /context response to your needs using the type parameter:
type=json when you need to programmatically handle titles, content snippets, and source URLs (ideal for UI display).type=txt when you want to pipe the documentation directly into an LLM prompt as plain text.When programmatically selecting a library from search results, use the trustScore and benchmarkScore to prioritize high-quality, reputable documentation sources for your users.
Find navigation and other pages in this documentation by fetching the llms.txt file at:
https://context7.com/docs/llms.txt
Search Endpoint:
GET https://context7.com/api/v2/libs/search
?libraryName=<library_name>
&query=<user_query>
Context Endpoint:
GET https://context7.com/api/v2/context
?libraryId=<owner/repo>
&query=<user_query>
&type=txt|json
No results found?
Authentication errors?
.envMIT
npx claudepluginhub joshuarweaver/cascade-ai-ml-agents-misc-2 --plugin sundial-org-awesome-openclaw-skills-4Retrieves current documentation, API references, and code examples for any library, framework, SDK, or cloud service via the Context7 CLI. Use for API syntax, config options, migration issues, and debugging library-specific behavior.
Retrieves up-to-date library, framework, API, and project documentation via Context7 and Context Hub scripts with intelligent fallback. Useful when you need current docs rather than relying on training data.
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.