GigiKit Guides

Command Finder

Not sure which command to use? Click through the interactive decision tree to find the right command for your task.

Click a command to highlight its path

100%
Yes No Yes No Yes Speed Safety Approve Yes No Found 🎯 What do you want? New project? /gk:bootstrap Join existing? Has docs? /gk:docs init /gk:scout Build feature? Know what? /gk:brainstorm Speed/Safety? /gk:cook /gk:plan /gk:cook @plan.md Fix something? Know issue? /gk:fix /gk:debug Git ops? /gk:git /gk:worktree Docs? /gk:docs:* /gk:frontend-design /gk:remotion /gk:threejs Anytime commands /gk:gk-help /gk:ask /gk:coding-level Legend Main command (indigo) Explore/Init command (blue) Git/Help command (teal) Docs/Visual command (purple)

Quick Reference

ScenarioRecommended Command
Build something from scratch/gk:bootstrap
Explore an idea/gk:brainstorm
Fast implementation/gk:cook
Careful planning first/gk:plan then /gk:cook @plan.md
Unknown error/gk:debug then /gk:fix
Known error/gk:fix
Save work locally/gk:git cm
Save and share work/gk:git cp
Understand a codebase/gk:docs init
Architectural advice/gk:ask
View recent changes/gk:watzup
Visual plan view/gk:kanban or /gk:preview
Tailor explanations/gk:coding-level
GigiKit help/gk:gk-help

By Task Type

New Project Setup

CommandWhen to Use
/gk:bootstrapStarting a brand new project — handles research, tech stack, planning, design, and implementation
/gk:docs initJoining an existing project — analyzes codebase and creates documentation

Feature Building

Exploratory phase:

/gk:brainstorm "collaborative ideation without implementation"

Implementation phase:

ApproachCommandBest For
All-in-one/gk:cook "your task"Most tasks — includes research, plan, implement, test, review
Planned/gk:plan then /gk:cook @plan.mdComplex tasks requiring review before coding

Fixing Issues

CommandWhen to Use
/gk:debugDiagnostic analysis to find root causes
/gk:fixSmart routing for automatic issue-type detection
/gk:fix --quickTrivial bugs with obvious fixes
/gk:fix --parallelComplex issues spanning frontend and backend

Git Operations

CommandWhat It DoesSafety
/gk:git cmStage and commit locallySafe for experimentation
/gk:git cpStage, commit, and pushHarder to undo
/gk:git prCreate pull requestVisible to team
/gk:git mergeMerge branchesIrreversible
/gk:worktreeCreate isolated worktreeSafe parallel development

Documentation

CommandWhen to Use
/gk:docs initFirst-time project documentation
/gk:docs updateKeep docs in sync with code changes
/gk:docs summarizeQuick codebase overview

Exploration & Research

CommandWhen to Use
/gk:scoutFast parallel codebase search
/gk:researchDeep technical research
/gk:watzupReview recent branch changes
/gk:askTechnical and architectural consultation

Design

CommandWhen to Use
/gk:frontend-designUI/UX design from screenshots or descriptions
/gk:ui-ux-pro-maxFull design system with 50 styles and 21 palettes
/gk:remotionVideo creation with React
/gk:threejs3D graphics with Three.js
/gk:ai-artistAI image generation

Code Quality

CommandWhen to Use
/gk:code-reviewReview after implementation
/gk:code-review codebaseFull codebase audit
/gk:code-review codebase parallelLarge codebase, parallel review agents

Planning Variations

CommandWhen to Use
/gk:planAuto-detect complexity
/gk:plan --fastSimple tasks, skip research
/gk:plan --hardComplex features, deep analysis
/gk:plan --parallelMultiple independent tasks
/gk:plan --twoCompare two approaches

Common Workflows

Build a Feature (Safe Approach)

/gk:brainstorm "explore options"
/gk:plan "create implementation plan"
# Review the plan, then clear context
/gk:cook plans/260305-feature/plan.md
/gk:git cp
/gk:git pr

Build a Feature (Fast Approach)

/gk:cook "describe your task"
# Automatically: research → plan → implement → test → review
/gk:git cp

Debug and Fix

/gk:debug "find root cause"
/gk:fix "apply the fix"
/gk:git cm

New Project Setup

/gk:bootstrap "describe your app"
# Automatically: research → tech stack → architecture → design → implementation → docs

Join an Existing Project

/gk:docs init
/gk:scout "explore codebase structure"

Next Steps