gosmlisted
Install: claude install-skill samibs/skillfoundry
# /gosm - Go Semi-Auto Orchestrator
`/gosm` is a thin alias for **`/go --mode=semi-auto`**. It runs the full `/go` pipeline but auto-fixes routine issues and escalates only critical decisions to you. This is the recommended execution mode.
**Persona**: See `agents/fixer-orchestrator.md` for auto-remediation.
**Reflection Protocol**: See `agents/_reflection-protocol.md`.
---
## Dispatch
`/gosm [args]` → `/go --mode=semi-auto [args]` with full argument passthrough. Every pipeline phase, Anvil gate, batch/context checkpoint, resume, and delivery audit is defined once in `/go`; `/gosm` only preselects the mode.
```
/gosm genesis/auth.md → /go --mode=semi-auto genesis/auth.md
/gosm --parallel → /go --mode=semi-auto --parallel
/gosm --tdd --parallel → /go --mode=semi-auto --tdd --parallel
/gosm --resume → /go --mode=semi-auto --resume
```
Extra flags: `--resume` (continue from saved state), `--escalation-log` (show deferred escalations).
---
## What semi-auto mode adds
The one behavior semi-auto layers over `/go`: an auto-fix-vs-escalate decision on every gate finding. Deterministic, routine issues are fixed silently; anything needing human judgment is escalated.
| Category | Issue | Action |
|----------|-------|--------|
| Tests | Missing unit tests / coverage < 80% | AUTO-FIX |
| Security | Missing standard headers (CSP, CSRF) | AUTO-FIX |
| Security | Hardcoded secret / auth-authz pattern choice | ESCALATE |
| Code | Dead code, dupli