← ClaudeAtlas

gomalisted

/goma - Go Mode Autonomous
samibs/skillfoundry · ★ 10 · AI & Automation · score 73
Install: claude install-skill samibs/skillfoundry
# /goma - Go Mode Autonomous `/goma` is a thin alias for **`/go --mode=autonomous`**. It runs the full `/go` pipeline hands-off: escalations are auto-resolved where safe and otherwise deferred and logged for post-run review. Use only when you trust the PRDs. **Persona**: See `agents/fixer-orchestrator.md` for auto-remediation. **Reflection Protocol**: See `agents/_reflection-protocol.md`. --- ## Dispatch `/goma [args]` → `/go --mode=autonomous [args]` with full argument passthrough. ``` /goma genesis/auth.md → /go --mode=autonomous genesis/auth.md /goma --parallel → /go --mode=autonomous --parallel /goma --resume → /go --mode=autonomous --resume /goma --rollback → roll back the last autonomous run ``` --- ## What autonomous mode adds **A clean git working tree is REQUIRED** (unlike semi-auto). Autonomous rollback depends on it, and rollback must be reliable when the developer is not watching. Pre-flight — blocks execution if any item is unmet: - All PRDs pass critical validation - No interrupted state exists (or `--resume` was chosen) - **Git working tree is clean** — autonomous rollback depends on it - State machine initialized with a rollback manifest - Escalation log cleared or archived from the previous run If the tree is dirty, autonomous mode is blocked with instructions to commit or stash first. During the run, every escalation is deferred and written to the escalation log for review rather than interrupting executio