mirror of
https://github.com/anthropics/claude-plugins-official.git
synced 2026-03-17 10:33:08 +00:00
- Update skill/agent/command to use new query-docs tool (replaces get-library-docs) - Add query parameter usage for intelligent reranking - Add version pinning support (e.g., /vercel/next.js/v15.1.8) - Add tools and model metadata to agent - Simplify docs to focus on workflow, not parameter details - Add README.md with usage examples
777 B
777 B
description, argument-hint
| description | argument-hint |
|---|---|
| Fetch up-to-date documentation and code examples for any library | <library> [query] |
Context7 Documentation Lookup
Fetch current, version-specific documentation from source repositories.
Arguments
$ARGUMENTS = <library> [query]
- First word: library name (or direct library ID starting with
/) - Remaining: your specific question or topic
Examples:
react hooksnext.js authentication/vercel/next.js/v15.1.8 app router
Steps
- Parse arguments: first word = library, remaining = query
- If library starts with
/, use it directly as library ID - Otherwise, call
resolve-library-idwith library name and query - Call
query-docswith the library ID and query - Present documentation with code examples