Quickstart
Start in D:\. KCC now defaults launches there so every pane begins at the workspace root.
cd /d D:\
kcc env --vault
kcc launch --laptop
kcc
`kcc env --vault` checks local vault credentials without printing secret values. `kcc launch --laptop` opens the KOYDOMUX workspace with a dedicated `koydo` control pane.
KOYDOMUX Launch
kcc launch --laptop
kcc launch --all
kcc launch --focus
kcc launch --backend koydomux --laptop
kcc launch --laptop --dry-run
Use `--dry-run` to inspect pane layout before opening it. Auto mode now selects KOYDOMUX for the native control-pane workflow.
Koydo AI Agent
kcc do "ship the smallest verified fix"
kcc agent "scan this repo and report blockers"
kcc route "fix the failing Vercel preview"
kcc goal set "finish the KCC handoff"
kcc goal go
Use the dedicated `koydo` pane as the command surface. Type normal requests there instead of repeating long `kcc ...` command strings in every worker pane.
Pane Control
kcc orch panes
kcc orch send c2-ui "npm test"
kcc orch broadcast "git status --short"
kcc orch read c2-ui 80
kcc orch spawn worker-1 "kcc do \"review this handoff\" --run"
kcc orch status
Pane agents can report status with `KCC::STATUS pane-id key value` and notify the board with `KCC::NOTIFY pane-id message`.
Handoff Automation
kcc handoffs scan --dir "C:\Users\rober\Obsidian Vault\handoffs;D:\handoffs"
kcc handoffs dispatch --dir "D:\handoffs\kcc_master_orchestrator_goal.md" --limit 3 --max-active 3
kcc handoffs dispatch --run --max-active 3
kcc handoffs reconcile
kcc handoffs status
kcc handoffs watch --limit 3 --max-active 3 --run
`scan` creates idempotent task records. `dispatch` builds or launches pane plans. `watch` continuously scans, reconciles `KCC::STATUS`, and dispatches pending work with a resource cap.