A collection of Claude Code workflow plugins for software development.
| Plugin | Description |
|---|---|
| gopher | Go 1.24+ development workflow with TDD, quality gates, and code review |
# Add the marketplace and install plugins from within a Claude session
/plugin marketplace add car12o/claude-workflows
/plugin install [plugin] # e.g. /plugin install gopher
# Or from the command line
claude plugin marketplace add car12o/claude-workflows
claude plugin install [plugin] # e.g. claude plugin install gopher
# Or clone and install a specific plugin for development
git clone https://github.com/car12o/claude-workflows.git
claude --plugin-dir ./claude-workflows/plugins/[plugin] # e.g. claude --plugin-dir ./claude-workflows/plugins/gopherclaude-workflows/
├── .claude-plugin/
│ └── marketplace.json # Root registry
├── plugins/
│ └── gopher/
│ └── ...
├── README.md
├── CONTRIBUTING.md
└── LICENSE
- Create a directory under
plugins/<plugin-name>/ - Add a
.claude-plugin/plugin.jsonmanifest - Add agents, commands, skills, and hooks as needed
- Create a
README.mdfor the plugin - Register the plugin in
.claude-plugin/marketplace.json
See CONTRIBUTING.md for detailed guidelines.
MIT