A collection of Claude Code plugins for systematic development workflows and productivity enhancement.
A systematic workflow plugin that guides Claude through three structured phases for code changes:
- Research - Thoroughly explore and understand the codebase
- Design - Create detailed implementation roadmap with success criteria
- Implement - Execute plan with automated and manual verification
Use cases:
- Complex features touching multiple files
- Refactoring with significant scope
- Features requiring architectural decisions
- Tasks needing careful planning
Documentation: plugins/rdi/README.md
Install this marketplace directly from GitHub:
/plugin marketplace add clzmj/claude-code-pluginsOnce the marketplace is added, install specific plugins:
/plugin install rdi@clzmjclaude-code-plugins/
├── .claude-plugin/
│ └── marketplace.json # Marketplace configuration
├── plugins/
│ └── rdi/ # RDI workflow plugin
│ ├── .claude-plugin/
│ │ └── plugin.json # Plugin manifest
│ ├── commands/
│ │ └── rpi.md # Main workflow command
│ ├── agents/ # Custom agents
│ ├── hooks/ # Utility hooks
│ └── README.md # Plugin documentation
├── LICENSE # Apache 2.0 License
└── README.md # This file
-
Install the plugin:
/plugin install rdi@lezcodes
-
Start the workflow:
/rpi
-
Follow the interactive prompts through research, planning, and implementation.
User: /rpi
Claude: I'll guide you through a systematic Research → Plan → Implement workflow...
What would you like to work on?
User: Add user authentication with JWT
Claude: [Research Phase]
Analyzing current auth implementation...
[Plan Phase]
Here are the implementation options...
[Implement Phase]
Phase 1: Add JWT service
Automated ✓ | Manual testing needed...
Contributions are welcome! To add a new plugin or improve existing ones:
- Fork this repository
- Create your plugin in
plugins/your-plugin-name/ - Add plugin entry to
.claude-plugin/marketplace.json - Include comprehensive README.md with examples
- Submit a pull request
- Use clear, descriptive names
- Include frontmatter in command files with
descriptionandmodel - Provide detailed documentation with examples
- Follow the standard plugin structure
- Test thoroughly before submitting
Apache License 2.0 - See LICENSE file for details
Carlos Lezama
- Email: carlos@carrots.sh
For issues, questions, or suggestions:
- Open an issue on GitHub
- Check plugin-specific README files
- Review examples in documentation
- Initial marketplace release
- Research-Design-Implement plugin v1.0.0
- Three-phase workflow (Research, Design, Implement)
- Parallel research agents
- Interactive design/planning
- Phased implementation with verification
- Hook-based directory creation
- File-based workflow (research.md → plan.md)
- Comprehensive documentation with examples