ワンクリックで
3rd-party-framework-docs
Query up-to-date 3rd-party framework/library documentation using Context7 MCP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Query up-to-date 3rd-party framework/library documentation using Context7 MCP
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Archive completed plans and clean workspace using CLI commands
Create and modify AIKnowSys sessions and plans using mutation commands
Query AIKnowSys knowledge system (READ operations only - plans, sessions, context search)
AI-assisted workflow for sharing personal patterns with the team. Detects valuable patterns, checks duplicates, and guides sharing decisions.
Review AIKnowSys deliverables (skills, stack templates, documentation) using Context7 MCP for current framework documentation. Use for monthly quality reviews, pre-release validation, or when frameworks release major versions.
Template for creating new skills following VS Code Agent Skills standard
| name | 3rd-party-framework-docs |
| description | Query up-to-date 3rd-party framework/library documentation using Context7 MCP |
| triggers | ["query framework docs","library documentation","current API docs","latest docs for","framework API","check current docs","context7","version-specific docs"] |
| maintainer | false |
What: Query current framework/library documentation using Context7 MCP
When to use:
Why not web search: Context7 provides structured, version-specific docs optimized for AI consumption
Ask yourself:
If YES → Use Context7
If NO → Use existing project knowledge
Format: /owner/repo or /owner/repo/version
Common examples:
/vercel/next.js # Latest Next.js
/vercel/next.js/v15.0.0 # Specific version
/facebook/react # Latest React
/supabase/supabase # Supabase
/mongodb/docs # MongoDB
/vitejs/vite # Vite
Finding IDs:
Good queries (specific):
"Query Context7 for Next.js 15 middleware patterns"
"Use Context7: How to implement auth in Supabase v2?"
"Check Context7 for current React hooks best practices"
Poor queries (too vague):
"How does Next.js work?" # Too broad
"Get docs" # Missing library
"Latest API" # Which library?
Best practice: Include library name + version + specific topic
For learned skills:
# Skill: Next.js Middleware Pattern
**Source:** Context7 `/vercel/next.js/v15.0.0` (Feb 2026)
**Pattern:**
\`\`\`typescript
// Current Next.js 15 middleware
export function middleware(request: NextRequest) {
// ... (code from Context7)
}
\`\`\`
**When to use:** [your project-specific context]
For tech stack scaffolding:
For validation:
Scenario: Planning a new feature with unfamiliar tech
Workflow:
1. @Planner I need to implement [feature] with [technology]
2. AI: "I'll query Context7 for current patterns"
3. AI uses Context7 to get latest docs
4. Planner creates plan with accurate APIs
5. Plan includes version references
Example:
@Planner Plan authentication for Next.js 15 app
Use Context7 to get current middleware and route handler patterns.
Scenario: Implementing a feature with external dependency
Workflow:
1. Developer reads CODEBASE_ESSENTIALS (project patterns)
2. Identifies external library usage
3. Queries Context7 for current API
4. Implements with up-to-date patterns
5. Documents in learned skill with version
Example:
@Developer Implement Supabase auth
Use Context7 for Supabase v2 current auth patterns.
Follow TDD workflow.
Scenario: Creating a learned skill about external library
Workflow:
1. Discover pattern in your code
2. Query Context7 for library documentation
3. Validate pattern is current best practice
4. Document in SKILL.md with:
- Source: Context7 /owner/repo/version
- Last validated: Date
- Version-specific notes
Example skill header:
# Skill: Supabase Row Level Security
**Source:** Context7 `/supabase/supabase` (Feb 2026)
**Last Validated:** 2026-02-01
**Supabase Version:** 2.x
Graceful degradation:
If Context7 not available:
1. Use AI's built-in knowledge (may be outdated)
2. Manually check official docs
3. Add TODO to validate with Context7 later
4. Document assumption in code
Example:
// TODO: Validate with Context7 when available
// Assumption: Next.js 15 middleware pattern (as of Feb 2026)
export function middleware(req) {
// ...
}
Possible causes:
Solutions:
/owner/repo correct?"Possible causes:
Solutions:
.aiknowsys/context7-cache/Possible causes:
Solutions:
Scenario: You created a skill 3 months ago about React hooks
Workflow:
1. Open skill: .github/skills/react-hooks-pattern/SKILL.md
2. Ask AI: "Use Context7 to check if this React hooks skill is current.
Compare with /facebook/react latest docs."
3. AI queries Context7
4. AI reports: "✅ Pattern is current" or "⚠️ Deprecated, use X instead"
5. Update skill if needed
6. Update "Last Validated" date
Scenario: Starting a new Next.js 15 project
Workflow:
npx aiknowsys init --stack nextjs
# In AI chat:
"Use Context7 /vercel/next.js/v15.0.0 to verify:
1. App Router structure is current
2. Middleware patterns are up-to-date
3. Server Components conventions are correct
Update CODEBASE_ESSENTIALS if any patterns are outdated."
Scenario: Need to add Supabase to existing project
Workflow:
@Planner Create plan for Supabase integration
Requirements:
- Authentication (email/password + OAuth)
- Row Level Security
- Real-time subscriptions
Use Context7 /supabase/supabase to:
1. Get current auth patterns
2. Check RLS best practices
3. Verify real-time API
Create implementation plan with current APIs.
Last Updated: 2026-02-01
AIKnowSys Version: 0.8.0+