Help us improve
Share bugs, ideas, or general feedback.
Development marketplace for deepwiki-skill
npx claudepluginhub natsu1211/deepwiki-skillLocal wiki-style document generator for Claude Code
No description available.
Production-ready workflow orchestration with 83 marketplace plugins, 191 local specialized agents, and 155 local skills - optimized for granular installation and minimal token usage
Directory of popular Claude Code extensions including development tools, productivity plugins, and MCP integrations
Share bugs, ideas, or general feedback.
deepwiki-skill is an agent skill for Claude Code (and any other AI agent that supports agent skills) that automatically generates comprehensive, wiki-style documentation for any codebase.
npm install -g @mermaid-js/mermaid-cli
Note: While deepwiki-skill works with any coding agent that supports agent skills, Claude Code currently offers the best subagent support for optimal documentation generation. Claude Code is recommended for the best experience.
In Claude Code, register the marketplace and install this plugin
/plugin marketplace add natsu1211/deepwiki-skill
/plugin install deepwiki-skill@deepwiki-skill-marketplace
Execute /skills command in Claude Code then you should see wiki skill in the list.
Note: Version >=0.24.0 is required to use agent skills. Manual installation will not install subagents, and generation quality may degrade due to the limited context window.
via Gemini CLI Extension
coming soon...
manual
Copy the skills folder into ~/.gemini (user scope) or project_dir/.gemini(workspace scope)
git clone https://github.com/natsu1211/deepwiki-skill && cd deepwiki-skill
cp -R skills ~/.gemini
Execute /skills command in Gemini CLI then you should see wiki skill in the list.
Note: Generation quality may degrade due to limited context window.
Copy the skills folder into ~/.codex (user scope) or project_dir/.codex(workspace scope)
git clone https://github.com/natsu1211/deepwiki-skill && cd deepwiki-skill
cp -R skills ~/.codex
Execute /skills command in Codex then you should see wiki skill in the list.
Just write something like Use wiki skill to generate wiki documentation or Invoke wiki skill to update documents at docs/wiki based on docs/wiki/toc.yaml to tell agent to invoke skill.
Custom command gen is also provided to parse the arguments and explicitly invoke the skill. This allows you to use the skill like a regular CLI tool, making inputs more concise while expressing intent more precisely.
Fully automatic wiki document generation:
/deepwiki-skill:gen
Generate TOC file only:
/deepwiki-skill:gen --structure
Generate from existing TOC:
/deepwiki-skill:gen docs/wiki/toc.yaml
Update documentation after manually changing toc.yaml and/or code changes:
/deepwiki-skill:gen docs/wiki/toc.yaml --update
Specify output directory:
/deepwiki-skill:gen --output ./documentation/wiki
Generate documentation in Chinese:
/deepwiki-skill:gen --language zh-CN
Include only specific files:
/deepwiki-skill:gen --include "src/**/*.ts"
Exclude test files:
/deepwiki-skill:gen --exclude "**/*.test.js"
Combined arguments:
/deepwiki-skill:gen --language zh-CN --output ./docs --exclude "**/*.test.js"
Run from CLI (yolo mode / headless mode):
claude -p "/deepwiki-skill:gen" --dangerously-skip-permissions
Quickly understand a new project
/deepwiki-skill:genGenerate wiki documentation for your project with control over chapter structure
toc.yaml: /deepwiki-skill:gen --structuredocs/wiki/toc.yaml according to your needs/deepwiki-skill:gen docs/wiki/toc.yaml