Workflow Recipes
Ready-to-use command sequences for common development tasks.
Workflow Recipes
Getting Started
3 workflowsBuild a New Feature
BeginnerBest for: Adding new functionality to your app
/ck:brainstorm Explore ideas Use /ck:brainstorm or say "brainstorm ideas for [feature]" to explore possibilities
/ck:plan Create implementation plan AI creates a detailed step-by-step plan for building your feature
Review plan, run /clear to free context (mandatory), then implement
/ck:cook @plan.md Implement the plan AI writes the code following the plan, runs tests, and reviews the work
Quick Implementation
IntermediateBest for: Small features when you know what you want
/ck:cook "your task" 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
--interactive Step-by-step with approval (default)
--fast Skip research, quick implementation
--parallel Run phases in parallel
--auto Auto-approve all steps
--no-test Skip test runs after coding
Start New Project
AdvancedBest for: Creating a complete app from scratch
/ck: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
Design & Frontend
2 workflowsFrontend Design Aesthetics
AdvancedBest for: Creating distinctive, production-grade frontend interfaces that avoid generic AI slop
/ck:ui-ux-pro-max Design Intelligence Activate ui-ux-pro-max logic to formulate styling references
Commit to a BOLD direction. Define Purpose, Tone, Constraints, and Differentiation.
Ensure font size >= 16px for inputs, mobile-first layouts, and Anti-slop Google Fonts.
/ck:frontend-design Implement Interface Execute the spec following the design dials: Motion, Variance, Density.
- Design Dials: Variance, Density, Motion Intensity
- Mandatory strict Design Thinking gates
- Motion rules: CSS for HTML, Motion for React
- Production-ready aesthetic choices
AI Design Generation (Stitch)
IntermediateBest for: Generating high-fidelity UI designs from text prompts via Google Stitch
/ck:stitch generate "prompt" Generate design Create UI designs from text prompts using Google Stitch AI
/ck:stitch export --format all Export assets Export as Tailwind/HTML + DESIGN.md spec for implementation
/ck:frontend-design Implement components Build React components from the exported design spec
- Text-to-UI design via Google Stitch API
- Export to Tailwind/HTML and DESIGN.md
- Design-to-code pipeline with existing skills
- Supports mobile, desktop, and tablet layouts
- Quota: 200 credits/day (Flash), 50/day (Pro)
Debugging & Fixes
4 workflowsFix a Bug
BeginnerBest for: Structured diagnosis and repair of bugs
/ck:fix 6-step pipeline Runs the full pipeline: Scout → Diagnose → Assess → Fix → Verify → Prevent
Gather evidence — logs, stack traces, affected files
Root-cause analysis based on evidence, then severity/impact assessment
Apply targeted fix based on diagnosed root cause
Run tests to confirm fix works and no regressions
Add guards, tests, or documentation to prevent recurrence
--auto Auto-apply fix without confirmation
--review Review fix before applying
--quick Fast fix without deep analysis
--parallel Fix multiple issues in parallel
Security Audit
IntermediateBest for: Finding security vulnerabilities and secrets
/ck:security-scan Scan for vulnerabilities Scan codebase for OWASP issues, hardcoded secrets, and dependency vulnerabilities
/ck:code-review --security Security-focused review Deep code review focusing on authentication, authorization, and data handling
/ck:fix --security Apply security fixes AI applies recommended security fixes with detailed explanations
- Hardcoded secrets detection
- Dependency vulnerability scan
- OWASP Top 10 coverage
- Security fix recommendations
Generate Test Scenarios
BeginnerBest for: Comprehensive edge case discovery before implementation or testing
/ck:scenario beta 12-dimension analysis Decompose features across 12 dimensions to generate comprehensive test scenarios
- 12-dimension feature decomposition
- Edge case and boundary condition discovery
- Test scenario generation with priorities
- Integration with /ck:test for execution
STRIDE Security Audit
IntermediateBest for: Comprehensive STRIDE + OWASP security analysis with optional auto-fix
/ck:security beta STRIDE audit STRIDE threat modeling + OWASP scan with severity categorization and optional auto-fix
- STRIDE threat modeling framework
- OWASP vulnerability pattern matching
- Severity categorization and prioritization
- Optional iterative auto-fix using autoresearch pattern
Planning & Review
5 workflowsCode Review with Edge Cases
IntermediateBest for: Thorough code review with edge case scouting
/ck:cook @plan.md Implement the plan AI writes the code following the plan with auto test & review cycles
/ck:scout Scout edge cases AI scouts affected files, data flows, error paths, and boundary conditions
Code-reviewer subagent reviews findings from scout and evaluates code quality
/ck:git cm Merge & commit Commit the reviewed code with conventional commit message
- Edge case detection via /ck:scout
- Boundary condition analysis
- Data flow & error path scouting
- Automated code-reviewer integration
Plan + Validate + Implement
IntermediateBest for: Validated plans with auto-propagated decisions
/ck:plan Create plan AI creates a detailed implementation plan with phases
/ck:plan validate Validate plan decisions Interview-style validation gate. Decisions auto-propagate to phase files
Free context before implementation. Mandatory step
/ck:cook @plan.md Implement validated plan AI implements with validated decisions already propagated to each phase
- Interview-style plan validation
- Auto-propagation to phase files
- Validated decisions guide implementation
- Reduced rework from unclear plan decisions
--hard Complex multi-phase plan with red-team review
--parallel Plan designed for parallel agent execution
--two Two-phase plan (plan → implement)
validate Interview-style validation gate
red-team Spawn adversarial reviewers
Adversarial Plan Review
AdvancedBest for: Finding flaws in plans before implementation
/ck:plan --hard "feature" Create plan Create a detailed plan. Hard/parallel/two modes auto-run red-team after creation
/ck:plan red-team plans/ Adversarial review Spawn hostile reviewers: Security, Failure Mode, Assumption Destroyer, Scope Critic
- Security Adversary (auth bypass, injection, OWASP)
- Failure Mode Analyst (race conditions, data loss)
- Assumption Destroyer (unstated deps, false claims)
- Scope & Complexity Critic (over-engineering, YAGNI)
Automated Research Loop
IntermediateBest for: Iterative metric optimization with automated experiments
/ck:autoresearch beta Research loop Run N iterations against a metric, auto-keep/discard changes based on results
- Autonomous iteration loop
- Git history learning between rounds
- Auto-keep/discard based on metric delta
- Works with any measurable metric
Predict Impact Before Coding
IntermediateBest for: Catching architectural, security, and performance issues before implementation
/ck:predict beta 5-persona debate 5 expert personas debate proposed changes — architect, security, performance, UX, ops
- 5 expert personas with distinct viewpoints
- Architecture, security, performance analysis
- UX and ops impact assessment
- Consensus report with risk ratings
Research & Docs
3 workflowsVisual Documentation
BeginnerBest for: Creating visual explanations and diagrams for your plan
/ck:plan Create plan first Create a structured plan. Visuals are saved into the plan directory
/ck:preview --explain "topic" Generate explanation Create ASCII + Mermaid diagrams with prose explanation for your topic
/ck:preview --diagram "topic" Generate focused diagram Create a focused Mermaid + ASCII diagram for a specific data flow or architecture
- ASCII + Mermaid diagrams (--explain)
- Presentation format (--slides)
- Focused diagrams (--diagram)
- Terminal-friendly output (--ascii)
Research & Documentation
BeginnerBest for: Research topics and create technical documentation
/ck:research "topic" Deep research AI researches the topic thoroughly using web search and documentation
/ck:docs-seeker "library" Search library docs Search official documentation via llms.txt for up-to-date API info
/ck:docs Generate project docs Create or update project documentation based on codebase analysis
- Web search and synthesis
- Library documentation lookup
- Project documentation generation
- Technical writing assistance
LLMs.txt Generation
BeginnerBest for: Making your project AI-friendly for LLM consumption
/ck:llms [path] Generate index Create llms.txt following llmstxt.org spec — makes your docs AI-readable
- Follows llmstxt.org specification
- Generates from docs, README, or codebase
- Includes reference files and structure overview
- Works with any project type
Shipping
3 workflowsDevOps & Deployment
AdvancedBest for: Setting up CI/CD and deployment pipelines
/ck:devops "setup CI/CD" Configure DevOps Set up CI/CD pipelines for GitHub Actions, GitLab CI, or other platforms
/ck:deploy Deploy to platform Deploy to Cloudflare, Vercel, GCP, or Kubernetes with auto-detection
/ck:test --e2e Run E2E tests Verify deployment with end-to-end tests
- CI/CD pipeline generation
- Multi-platform deployment
- Environment configuration
- Rollback and monitoring setup
Ship a Feature
IntermediateBest for: Shipping feature branches with automated test, review, and PR creation
/ck:ship [--official|--beta] [--skip-tests] [--skip-review] Ship pipeline Merge main, run tests, pre-landing review, bump version, update changelog, push, create PR
- Supports official (→main) and beta (→dev) ship modes
- Merges origin/main (or dev for beta) before testing
- Auto-detects npm/pytest/cargo/go test
- Two-pass code review + adversarial review (stage 3)
- Bumps version and updates CHANGELOG.md
- Creates PR with summary, test results, and linked issues
Deploy Your App
IntermediateBest for: Deploying to Vercel, Netlify, Railway, Fly.io, AWS, GCP and more
/ck:deploy [platform] Auto-deploy AI detects your project type and deploys to 15+ platforms with zero manual config
- Auto-detects project type (Next.js, Astro, Express, etc.)
- Supports 15+ platforms out of the box
- Handles env vars and build configuration
- Vercel, Netlify, Railway, Fly.io, AWS, GCP, Azure
Backend & Infra
1 workflowsDatabase Operations
IntermediateBest for: Database schema design and migrations
/ck:databases "schema design" Design schema Design database schema with relationships, indexes, and constraints
/ck:plan "migration" Plan migration Create a safe migration plan with rollback strategy
/ck:cook @plan.md Execute migration Implement migration with proper error handling and validation
- Schema design with relationships
- Index optimization
- Migration script generation
- Query performance analysis
Media & Creative
1 workflowsCreate Video Content
IntermediateBest for: Programmatic video creation with React
/ck:remotion Video creation 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
Session & Management
1 workflowsSprint Retrospective
BeginnerBest for: Data-driven sprint reviews with git metrics, health indicators, and actionable recommendations
/ck:retro [timeframe] [--compare] [--team] [--format html|md] Analyze sprint Gather git metrics (commits, LOC, hotspots, churn), compute health indicators, generate retrospective report
- Git metrics: commits/day, LOC added/removed, file hotspots
- Health indicators: churn rate, test ratio, active day ratio
- Period comparison with --compare flag
- Per-author breakdown with --team flag
- HTML or Markdown output format
Advanced
2 workflowsAgent Teams (Parallel)
AdvancedBest for: Large tasks with multiple parallel agents
/ck:plan --hard "feature" Create plan with phases Create a detailed plan with parallelizable phases for team execution
/ck:team cook @plan Parallel team execution Spawn parallel dev agents, each handling a phase. Auto test → review → merge
- Parallel dev agents (--devs N)
- Auto test → review → merge pipeline
- Event-driven hooks + agent memory
- Also: /ck:team research, /ck:team review, /ck:team debug
--devs N Number of parallel dev agents (default: 2)
--tester Include dedicated tester agent
--reviewer Include code reviewer agent
--worktree Run each agent in isolated git worktree
Isolated Feature Branching
IntermediateBest for: Parallel development in monorepos using git worktrees
/ck:worktree info Step 1: Get Repo Info Parse repo type, base branch, and existing projects
Step 2: Detect Branch Naming Mode Detect conventional prefix or use --no-prefix for exact Jira keys
Format branch name to kebab-case (skipped if --no-prefix is active)
- Isolated git worktrees per feature
- Preserve exact issue keys (--no-prefix)
- Auto-detect branch prefix conventions
- Monorepo project scoping support
Pro Tips
/clear to clear conversation history before starting implementation@plan.md to reference specific files in commands/ck:plan, run /clear then /ck:cook to implement your plan/ck:scout to quickly find relevant files in your codebase/ck:debug first to find root cause, then /ck:fix when ready/ck:cook to execute itRelated Guides
Need more workflows? See full docs from official ClaudeKit site.
Content & Copy
2 workflowsWrite & Publish Blog Post
BeginnerBest for: Creating SEO-optimized blog content from scratch
/ckm:write:good [topic] Research & draft AI researches topic, analyzes competitors, and drafts SEO-optimized content
/ckm:seo:audit SEO optimization Audit content for keyword density, meta tags, and search optimization
/ckm:write:enhance Enhance & polish Improve readability, add CTAs, and optimize for engagement
/ckm:write:publish Publish content Format for CMS, add images, and prepare for publication
- Competitor content analysis
- SEO keyword integration
- Readability optimization
- CMS-ready formatting
Create Email Sequence
IntermediateBest for: Building automated email nurture campaigns
/ckm:persona Define audience Create buyer persona to target messaging effectively
/ckm:email:flow [welcome] Design email flow Create automated sequence with timing and triggers
/ck:copywriting Write copy Craft compelling subject lines and email body copy
/ckm:email:sequence Generate sequence Output complete email sequence with A/B variants
- Buyer persona targeting
- Automated trigger setup
- A/B test variants
- ESP-ready export
Campaign & Analytics
2 workflowsLaunch Marketing Campaign
AdvancedBest for: Planning and executing multi-channel campaigns
/ckm:marketing-planning Strategic planning Define campaign goals, KPIs, timeline, and budget allocation
/ckm:campaign:create Create campaign Set up campaign structure with channels and messaging
/ckm:content-marketing Content creation Generate campaign assets across all channels
/ckm:social:schedule Schedule distribution Plan and schedule content across social platforms
/ckm:analytics Set up tracking Configure analytics and conversion tracking
- Multi-channel coordination
- Budget allocation planning
- Content calendar generation
- Performance tracking setup
Set Up A/B Testing
IntermediateBest for: Testing variations to optimize conversion rates
/ckm:funnel analyze Identify bottlenecks Analyze current funnel to find optimization opportunities
/ckm:ab-test-setup Design test Create hypothesis, variants, and success metrics
/ckm:plan:cro Implementation plan Create detailed plan for test implementation
/ckm:analyze:report Analyze results Statistical analysis and recommendations
- Hypothesis formulation
- Variant design
- Statistical significance calc
- Winner implementation
SEO & Growth
2 workflowsPerform SEO Audit
BeginnerBest for: Comprehensive site health and SEO analysis
/ckm:seo:audit [url] Technical audit Analyze site structure, speed, mobile-friendliness, and crawlability
/ckm:seo:keywords [niche] Keyword research Discover high-value keywords and content gaps
/ckm:competitor seo [url] Competitor analysis Analyze competitor rankings and backlink profiles
- Technical SEO checklist
- Keyword opportunity map
- Competitor gap analysis
- Priority action items
Optimize Landing Page
IntermediateBest for: Improving conversion rates on landing pages
/ckm:funnel analyze [url] Analyze performance Review current metrics, bounce rate, and user flow
/ckm:form-cro [form-url] Form optimization Optimize form fields, CTAs, and friction points
/ck:copywriting Copy optimization Improve headlines, value props, and persuasion elements
/ckm:plan:cro Create CRO plan Document changes and set up tracking for improvements
- Heatmap analysis
- Form field optimization
- Copy A/B variants
- Conversion tracking
Design & Creative
2 workflowsCreate Marketing Assets
IntermediateBest for: Generating cohesive visual assets for campaigns
/ckm:brand review Review brand guidelines Load brand colors, fonts, and style guidelines
/ckm:design-system Design system Generate component library aligned with brand
/ckm:design banner Create assets Generate banners, ads, and promotional graphics
/ckm:assets-organizing Organize assets Structure and export assets for various platforms
- Brand-consistent design
- Multi-size exports
- Platform-specific formats
- Asset library organization
Design Social Graphics
BeginnerBest for: Creating engaging social media visuals
/ckm:design social Generate graphics Create platform-optimized social media graphics
/ck:copywriting Write captions Generate engaging captions with hashtags
/ckm:social:schedule Schedule posts Plan posting schedule for optimal engagement
- Platform-specific sizing
- Brand consistency
- Caption generation
- Hashtag suggestions
Strategy & Research
2 workflowsCompetitor Analysis
IntermediateBest for: Understanding competitive landscape and opportunities
/ckm:competitor list Identify competitors Discover direct and indirect competitors in your space
/ckm:competitor analyze [url] Deep analysis Analyze positioning, messaging, and unique value props
/ckm:competitor content Content audit Analyze content strategy, topics, and engagement
/ckm:marketing-research Market insights Synthesize findings into actionable insights
- Competitor mapping
- Positioning analysis
- Content gap identification
- Opportunity matrix
Define Marketing Plan
AdvancedBest for: Creating comprehensive marketing strategy
/ckm:persona Define personas Create detailed buyer personas and segments
/ckm:marketing-research Market research Analyze market trends, size, and opportunities
/ckm:funnel design Design funnel Map customer journey and conversion points
/ckm:marketing-planning Strategic plan Create comprehensive marketing strategy document
/ckm:dashboard Set up tracking Configure KPI dashboard and reporting
- Persona development
- Channel strategy
- Budget allocation
- KPI framework
Playbook & Orchestration
1 workflowsRun Marketing Playbook
IntermediateBest for: Orchestrating end-to-end marketing campaigns with templates, goals, and smart suggestions
/ckm:play:create --template saas-launch Create playbook Choose from templates: saas-launch, product-hunt-launch, content-engine, campaign-sprint
/ckm:play:goals set Set goals Define KPIs and targets — integrates with GA4, GSC, Stripe metrics
/ckm:play:next Smart next step AI suggests highest-impact action based on goal gaps and step readiness
/ckm:play:status Track progress Dashboard view of all steps, goals, and blockers
- Dependency-graph routing between steps
- Quality gates for human approval checkpoints
- Goal tracking with GA4/GSC/Stripe integration
- Smart suggestions based on goal gaps
- 4 bundled templates: SaaS launch, Product Hunt, content engine, campaign sprint
Video & Media
3 workflowsDesign YouTube Thumbnails
BeginnerBest for: Creating CTR-optimized YouTube thumbnails with AI generation
/ckm:youtube-thumbnail-design Design thumbnails AI generates complete thumbnails with text baked in via Gemini Pro (up to 4K)
/ck:ai-multimodal Review & iterate Analyze generated thumbnails and refine with feedback
/ckm:assets-organizing Organize exports Structure thumbnails by video slug with variant naming
- 17 art direction styles with CTR impact ratings
- Niche-specific guides: tech, gaming, education, cooking, fitness, business
- Batch variant generation for A/B testing
- Reference face support for consistent branding
- Google Font support and arrow overlays
Script & Storyboard Video
IntermediateBest for: Pre-production planning for video content
/ckm:video:script [topic] Write script Generate video script with hooks, body, and CTA
/ckm:video:storyboard Create storyboard Visual shot-by-shot breakdown with timing
/ckm:elevenlabs speak Generate voiceover Create AI voiceover from script
- Hook optimization
- Scene breakdown
- Timing guidance
- AI voiceover option
Create Video Content
AdvancedBest for: Full video production workflow
/ckm:video:script Script & plan Create script and production plan
/ckm:video:create Generate video Create video with AI assistance or edit guidance
/ckm:youtube:social Create clips Generate social media clips from long-form content
/ckm:seo:keywords [video] Optimize metadata Create SEO titles, descriptions, and tags
- Full production workflow
- Social clip generation
- SEO optimization
- Multi-platform export
Pro Tips
/clear to clear conversation history before starting implementation@plan.md to reference specific files in commands/ck:plan, run /clear then /ck:cook to implement your plan/ck:scout to quickly find relevant files in your codebase/ck:debug first to find root cause, then /ck:fix when ready/ck:cook to execute itRelated Guides
Need more workflows? See full docs from official ClaudeKit site.