← ClaudeAtlas

gabe-nextlisted

Zero-logic router — a deterministic script over PLAN state dispatches the next gabe command; no LLM decisions, no side effects.
khujta/gabe-suite · ★ 0 · Web & Frontend · score 63
Install: claude install-skill khujta/gabe-suite
# Gabe Next — zero-logic lifecycle router **Usage:** `/gabe-next [--dry-run]` ## Gabe execution contract (E1–E7) This skill runs under the suite execution contract — E1 EVIDENCE · E2 RUN-BEFORE-✅ · E3 NO SILENT DOWNGRADE · E4 REUSE FIRST · E5 STATE SYNC · E6 MISSING ANCHOR = STOP · E7 REPORT WHERE — floors, not ceilings; a skill's own gate may be stricter, never looser. Full text: `../gabe-docs/references/execution-contract.md` (if that file is missing, E6 applies — STOP). Thin router. Reads plan state, finds the next unticked cell, and dispatches to the matching `gabe-*` command. Zero LLM cost. No state writes of its own (except the Current Phase advance defined below). **Design principle.** This command does not execute tasks, reason about them, or modify files. It answers one question: "Given PLAN state, what's the next gabe command to run?" Then it runs that command (or prints it on `--dry-run`). ## Procedure ### Step 0: Validate preconditions 1. `.kdbp/` exists → else print `⚠ No KDBP. Run /gabe-init first.` and exit. 2. `.kdbp/PLAN.md` exists and contains `<!-- status: active -->` → else print `ℹ No active plan. Run /gabe-plan [goal] to create one.` and exit. ### Step 0.5: Deterministic route via `scripts/next.mjs` (preferred path) Run `node <this skill dir>/scripts/next.mjs` (add `--json` for machine output). It reads `.kdbp/PLAN.json` and prints the full decision — prior-row sweep warnings, any advance instruction, PHASE/STATE/NEXT/REASON — implementing Step