一键导入
context7
Instructions for using context7 MCP to look up library documentation before writing code. Loaded on demand on first code file write/edit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Instructions for using context7 MCP to look up library documentation before writing code. Loaded on demand on first code file write/edit.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Instructions for using gcode CLI for code search and retrieval. Loaded on demand when project has a code index.
Pre-transition checklist for closing or reviewing tasks. Covers fresh verification evidence, commits, and memory gates.
Use when processing CodeRabbit review comments, CodeRabbit CLI reports, or `$gobby coderabbit [findings]` requests.
Use when creating, editing, or validating Gobby skills, especially when a skill must change agent behavior or become discoverable through gobby-skills.
Use when coordinating a full gobby build run for an epic or task, especially when the user assigns the current session as coordinator, asks for a coordination epic, wants build agents/worktrees monitored, or wants gobby build bugs fixed so future runs work unattended.
Router contract for provider-aware Gobby help and installed skill dispatch.
| name | context7 |
| description | Instructions for using context7 MCP to look up library documentation before writing code. Loaded on demand on first code file write/edit. |
| category | core |
| metadata | {"gobby":{"audience":"all"}} |
Use the context7 MCP server to fetch up-to-date documentation for any library or framework before writing code that uses it. This prevents hallucinated APIs and outdated patterns.
Two-step process — resolve the library, then query its docs:
call_tool("context7", "resolve-library-id", {
"libraryName": "Next.js",
"query": "server components and data fetching"
})
Returns a list of matching libraries with Context7-compatible IDs (format: /org/project).
call_tool("context7", "query-docs", {
"libraryId": "/vercel/next.js",
"query": "how to use server components for data fetching"
})
Returns relevant documentation snippets and code examples.
| Situation | Action |
|---|---|
| Writing code that uses a library API | Resolve + query before writing |
| Unsure about current API patterns | Query with a specific question |
| Choosing between library approaches | Query to compare documented patterns |
| Upgrading or migrating library usage | Query the target version's docs |
/org/project/version format from resolve results.