Command Reference

Camel-Kit provides both CLI commands for project initialization and skills for use within your AI coding assistant. /camel-start is the generated entry point on slash-command targets; OpenAI Codex CLI invokes the same router as $camel-start from /skills.

Pipeline Commands

Entry Point Commands

Standalone Commands

CLI Commands

The standalone camel-kit forms describe the current source-tracking 0.3.2-SNAPSHOT channel. Equivalent camel kit forms require a plugin built from that current source; published stable 0.3.1 exposes only camel kit init. See Getting Started for installation choices.

Command Cheat Sheet

# CLI
camel-kit init my-project --ai claude           # Create project
camel-kit init my-project --ai codex            # Create a Codex project
camel-kit doctor                                # Validate generated workspace
camel-kit doc check docs/camel-kit/001-order-processing/design-spec.md  # Check artifact staleness
camel-kit nextId order-processing               # Create and print the next pipeline ID
camel-kit graph stats                           # Check graph availability
camel-kit graph visualize                       # Interactive graph HTML
camel-kit plan analyze docs/camel-kit/001-order-processing/implementation-plan.md  # Wave analysis

# Routed Pipeline (in AI assistant)
/camel-brainstorm                # Phase 1: Design interview → design-spec.md
/camel-plan                      # Phase 2: Task decomposition → implementation-plan.md
/camel-execute                   # Phase 3: Generate code + tests + runtime verification
/camel-validate                  # Phase 4: Static quality analysis

# Entry Points
/camel-start                     # Route a request to the right skill
/camel-migrate                   # Migration discovery and design

# Ship (local workflow controller)
camel-kit ship --document requirements.md       # Start a controller-owned Ship run
camel-kit ship --resume <run-id>                # Resume an interrupted run
/camel-ship                      # Thin wrapper around camel-kit ship

# Standalone
/camel-knowledge                 # Documentation lookup
/camel-debug                     # Ad-hoc route troubleshooting

# Codex project skills
/skills                          # Inspect installed project skills
$camel-start                     # Route Camel-Kit work in Codex
/mcp                             # Verify the three configured MCP servers