Workflow Recipes

Ready-to-use command sequences for common development tasks.

New to ClaudeKit?
These workflows consist of sequences of commands that work together to accomplish common tasks. Perfect for getting started!

Workflow Recipes

v2.5.0+ v2.5.0+ uses skill-based workflows. Skills are invokable via natural language or /skill-name. After /plan, run /clear then /cook to implement.

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!
/cook Flags Control implementation behavior:
--fast

Skip research, quick implementation

--parallel

Run phases in parallel

--auto

Auto-approve all steps ("trust me")

--no-test

Skip test runs after coding

IMPORTANT: Always /clear after /plan /plan β†’ /clear β†’ /cook

Build a New Feature

Beginner

Best for: Adding new functionality to your app

~15-30 min 4 steps
1
/brainstorm skill Explore ideas (skill)

Use /brainstorm or say "brainstorm ideas for [feature]" to explore possibilities

2
/plan Create implementation plan

AI creates a detailed step-by-step plan for building your feature

3
Review β†’ /clear β†’ Implement

Review plan, run /clear to free context (mandatory in CK engineer@v2.5.0+), then implement

4
/cook @plan.md skill Implement the plan (skill)

AI writes the code following the plan, runs tests, and reviews the work

⚠️ CK engineer@v2.5.0+: /clear is mandatory after /plan before /cook

Fix a Bug

Beginner

Best for: Fixing errors and unexpected behavior

~5-15 min 3 steps
1
/debug Investigate the issue

AI analyzes your code to find the root cause of the problem

2
/fix skill Apply the fix (skill)

AI intelligently routes to specialized fix and applies the solution

3
/test Verify the fix

Run tests to make sure the bug is fixed and nothing else broke

πŸ’‘ /fix skill: intelligent routing to types, ui, ci, test, logs fixes

Quick Implementation

Intermediate

Best for: Small features when you know what you want

~10-20 min 1 steps
1
/cook "your task" skill All-in-one skill

AI researches, plans, implements, tests, and reviews the feature automatically

What /cook "your task" does automatically:
  • Research best approaches and technologies
  • Create and execute implementation plan
  • Write and test the code
  • Review for quality and best practices
v2.4 β†’ v2.5 Migration
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
πŸ’‘ See mapping table above for migrating from v2.4 variants

Start New Project

Advanced

Best for: Creating a complete app from scratch

~1-2 hours 1 steps
1
/bootstrap "describe your app" Complete project setup

AI builds your entire project: research, architecture, design, implementation, and documentation

What /bootstrap "describe your app" does automatically:
  • Research and tech stack selection
  • Project structure and architecture
  • UI/UX design and wireframes
  • Complete implementation with tests
  • Comprehensive documentation
⚠️ Warning: This uses significant AI tokens

Create Video Content

Intermediate

Best for: Programmatic video creation with React

~20-40 min 2 steps
1
/remotion skill Video creation (skill)

Create videos programmatically with React and Remotion

2
render Render output

Export to MP4, GIF, or image sequences

What /remotion does automatically:
  • Animations and transitions
  • Text animations and captions
  • 3D graphics integration
  • Audio synchronization
πŸ’‘ New in v2.5: Replaces /design:video command

Pro Tips

Save tokens with /clear
Use /clear to clear conversation history before starting implementation
Reference files with @
Use @plan.md to reference specific files in commands
Use /cook for implementation
After planning with `/plan`, run `/clear` then /cook to implement your plan
Scout before coding
Use /scout to quickly find relevant files in your codebase
Debug before fixing
Use /debug first to find root cause, then /fix when ready
Discover commands with /ck-help
Type /ck-help to see all 60+ commands organized by category

Need more workflows? See full docs from official Claudekit site.