GitHub - cbrake/claude-plugins: Claude Code Plugins for development

I got tired of adding the same set of commands to each repo, so created a marketplace for the stuff I use on every project. More on this later …

Give it a try and let me know what you think!

Added implement-tests test command

It is useful at times to have a separate test and implement commands:

Example 3: Test-Driven Development

  1. Update your README.md to describe a new feature:
## Payment Processing

The system supports credit card payments via Stripe. Users can save multiple
payment methods and set a default. All transactions are logged for audit
purposes.
  1. Create a plan:
/plan payment-processing

Inspect plan.

  1. Implement tests first:
/implement-tests

Inspect tests.

  1. Run tests to verify they fail (red phase)

  2. Implement the code:

/implement
  1. Run tests to verify they pass (green phase)

Example of using this plugin to generate KiCad library parts: