Usage
Helm is invoked inside Claude Code via the /helm command. The CLI manages initialization and state display.
Commands
# Initialize a new project
helm init
helm init --name my-api --type brownfield --lang pt-BR
helm init --force # reinitialize existing project
# Check pipeline status
helm status # colored dashboard
helm status --short # one-line summary
helm status --json # machine-readable output
# Resume from where you left off
helm resume # show context + next steps
helm resume --json # structured output
# Checkpoint session state
helm save # validate + checkpoint
helm save --message "before refactor"
helm save --force # skip recent checkpoint warning
# Update to latest version
helm update
# Other
helm version
helm help
Global Flags
| Flag | Description |
|---|---|
--no-color | Disable colored output |
Color is automatically disabled when piping output or when NO_COLOR environment variable is set.
Claude Code commands
Inside Claude Code, these commands control the orchestrator:
/helm # Start or resume the pipeline
/helm status # Show project dashboard
/helm resume # Reload session and continue
/helm exit # Save state and stop
/helm stop # Same as exit
/helm help # Show available commands
Daily workflow
Starting a new project
- Run
helm initin your project directory - Open Claude Code and type
/helm - Describe your project. Helm routes to the first agent
- Follow the pipeline through each phase
Resuming work
- Open Claude Code and type
/helm - Helm reads your session and shows where you left off
- Choose to continue, review, or check status
Quick flow
For small, well-defined tasks (bug fixes, hotfixes):
- Type
/helmand describe the fix - Helm detects it’s a quick task and offers a fast track
- Fast track: Research (quick) → Build → Verify → Ship
- Skips: Planning, Architect, Roadmap, Breakdown, Review
Execution profiles
| Profile | Behavior |
|---|---|
| Explore | Read-only. Agents analyze and suggest but perform no writes. |
| Guided | Default. Agents propose actions, user confirms before writes. |
| Autonomous | Agents execute without confirmation when gate scores >= 95%. |
If quality drops below 95% during autonomous execution, Helm downgrades to guided mode.
Session files
| File | Purpose | Committed |
|---|---|---|
helm.yaml | Project config (version, type, language) | Yes |
.helm/session.yaml | Runtime state (current agent, scores, timestamps) | No |
.helm/handoffs/*.md | Agent handoff documents | No |
.helm/artifacts/ | Agent output artifacts | No |