Recommended Workflows
Step-by-step guides helping you use AI to build software without knowing how to code.
Build a New Feature
BeginnerBest for: Adding new functionality to your app
/brainstorm Explore ideas Discuss your feature idea with AI to explore possibilities and get feedback
/plan Create implementation plan AI creates a detailed step-by-step plan for building your feature
Look through the plan, ask questions, and request changes if needed
/code @plan.md Implement the plan 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 Apply the fix AI fixes the bug and explains what was wrong and how it was fixed
/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" All-in-one command 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
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
Pro Tips
/clear to clear conversation history before starting implementation@plan.md to reference specific files in commands/git:cm to commit your progress regularly so you can restore if something goes wrong/ask to get technical explanations or architectural guidance/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 category/code to execute it step-by-stepCommon Commands Reference
/brainstorm Explore ideas and possibilities
/plan Create implementation plans
/cook Implement features end-to-end
/code Implement existing plans
/fix Fix bugs and issues
/test Run and analyze tests
/debug Investigate issues
/ask Get technical guidance
/clear Clear conversation history
Need more workflows? See full docs from official Claudekit site.