用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/gbencke/dotfiles --skill context7命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | context7 |
| description | Search the Context7 library index and fetch high-quality, version-accurate documentation snippets. |
This skill provides direct access to the Context7 library index, allowing you to quickly look up verified documentation and usage snippets for a wide variety of frameworks, libraries, and tools.
Requires CONTEXT7_API_KEY to be set in your environment.
context7_search(query, limit?)Use this tool to find the exact ID of a library in the Context7 database.
libraryId.context7_search({ query: "react hooks" })reactjs/react.dev), descriptions, and trust scores.context7_docs(libraryId, topic?, tokens?)Use this tool to actually read the documentation snippets for a specific library.
libraryId from a previous search, use this to extract the relevant text.libraryId: The exact ID of the library (e.g., tiangolo/fastapi).topic (optional): Focus the returned snippets on a specific topic like authentication, routing, or hooks.tokens (optional): Max tokens to return (default 5000).context7_docs({ libraryId: "reactjs/react.dev", topic: "useEffect" })context7_search first if you are unsure of the exact library ID.context7_docs using the chosen ID, optionally specifying a topic to narrow down the context.