用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/danstrem2/clawdbot-skill-master-pack --skill context7命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
Pragmatic coding standards - concise, direct, no over-engineering, no unnecessary comments
Expert patterns for Clerk auth implementation, middleware, organizations, webhooks, and user sync Use when: adding authentication, clerk auth, user authentication, sign in, sign up.
Create distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, artifacts, posters, or applications (examples include websites, landing pages, dashboards, React components, HTML/CSS layouts, or when styling/beautifying any web UI). Generates creative, polished code and UI design that avoids generic AI aesthetics.
基于 SOC 职业分类
| name | context7 |
| description | Context7 MCP - Intelligent documentation search and context for any library |
| metadata | {"version":"1.0.3","tags":["documentation","search","context","mcp","llm"],"clawdbot":{"requires":{"bins":"[Truncated]","npm":true},"install":["[Truncated]"]}} |
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