goal-chain
Run a linear sequence of goalkeeper goals where the judge gates progression between them. Use when the user invokes /goal-chain "<file>" to start a chain.…
Pause the currently active goalkeeper goal without losing state. Use when the user invokes /goal-pause. The goal can later be resumed with /goal-resume.
$ npx -y skills add bonfire-systems/goalkeeper --skill goal-pause --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/goal-pauseContext preview
The summary Claude sees to decide when to auto-load this skill.
Pause the currently active goalkeeper goal without losing state. Use when the user invokes /goal-pause. The goal can later be resumed with /goal-resume.
name: goal-pause description: Pause the currently active goalkeeper goal without losing state. Use when the user invokes /goal-pause. The goal can later be resumed with /goal-resume.
You are operating the **goal-pause** skill.
Run:
python3 "${CLAUDE_PLUGIN_ROOT}/scripts/gk.py" pausegk handles everything: it refuses cleanly if there is no active goal or the goal is already paused/done/needs_human, and otherwise sets `status = paused`, stamps `paused_at`, and appends the log entry. Relay its output to the user.
**Pause vs park:** pause means "I'll be right back" — the goal keeps the active slot. If the goal is actually waiting on a *person* (credential, consent, decision), use `gk park <slug> --needs "<what>"` instead: it frees the slot so other goals can run, and `gk status` carries the unblock instruction.
Durable contract-driven goal execution for Claude Code. A subagent judge gates completion against an explicit Definition of Done.
Repo: bonfire-systems/goalkeeper
Run a linear sequence of goalkeeper goals where the judge gates progression between them. Use when the user invokes /goal-chain "<file>" to start a chain.…
Stop and archive the currently active goalkeeper goal. Use when the user invokes /goal-clear to abandon or finalize a goal. Files are moved to…
The gate. Reviews the active goalkeeper goal against its definition-of-done and either approves (advance / mark done) or rejects (with a structured fix-list).…
Interactively draft a goalkeeper contract before executing. Use this skill when the user invokes /goal-prep "<rough idea>", or when /goal is called for a slug…
Resume a paused or needs_human goalkeeper goal. Use when the user invokes /goal-resume after they've manually unblocked the goal (e.g. fixed a problem the…
The mission-level supervisor. One level above goals. Reads the user's mission charter and the most-recently-completed goal's artifacts, then decides whether to…