A plugin marketplace for Claude Code providing specialized agents for code auditing, research, and multi-model consultation.
Claude Code plugins extend functionality through custom slash commands, specialized agents, and skills. Each plugin in this marketplace can be installed independently, letting you pick the tools that fit your workflow.
| Plugin | Description | Contents |
|---|---|---|
| codebase-health | Comprehensive codebase health tools: code audits, dead code detection, and documentation maintenance | Commands: /deep-audit, /quick-check, /dead-code, /update-docsAgents: deep-audit, quick-check, dead-code-cleanup, update-docsSkills: code-auditing, docs-maintenance |
| second-opinion | Get second opinions from Codex CLI and Gemini CLI | Commands: /codex-opinion, /gemini-opinionAgents: codex-consultant, gemini-consultantSkill: ai-consultation |
| research-assistant | Research libraries and APIs using official documentation | Commands: /research, /official-docsAgents: research-assistant, official-docsMCP: Context7, Fetch |
-
Add the marketplace to Claude Code:
/plugin marketplace add jeffrigby/somepulp-agents -
Install the plugins you want:
/plugin install codebase-health@somepulp-agents /plugin install second-opinion@somepulp-agents /plugin install research-assistant@somepulp-agents
Or use the interactive /plugin command to browse and install.
# Clone the repository
git clone https://github.com/jeffrigby/somepulp-agents.git
# In Claude Code, add as local marketplace
/plugin marketplace add /path/to/somepulp-agents
# Then install the plugins you want
/plugin install codebase-health@somepulp-agents| Plugin | Requirements |
|---|---|
| research-assistant | Bundled MCP servers start automatically. Requires Claude Code restart after enabling. |
| second-opinion | OpenAI Codex CLI + OPENAI_API_KEY for Codex; Google Gemini CLI for Gemini |
Each plugin follows the standard Claude Code plugin structure:
plugin-name/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata
├── commands/ # Slash commands (optional)
├── agents/ # Specialized agents (optional)
├── skills/ # Agent skills (optional)
├── scripts/ # Helper scripts (optional)
├── .mcp.json # MCP server configuration (optional)
└── README.md # Plugin documentation
Contributions are welcome! Please:
- Fork the repository
- Create a feature branch
- Make your changes
- Submit a pull request
MIT License - see LICENSE for details.