Automatic documentation generation tools
This plugin is not yet in any themed marketplace. To install it, you'll need to add it from GitHub directly.
Choose your preferred installation method below
A marketplace is a collection of plugins. Every plugin gets an auto-generated marketplace JSON for individual installation, plus inclusion in category and themed collections. Add a marketplace once (step 1), then install any plugin from it (step 2).
One-time setup for access to all plugins
When to use: If you plan to install multiple plugins now or later
Step 1: Add the marketplace (one-time)
/plugin marketplace add https://claudepluginhub.com/marketplaces/all.json
Run this once to access all plugins
Step 2: Install this plugin
/plugin install doc-generator@all
Use this plugin's auto-generated marketplace JSON for individual installation
When to use: If you only want to try this specific plugin
Step 1: Add this plugin's marketplace
/plugin marketplace add https://claudepluginhub.com/marketplaces/plugins/doc-generator.json
Step 2: Install the plugin
/plugin install doc-generator@doc-generator
A collection of useful plugins for Claude Code to enhance your development workflow.
This marketplace contains three example plugins:
Code review and pull request analysis tools.
Commands:
/review
- Review code changes and provide feedback/security-check
- Perform security analysis on code changesAutomatic documentation generation tools.
Commands:
/generate-docs
- Generate documentation for code files/api-docs
- Generate API documentation from codeTesting and quality assurance utilities.
Commands:
/run-tests
- Run tests and analyze results/generate-tests
- Generate test cases for code# If hosted on GitHub
/plugin marketplace add yourusername/claude-code-plugins
# Or via direct URL
/plugin marketplace add https://github.com/yourusername/claude-code-plugins
# Install specific plugins
/plugin add pr-reviewer
/plugin add doc-generator
/plugin add test-suite
After installation, use the slash commands in your Claude Code sessions:
# Review a pull request
/review main..feature-branch
# Check for security issues
/security-check src/auth/
# Generate documentation
/generate-docs src/utils/helpers.js
# Run tests
/run-tests tests/unit/
claude-code-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace catalog
├── plugins/
│ ├── pr-reviewer/ # Code review plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ └── commands/
│ │ ├── review.md
│ │ └── security-check.md
│ ├── doc-generator/ # Documentation plugin
│ │ ├── .claude-plugin/
│ │ │ └── plugin.json
│ │ └── commands/
│ │ ├── generate-docs.md
│ │ └── api-docs.md
│ └── test-suite/ # Testing plugin
│ ├── .claude-plugin/
│ │ └── plugin.json
│ └── commands/
│ ├── run-tests.md
│ └── generate-tests.md
├── README.md
├── CONTRIBUTING.md
└── .gitignore
See CONTRIBUTING.md for guidelines on adding new plugins.
MIT License - see individual plugin metadata for specific licensing information.
1.0.0