https://github.com/jeffrigby/somepulp-agents
Claude Code plugin providing AI-powered agents for code auditing, research, and multi-model consultation (OpenAI Codex, Google Gemini)
https://github.com/jeffrigby/somepulp-agents
ai-agents ai-assistant anthropic automation claude-code claude-code-plugin cli code-audit code-review codex developer-tools gemini google-gemini llm multi-model openai research-assistant static-analysis
Last synced: 24 days ago
JSON representation
Claude Code plugin providing AI-powered agents for code auditing, research, and multi-model consultation (OpenAI Codex, Google Gemini)
- Host: GitHub
- URL: https://github.com/jeffrigby/somepulp-agents
- Owner: jeffrigby
- License: mit
- Created: 2025-11-29T20:35:05.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2026-03-16T03:24:03.000Z (2 months ago)
- Last Synced: 2026-04-20T04:49:51.851Z (about 1 month ago)
- Topics: ai-agents, ai-assistant, anthropic, automation, claude-code, claude-code-plugin, cli, code-audit, code-review, codex, developer-tools, gemini, google-gemini, llm, multi-model, openai, research-assistant, static-analysis
- Language: Shell
- Homepage: https://github.com/jeffrigby/somepulp-agents#readme
- Size: 273 KB
- Stars: 5
- Watchers: 0
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Somepulp Agents
A plugin marketplace for [Claude Code](https://docs.anthropic.com/claude-code) providing specialized agents for code auditing, documentation maintenance, and library/API research.
## What Are These Plugins?
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.
## Available Plugins
| Plugin | Description | Contents |
|--------|-------------|----------|
| [codebase-health](./plugins/codebase-health/) | Codebase health tools: orchestrated deep audits, dead code detection, and documentation maintenance | **Commands:** `/deep-audit`, `/dead-code`, `/update-docs`
**Agents:** `security-auditor`, `performance-analyzer`, `library-modernizer`, `code-quality-reviewer`, `dead-code-cleanup`, `update-docs`
**Skills:** `code-auditing`, `docs-maintenance` |
| [research-assistant](./plugins/research-assistant/) | Research libraries and APIs using official documentation | **Commands:** `/research`, `/official-docs`
**Agents:** `research-assistant`, `official-docs`
**MCP:** Context7, Fetch |
## Installation
### From GitHub
1. Add the marketplace to Claude Code:
```
/plugin marketplace add jeffrigby/somepulp-agents
```
2. Install the plugins you want:
```
/plugin install codebase-health@somepulp-agents
/plugin install research-assistant@somepulp-agents
```
Or use the interactive `/plugin` command to browse and install.
### Manual Installation (for development)
```bash
# 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
```
## Requirements
| Plugin | Requirements |
|--------|--------------|
| **research-assistant** | Recommended: [Context7](https://github.com/upstash/context7) and [Fetch](https://github.com/modelcontextprotocol/servers/tree/main/src/fetch) MCP servers (install separately). Falls back to WebSearch/WebFetch if unavailable. |
## Plugin Structure
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)
├── hooks/hooks.json # Lifecycle hooks (optional)
└── .mcp.json # MCP server configuration (optional, not bundled here)
```
## Contributing
Contributions are welcome! Please:
1. Fork the repository
2. Create a feature branch
3. Make your changes
4. Submit a pull request
## License
MIT License - see [LICENSE](LICENSE) for details.
## Learn More
- [Claude Code Documentation](https://docs.anthropic.com/claude-code)
- [Plugin System Documentation](https://docs.anthropic.com/en/docs/claude-code/plugins)