From deepwiki-cli
Generates AI-powered wiki documentation for public GitHub repositories to answer questions on architecture, APIs, internals, or library workings without cloning locally.
How this skill is triggered — by the user, by Claude, or both
Slash command
/deepwiki-cli:deepwiki-cliThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
deepwiki-cli provides AI-generated wiki documentation for GitHub repositories.
deepwiki-cli provides AI-generated wiki documentation for GitHub repositories.
Use the deepwiki-cli to query it directly — this keeps only the result text
in Claude's context, avoiding MCP protocol overhead.
Run via Bash tool:
# Ask a question about a repository
deepwiki-cli ask <owner/repo> "<question>"
# List wiki topics for a repository
deepwiki-cli structure <owner/repo>
# Read full wiki contents
deepwiki-cli read <owner/repo>
deepwiki-cli ask facebook/react "How does the reconciler work?"
deepwiki-cli ask vercel/next.js "What is the App Router architecture?"
deepwiki-cli structure rust-lang/rust
deepwiki-cli read tokio-rs/tokio
The deepwiki-cli binary must be installed:
cargo install deepwiki-cli
If the binary is not found, inform the user to install it first.
If deepwiki-cli is not installed or a command fails:
which deepwiki-clicargo install deepwiki-clideepwiki-cli structure first (lighter query), then ask specific questionsUsing the CLI via Bash outputs only the result text to Claude's context.
Connecting deepwiki-cli as an MCP server adds initialize handshake + tool listing
overhead on every session start.
npx claudepluginhub hamsurang/kit --plugin deepwiki-cliRetrieves AI-generated wiki structure, topic contents, and answers questions about public GitHub repositories via DeepWiki MCP tools.
Retrieves code context summaries, API docs, and examples from GitHub repos, npm/pip libraries, code searches, and clones using isolated agents.
Answers codebase questions by analyzing source files with git repo resolution, inline citations, Key Files tables, and Mermaid diagrams for flows and architecture.