deep-wiki
1
总安装量
1
周安装量
#54281
全站排名
安装命令
npx skills add https://github.com/seflless/deep-wiki --skill deep-wiki
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
claude-code
1
Skill 文档
deep-wiki
Query any public GitHub repo’s docs from the terminal via DeepWiki. Assumes Node.js is installed.
Commands
| Command | Usage | Description |
|---|---|---|
toc |
npx @seflless/deep-wiki toc <owner/repo> |
Table of contents |
wiki |
npx @seflless/deep-wiki wiki <owner/repo> |
Full wiki content |
ask |
npx @seflless/deep-wiki ask <owner/repo> "<question>" |
AI-powered Q&A |
ask |
npx @seflless/deep-wiki ask <repo1> <repo2> "<question>" |
Multi-repo Q&A (max 10) |
Flags
| Flag | Purpose |
|---|---|
--json |
Raw JSON output (good for piping) |
-q, --quiet |
No spinners/progress |
--no-color |
Disable colors |
Examples
# Understand a library's structure
npx @seflless/deep-wiki toc facebook/react
# Get full docs for reference
npx @seflless/deep-wiki wiki oven-sh/bun --json > bun-docs.json
# Ask a specific question
npx @seflless/deep-wiki ask anthropics/claude-code "How does the tool permission system work?"
# Cross-project question
npx @seflless/deep-wiki ask facebook/react vercel/next.js "How do server components work across these projects?"
Tips
- Use
--jsonwhen you need structured data to parse - Use
tocfirst to understand what docs exist, thenaskfor specifics - Multi-repo
askis great for understanding how libraries interact