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.
npx claudepluginhub hamsurang/kit --plugin deepwiki-cliThis skill uses the workspace's default tool permissions.
deepwiki-cli provides AI-generated wiki documentation for GitHub repositories.
Queries DeepWiki for AI-generated docs on public GitHub repos: structure, architecture, APIs, code explanations, diagrams. Ideal for exploring open source projects.
Accesses DeepWiki docs for GitHub repos: reads wiki structure/contents and answers AI-powered questions about open-source code.
Queries DeepWiki MCP server for public GitHub repo wiki structure, contents, and AI-powered answers to questions. Useful for exploring repo documentation without cloning.
Share bugs, ideas, or general feedback.
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.