Workflow Recipes
Ready-to-use command sequences for common development tasks.
Workflow Recipes
Upgrading from v2.4?
Key changes for existing users:
| v2.4.0 (Old) | v2.5.0+ (New) | Notes |
|---|---|---|
/code | /cook | Skill-based, supports flags |
/fix:types | /fix | Unified fix skill |
/design:screenshot | /frontend-design | Renamed skill |
/plan β /code | /plan β /clear β /cook | /clear is mandatory! |
--fast Skip research, quick implementation
--parallel Run phases in parallel
--auto Auto-approve all steps ("trust me")
--no-test Skip test runs after coding
/plan β /clear β /cook Build a New Feature
BeginnerBest for: Adding new functionality to your app
/brainstorm skill Explore ideas (skill) Use /brainstorm or say "brainstorm ideas for [feature]" to explore possibilities
/plan Create implementation plan AI creates a detailed step-by-step plan for building your feature
Review plan, run /clear to free context (mandatory in CK engineer@v2.5.0+), then implement
/cook @plan.md skill Implement the plan (skill) AI writes the code following the plan, runs tests, and reviews the work
Fix a Bug
BeginnerBest for: Fixing errors and unexpected behavior
/debug Investigate the issue AI analyzes your code to find the root cause of the problem
/fix skill Apply the fix (skill) AI intelligently routes to specialized fix and applies the solution
/test Verify the fix Run tests to make sure the bug is fixed and nothing else broke
Quick Implementation
IntermediateBest for: Small features when you know what you want
/cook "your task" skill All-in-one skill AI researches, plans, implements, tests, and reviews the feature automatically
- Research best approaches and technologies
- Create and execute implementation plan
- Write and test the code
- Review for quality and best practices
| v2.4.0 | v2.5.0+ |
|---|---|
/cook:auto | /cook --auto |
/cook:auto:fast | /cook --auto --fast |
/cook:auto:parallel | /cook --auto --parallel |
/code:no-test | /cook --no-test |
/code:parallel | /cook --parallel |
Start New Project
AdvancedBest for: Creating a complete app from scratch
/bootstrap "describe your app" Complete project setup AI builds your entire project: research, architecture, design, implementation, and documentation
- Research and tech stack selection
- Project structure and architecture
- UI/UX design and wireframes
- Complete implementation with tests
- Comprehensive documentation
Create Video Content
IntermediateBest for: Programmatic video creation with React
/remotion skill Video creation (skill) Create videos programmatically with React and Remotion
render Render output Export to MP4, GIF, or image sequences
- Animations and transitions
- Text animations and captions
- 3D graphics integration
- Audio synchronization
Pro Tips
/clear to clear conversation history before starting implementation@plan.md to reference specific files in commands/cook to implement your plan/scout to quickly find relevant files in your codebase/debug first to find root cause, then /fix when ready/ck-help to see all 60+ commands organized by categoryRelated Guides
Need more workflows? See full docs from official Claudekit site.