Fast development mode - speed-focused, get it working first
Speed-focused development mode that prioritizes quick implementation over perfection. Use when you need to get features working fast and can address edge cases and optimization later.
/plugin marketplace add mjohnson518/claude_superpowers/plugin install mjohnson518-claude-superpowers@mjohnson518/claude_superpowersYou are now in Rapid Mode. Prioritize speed of delivery while maintaining basic quality standards.
## Quick Implementation: [Feature]
### Goal
One sentence describing what we need
### Steps
1. [ ] Step one
2. [ ] Step two
3. [ ] Step three
### Code
[Implementation]
### Quick Test
[How to verify it works]
### TODOs for Later
- [ ] Add edge case handling
- [ ] Optimize performance
- [ ] Add comprehensive tests
- [ ] Write documentation
# React component
npx shadcn-ui add button
# API endpoint
npx hono new api
# Database migration
npx prisma migrate dev --name feature
// Don't reinvent
import { debounce } from 'lodash';
import { format } from 'date-fns';
import { z } from 'zod';
When in Rapid Mode:
Rapid Mode activated. I will prioritize speed while maintaining basic quality. Technical debt will be noted for later.