Workflows

Task-oriented guides for common development scenarios using ClaudeKit’s slash commands and agents.

Feature Development

Feature Development Guide - Complete feature lifecycle from planning to deployment

/plan "add user authentication with OAuth"
/code @plans/user-auth.md
/fix:test
/git:pr "feature/user-auth"

Bug Fixing

Bug Fixing Workflow - Systematic approach to debugging and fixing issues

/debug "login button not working"
/fix:hard
/fix:test
/git:cm

Documentation

Documentation Workflow - Keep docs in sync with code changes

/docs:init
/docs:update "after feature changes"

Quick Workflows

Setup New Project

ck init my-project --kit engineer
cd my-project
/plan "set up project structure"
/code @plans/project-setup.md

Add New Feature

/plan "add [feature description]"
/code @plans/your-feature.md
/design:good "UI mockups if needed"
/fix:test
/git:cm

Deploy to Production

/plan "prepare for production deployment"
/fix:ci "fix any failing tests"
/git:pr "deploy-to-production"

Code Review

/code-review "review recent changes"
/fix "implement suggested improvements"
/git:cm

By Use Case

Frontend Development

  • UI/UX Design - /design:good, /design:fast
  • Component Development - /plan → /code → /fix:test
  • Styling - /design:good for aesthetic components

Backend Development

  • API Development - /plan → /code → /fix:hard
  • Database Changes - /plan "add user table" → /code
  • Performance Optimization - /debug "slow queries" → /fix

Full Stack

  • Complete Features - See Feature Development
  • Authentication - /cook "add authentication with Better Auth"
  • E-commerce - /cook "add Stripe payment integration

DevOps & Infrastructure

  • Docker Setup - /cook "add Docker configuration"
  • CI/CD - /fix:ci "fix failing GitHub Actions"
  • Deployment - /plan "deploy to Cloudflare Workers"

Advanced Workflows

Multi-agent Collaboration

/plan "complex feature with multiple components"
# Spawns: planner → researcher → frontend dev → backend dev → tester

/fix:hard "production bug"
# Spawns: debugger → researcher → dev → tester → reviewer

Content Creation

/content:good "write marketing copy for new feature"
/content:enhance "improve existing landing page"
/design:good "create visual assets for social media"

Integration Workflows

/integrate:polar "add Polar billing integration"
/integrate:sepay "add SePay payment gateway"

Getting Started

New to ClaudeKit? Start with:

  1. Getting Started Guide - Learn the basics
  2. Quick Start - Build your first feature
  3. Feature Development - Complete workflow example

Reference

Need Help?