by intellectronica
开发人员在处理软件库时常常遇到文档过时或不完整的问题。Context7 技能连接到 Context7 API,检索任何受支持库或框架的最新文档、代码示例和 API 参考。
1. 打开 Claude 聊天界面
2. 点击下方 "📋 复制" 按钮
3. 粘贴到 Claude 聊天框中并发送
4. 输入 "使用 context7 技能" 开始使用
=== context7 技能 === 作者: intellectronica 描述: 开发人员在处理软件库时常常遇到文档过时或不完整的问题。Context7 技能连接到 Context7 API,检索任何受支持库或框架的最新文档、代码示例和 API 参考。 使用方法: 1. 调用技能: "使用 context7 技能" 2. 提供相关信息: 根据技能要求提供必要参数 3. 查看结果: 技能会返回处理结果 示例: "使用 context7 技能,帮我分析一下这段代码"
这种方法适用于所有 Claude 用户,不需要安装额外工具。
research
safe
This skill enables retrieval of current documentation for software libraries and components by querying the Context7 API via curl. Use it instead of relying on potentially outdated training data.
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 availableTo 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)View Count
0
Download Count
0
Favorite Count
0
Quality Score
71