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
--tdd Tests-first per phase, works with any other mode
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
4 workflowsExcalidraw Diagram Generation
IntermediateBest for: Creating hand-drawn style diagrams that argue visually — shapes mirror meaning
/excalidraw Generate diagram Generate hand-drawn Excalidraw diagrams from text prompts — architecture, flowcharts, system designs
- Hand-drawn style with semantic color palettes
- Auto-diagram: zero-config codebase visualization
- File-based workflow with Playwright rendering
- MCP canvas workflow for live editing
Publication Diagrams (tech-graph)
IntermediateBest for: Generating publication-quality SVG diagrams for docs, slides, blog posts
/ck:tech-graph "<topic or system>" Generate SVG diagram Render publication-grade SVG with 7 design styles (modern, minimal, neon, retro, etc.) and 10 templates (architecture, sequence, ER, flowchart, state-machine, timeline, comparison-matrix, use-case, agent-architecture, data-flow)
- 7 design styles: flat-icon, dark-terminal, blueprint, notion-clean, glassmorphism, claude-official, openai
- 10 diagram templates incl. agent-architecture and data-flow
- SVG layout best-practices baked in (spacing, arrow routing, z-index)
- Output ready for docs/slides/blog without manual cleanup
Frontend 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 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 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 /ck:loop pattern
Planning & Review
7 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
--deep Deep analysis: file inventory, test scenarios, dependency map per phase
--parallel Plan designed for parallel agent execution
--two Two-phase plan (plan → implement)
--tdd Tests-first per phase, works with any other flag
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)
Extract & Port Features (Xia)
AdvancedBest for: Analyzing and porting features from external GitHub repos into your project
/ck:xia <repo> --compare Analyze source Compare source repo architecture, patterns, and feature implementation side-by-side
/ck:xia <repo> [feature] --improve Port & refactor Copy feature from source and refactor to fit local codebase patterns
/ck:test Validate port Run tests to verify ported feature works correctly in local context
- Analyze any GitHub repo or local path
- Challenge framework stress-tests decisions
- AI auto-generates trade-off matrix and risk scores before coding
--compare Side-by-side architectural and pattern analysis only
--copy Code transplant with absolute minimal modifications
--improve Bring codebase over but refactor to clean up anti-patterns
--port Extract core logic and rewrite idiomatically for local stack (Default)
--fast Skip research and challenge phases, auto-approve immediately
--auto Keep the full workflow, but auto-approve gates
Default Full workflow with approval gates
Knowledge Graph Navigation
IntermediateBest for: Understanding unfamiliar codebases through structural analysis before planning
/ck:graphify Build graph Analyze codebase with tree-sitter AST, generate interactive visualization + report
/ck:plan Plan with context Use GRAPH_REPORT.md to understand architecture before creating implementation plan
- 20+ language support via tree-sitter AST
- Interactive HTML visualization with search
- God nodes and surprising connections report
- 71.5x fewer tokens vs raw file context
Predict Impact Before Coding
IntermediateBest for: Catching architectural, security, and performance issues before implementation
/ck:predict 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
Review & Merge a PR
IntermediateBest for: Reviewing a GitHub pull request for standards, security, and breaking changes before merge
/ck:review-pr <PR> Review the PR Checks duplicate prior work, project standards, strategic necessity, correctness, security, breaking changes, and AI-slop patterns
/ck:review-pr <PR> --fix --reply Auto-fix & reply Apply the findings to the working tree and post the formal review back to GitHub
/ck:git merge Merge when green Merge once approved and CI passes
Research & Docs
3 workflowsVisual Documentation
BeginnerBest for: Creating visual explanations, diagrams, and slide decks as Markdown or self-contained HTML
/ck:preview --explain "topic" Markdown explanation Create ASCII + Mermaid diagrams with prose explanation (opens in novel-reader UI)
/ck:preview --html --explain "topic" HTML explanation Self-contained HTML with theme toggle, Mermaid v11, and Chart.js — opens directly in browser
/ck:preview --html --slides "topic" HTML slide deck Magazine-quality presentation slides as self-contained HTML
- Markdown modes: --explain, --slides, --diagram, --ascii
- HTML modes: --html --explain, --html --slides, --html --diagram
- HTML-only: --diff, --plan-review, --recap
- Theme toggle (light/dark) in every HTML page
- Mermaid v11 diagrams + Chart.js data visualizations
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
4 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
Autonomous Feature Delivery
AdvancedBest for: Hands-off delivery from a GitHub issue or feature request to a shipped PR
/ck:vibe Autonomous pipeline One command takes a GitHub issue or feature request through plan → implement → review → ship (worktree isolation, reusable/TDD plan gates, cook or fix routing, review-pr, merge/CI watch)
Approve the generated plan at the gate; it then implements, self-reviews, and opens a PR
Backend & Infra
2 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
Agentize Your Codebase
IntermediateBest for: Converting existing code into AI agent-friendly CLI tools and MCP servers
/ck:agentize --both Generate CLI + MCP Wrap codebase as both CLI tool and MCP server with shared core/ module
Concise outputs, actionable errors, consolidated workflows — designed for LLM consumption
/ck:deploy Deploy to cloud Deploy to Cloudflare Workers, Docker, or any supported platform
- Shared core/ module for CLI + MCP
- Agent-centric output formatting
- Actionable error messages for LLMs
- Deploy to Cloudflare Workers or Docker
Media & Creative
3 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
Showcase & Social Media Content
BeginnerBest for: Creating polished HTML showcase pages for demos, articles, and social media posts
/ck:show-off Generate showcase Create multi-section HTML page with parallax, theme toggle, bilingual content (VI/EN), and auto-captured screenshots
- Scrollable multi-section layout with parallax effects
- Auto theme toggle (system/light/dark)
- Parallel screenshot capture in multiple aspect ratios
HTML-to-Video Rendering
IntermediateBest for: Rendering local MP4 videos from HTML/CSS/JS templates (promos, explainers, social clips)
/ck:html-video Scaffold from template Check out a template (promo, explainer, data video, social clip) and customize it in the studio
Render locally through Chromium + ffmpeg, then verify the output MP4
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
3 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
Browser Automation (Real Chrome)
AdvancedBest for: Automating or testing logged-in web UIs using your real Chrome profile and cookies
/ck:chrome-profile Target real profile Discover and target your real Google Chrome profile through Chrome DevTools MCP (real session cookies)
Preview or test authenticated UI, capture screenshots, or scrape with your logged-in session
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 it Related 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:plan Strategic planning Define campaign goals, KPIs, timeline, and budget allocation
/ckm:campaign:create Create campaign Set up campaign structure with channels and messaging
The content-marketing skill plans content pillars & calendar — describe your goal to activate it
/ckm:social:schedule Schedule distribution Plan and schedule content across social platforms
/ckm:analyze 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
The ab-test-setup skill designs variants & tracking — say "set up an A/B test for ..."
/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
The form-cro skill optimizes forms for conversion — describe the form to improve
/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
3 workflowsCreate Marketing Assets
IntermediateBest for: Generating cohesive visual assets for campaigns
/ckm:brand review Review brand guidelines Load brand colors, fonts, and style guidelines
The design-system skill builds brand guidelines & tokens — describe your brand
The design skill generates logos/banners/social graphics — say "design a banner for ..."
The assets-organizing skill files & names your generated assets — run it after creating assets
- Brand-consistent design
- Multi-size exports
- Platform-specific formats
- Asset library organization
Design Social Graphics
BeginnerBest for: Creating engaging social media visuals
The design skill creates social graphics — say "design a social graphic for ..."
/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
Excalidraw Diagram Generation
BeginnerBest for: Visualizing marketing funnels, campaign flows, and content strategies in hand-drawn style
/excalidraw Generate diagram Generate hand-drawn Excalidraw diagrams — marketing funnels, campaign flows, content calendars, competitor maps
- Hand-drawn style with semantic color palettes
- Marketing funnels, campaign flows, content maps
- Auto-diagram: zero-config codebase visualization
- File-based workflow with Playwright rendering
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
The marketing-research skill gathers market/audience insights — ask it to research your niche
- 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
The marketing-research skill gathers market/audience insights — ask it to research your niche
/ckm:funnel design Design funnel Map customer journey and conversion points
/ckm:plan 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
The youtube-thumbnail-design skill creates click-worthy thumbnails — describe the video
/ck:ai-multimodal Review & iterate Analyze generated thumbnails and refine with feedback
The assets-organizing skill files & names your generated assets — run it after creating assets
- 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
The elevenlabs skill generates voiceover audio — provide the script to narrate
- 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 it Related Guides
Need more workflows? See full docs from official ClaudeKit site.
Related guide
Finding Your Unknowns
Workflows are proven recipes for known situations. Finding Your Unknowns is what you reach for when no recipe fits yet — pinpoint which kind of unknown you are facing, then find or build the workflow.