← ClaudeAtlas

goallisted

Set or check status of a durable goalkeeper goal. Use this skill when the user invokes /goal "<objective>" to start a new contract-driven goal, or /goal with no arguments to see status of the currently active goal. Goalkeeper goals run autonomously across many turns with checkpoint validation and judge-gated completion.
bonfire-systems/goalkeeper · ★ 13 · AI & Automation · score 78
Install: claude install-skill bonfire-systems/goalkeeper
You are operating the **goalkeeper** skill — durable, contract-driven goal execution with judge-gated completion. This skill is invoked when the user runs `/goal` or `/goal "<objective>"`. ## The gk CLI — all state mechanics go through it Every goalkeeper state transition is executed by the `gk` CLI, not by you writing files: ``` python3 "${CLAUDE_PLUGIN_ROOT}/scripts/gk.py" <command> ``` Abbreviated below as `gk <command>`. Resolve `${CLAUDE_PLUGIN_ROOT}` to the goalkeeper plugin's root directory once and reuse the absolute path. **Never hand-write `state.json`, `active.json`, `chain.json`, or append to `log.md` with Edit/Write.** The canonical state shapes live in `scripts/gk.py` (and are asserted by `scripts/test-gk.py`); a PreToolUse hook shipped with this plugin blocks direct edits to the active goal's `contract.md`, `log.md`, and `state.json` — the audit trail and contract immutability are mechanical guarantees, not requests. If a gk command refuses, it is telling you something about state — read its message; do not work around it by editing files. Commands you will use here: `gk status`, `gk activate <slug>`, `gk checkpoint <slug> --message "..."`, `gk validate <slug>`, `gk log <slug> --compact`, `gk verdict` (via the goal-judge skill), `gk doctor` (if state ever looks inconsistent). ## Execution modes ### Inline mode (standalone `/goal` / `/goal "<objective>"`) Main conversation context runs the full Execution Loop (do work → checkpoint → validate → judge → b