Kanban Foreman Loop Iteration
One unattended pass of the kanban foreman: watch the backlog queue, dispatch
the next operator-picked card to an isolated worker, collect completion
evidence, report. The queue surface is moai todo; the dispatch protocol and
card classes live in the kanban dispatch rule (.claude/rules/moai/workflow/kanban-dispatch.md).
Running unattended
AskUserQuestion is removed from the tool pool while this skill is active —
that is the mechanical guarantee that the loop cannot stop and ask. Anything
that would have been a question becomes a line in the iteration report, and
anything that genuinely needs the operator's decision becomes a blocked card
under Boundaries below.
Deployment: start a session in the project, run bare /loop, then
background the session — loop tasks carry over to the background session and
keep running without a terminal. Esc cancels the pending wakeup of a
waiting loop. A recurring loop expires seven days after creation; restart it
when the board still needs a foreman. Background monitors do not survive a
session resume — the first iteration after a resume re-arms the queue watch.
The session's permission settings must already allow what this loop uses
(queue reads, git inspection, the worker spawn). A permission prompt that
surfaces while unattended stalls the iteration until someone attaches;
pre-approving that surface in project settings is the operator's setup step,
not something this loop can do for itself.
Boundaries (hard)
- The operator admits and picks work. Only backlog items whose state is
already
picked are dispatchable. Never run moai todo add; never run
moai todo next <n> — that mutation is the operator's pick. Never invent,
reword, or reorder cards. An empty queue is a legitimate state: say so and
idle.
- No approval gate is answered on the operator's behalf. When a card's
next step needs a human decision that is not already recorded as made
(plan-to-run kickoff approval, a review severity call, a scope choice),
do not proceed. Leave the card
picked, name it blocked-for-operator in
the report together with the decision it waits on, and move on.
- One write-capable worker at a time. While a worker is in flight the
iteration only reads. Never run two write-capable agents concurrently.
- Every worker runs in its own worktree (
isolation: "worktree" on the
spawn; relative paths in the prompt — the worker's CWD is its worktree
root). Nothing writes to the shared checkout.
- No integration actions. No push, no pull request, no merge, no branch
deletion, no worktree disposal. The card's branch is unpushed and its
worktree is the work's only instance; both stay until the operator
integrates them. The report names the branch and the worktree path.
- Verification is lane-local. The worker runs only the checks its own
change can affect; the full suite belongs to CI. Never spawn background
CPU load — the queue watch below is the only long-running process this
loop arms.
- Completion is read, never trusted. A card advances only on evidence
this iteration actually read.
The iteration
Queue watch. If no backlog monitor is live (first iteration, or after
a resume), arm one persistent Monitor on the queue file:
command:
f=.moai/state/kanban/backlog.json
last=init
while true; do
if [ -f "$f" ]; then cur=$(cksum "$f"); else cur=missing; fi
if [ "$cur" != "$last" ]; then
[ "$last" != init ] && echo "backlog changed"
last=$cur
fi
sleep 5
done
persistent: true
description: backlog queue watch
The queue file is replaced atomically on every mutation, so tools that
follow a single file handle are the wrong shape here; the checksum poll
emits one line per change and costs one tiny read every five seconds. Do
not tighten the interval, and do not arm a second watcher. Each emitted
line, like each scheduled wakeup, is a prompt to run this same idempotent
iteration — an iteration that finds nothing to do ends quickly.
Read the queue. moai todo list --json (lock-free). A missing queue
file is an empty queue, never an error. Records carry id, text,
spec_id, and state (queued | picked | dropped).
Collect before dispatch. If a worker dispatched by an earlier
iteration has returned, read its evidence file first (step 6). If a
worker is still running, end the iteration with a one-line status.
Choose the dispatchable card. The oldest picked item with no live
worker and no recorded blocker. queued items are not yours to pick.
Dispatch one worker with the Agent tool, isolation: "worktree". The
dispatch is a fixed-field address block — a pointer, not a copy, ten
lines at most:
card: <id>
spec: <SPEC-ID> # only when the card carries one
cmd: <the card's work in one line; the phase command when a SPEC is attached>
evidence: .moai/reports/<card-id>/evidence.md
Route the spawn to the agent the card's work matches under the standard
delegation rules; where no specialist matches, a general-purpose spawn
with a domain whitelist. The worker prompt carries the block plus these
standing orders: rename the worktree branch to WT-<slug> (a
descriptive slug, never the card id) first;
implement the card; verify lane-locally; write the evidence file with
decisions, verbatim output tails of the checks run, explicit gaps, and
residual risk; commit by explicit pathspec; never push.
Collect on evidence. When the worker returns, read the evidence file
it names. Advance the card — moai todo done <t-id> — only when the
evidence shows the work complete: verbatim passing output present, gaps
named. A missing, unreadable, or stale evidence file is a gap: the card
stays picked, the report says why, and the card is not re-dispatched
this iteration. Absence of a failure signal is not a pass.
Report. Close with two to six lines: queue summary, what was
dispatched or collected, which evidence was read, blocked cards and the
decisions they wait on. This report is what the operator reads on
reattach — name what you read, not what you were told.
Factory seam (reserved, not implemented)
The single-worker dispatch above is the only mode. Fanning a card out to
numbered factory worker lanes — the multi-lane launcher surface — is
separate work; when the foreman grows that routing, it lands here as a
second dispatch mode chosen per card. Until then this loop spawns one
subagent per card, reads no factory state, and launches no lanes.
Failure handling
Stop the loop (ScheduleWakeup with stop: true), with a one-line reason,
when the loop cannot do its job: the queue file is repeatedly unreadable,
the queue watch cannot be armed, or this skill's own surface is broken. A
transient worker failure is not a loop failure — record it on the card and
let the next iteration decide whether to re-dispatch.
1---2name: moai-kanban-foreman3description: One unattended kanban foreman iteration: watch the backlog queue, dispatch the next operator-picked card to an isolated worker, collect completion evidence on read (not on claims), and report. This is the body the project's loop.md driver invokes each iteration of a bare /loop; it can also be invoked directly to test one cycle by hand.4license: Apache-2.05---6
7# Kanban Foreman Loop Iteration
8
9One unattended pass of the kanban foreman: watch the backlog queue, dispatch
10the next operator-picked card to an isolated worker, collect completion
11evidence, report. The queue surface is `moai todo`; the dispatch protocol and
12card classes live in the kanban dispatch rule (`.claude/rules/moai/workflow/kanban-dispatch.md`).
13
14## Running unattended
15
16`AskUserQuestion` is removed from the tool pool while this skill is active —
17that is the mechanical guarantee that the loop cannot stop and ask. Anything
18that would have been a question becomes a line in the iteration report, and
19anything that genuinely needs the operator's decision becomes a blocked card
20under Boundaries below.
21
22Deployment: start a session in the project, run bare `/loop`, then
23background the session — loop tasks carry over to the background session and
24keep running without a terminal. `Esc` cancels the pending wakeup of a
25waiting loop. A recurring loop expires seven days after creation; restart it
26when the board still needs a foreman. Background monitors do not survive a
27session resume — the first iteration after a resume re-arms the queue watch.
28
29The session's permission settings must already allow what this loop uses
30(queue reads, git inspection, the worker spawn). A permission prompt that
31surfaces while unattended stalls the iteration until someone attaches;
32pre-approving that surface in project settings is the operator's setup step,
33not something this loop can do for itself.
34
35## Boundaries (hard)
36
371. **The operator admits and picks work.** Only backlog items whose state is
38 already `picked` are dispatchable. Never run `moai todo add`; never run
39 `moai todo next <n>` — that mutation is the operator's pick. Never invent,
40 reword, or reorder cards. An empty queue is a legitimate state: say so and
41 idle.
422. **No approval gate is answered on the operator's behalf.** When a card's
43 next step needs a human decision that is not already recorded as made
44 (plan-to-run kickoff approval, a review severity call, a scope choice),
45 do not proceed. Leave the card `picked`, name it blocked-for-operator in
46 the report together with the decision it waits on, and move on.
473. **One write-capable worker at a time.** While a worker is in flight the
48 iteration only reads. Never run two write-capable agents concurrently.
494. **Every worker runs in its own worktree** (`isolation: "worktree"` on the
50 spawn; relative paths in the prompt — the worker's CWD is its worktree
51 root). Nothing writes to the shared checkout.
525. **No integration actions.** No push, no pull request, no merge, no branch
53 deletion, no worktree disposal. The card's branch is unpushed and its
54 worktree is the work's only instance; both stay until the operator
55 integrates them. The report names the branch and the worktree path.
566. **Verification is lane-local.** The worker runs only the checks its own
57 change can affect; the full suite belongs to CI. Never spawn background
58 CPU load — the queue watch below is the only long-running process this
59 loop arms.
607. **Completion is read, never trusted.** A card advances only on evidence
61 this iteration actually read.
62
63## The iteration
64
651. **Queue watch.** If no backlog monitor is live (first iteration, or after
66 a resume), arm one persistent Monitor on the queue file:
67
68 - `command`:
69
70 ```sh
71 f=.moai/state/kanban/backlog.json
72 last=init
73 while true; do
74 if [ -f "$f" ]; then cur=$(cksum "$f"); else cur=missing; fi
75 if [ "$cur" != "$last" ]; then
76 [ "$last" != init ] && echo "backlog changed"
77 last=$cur
78 fi
79 sleep 5
80 done
81 ```
82
83 - `persistent: true`
84 - `description: backlog queue watch`
85
86 The queue file is replaced atomically on every mutation, so tools that
87 follow a single file handle are the wrong shape here; the checksum poll
88 emits one line per change and costs one tiny read every five seconds. Do
89 not tighten the interval, and do not arm a second watcher. Each emitted
90 line, like each scheduled wakeup, is a prompt to run this same idempotent
91 iteration — an iteration that finds nothing to do ends quickly.
92
932. **Read the queue.** `moai todo list --json` (lock-free). A missing queue
94 file is an empty queue, never an error. Records carry `id`, `text`,
95 `spec_id`, and `state` (`queued` | `picked` | `dropped`).
96
973. **Collect before dispatch.** If a worker dispatched by an earlier
98 iteration has returned, read its evidence file first (step 6). If a
99 worker is still running, end the iteration with a one-line status.
100
1014. **Choose the dispatchable card.** The oldest `picked` item with no live
102 worker and no recorded blocker. `queued` items are not yours to pick.
103
1045. **Dispatch one worker** with the Agent tool, `isolation: "worktree"`. The
105 dispatch is a fixed-field address block — a pointer, not a copy, ten
106 lines at most:
107
108 ```
109 card: <id>
110 spec: <SPEC-ID> # only when the card carries one
111 cmd: <the card's work in one line; the phase command when a SPEC is attached>
112 evidence: .moai/reports/<card-id>/evidence.md
113 ```
114
115 Route the spawn to the agent the card's work matches under the standard
116 delegation rules; where no specialist matches, a general-purpose spawn
117 with a domain whitelist. The worker prompt carries the block plus these
118 standing orders: rename the worktree branch to `WT-<slug>` (a
119 descriptive slug, never the card id) first;
120 implement the card; verify lane-locally; write the evidence file with
121 decisions, verbatim output tails of the checks run, explicit gaps, and
122 residual risk; commit by explicit pathspec; never push.
123
1246. **Collect on evidence.** When the worker returns, read the evidence file
125 it names. Advance the card — `moai todo done <t-id>` — only when the
126 evidence shows the work complete: verbatim passing output present, gaps
127 named. A missing, unreadable, or stale evidence file is a gap: the card
128 stays `picked`, the report says why, and the card is not re-dispatched
129 this iteration. Absence of a failure signal is not a pass.
130
1317. **Report.** Close with two to six lines: queue summary, what was
132 dispatched or collected, which evidence was read, blocked cards and the
133 decisions they wait on. This report is what the operator reads on
134 reattach — name what you read, not what you were told.
135
136## Factory seam (reserved, not implemented)
137
138The single-worker dispatch above is the only mode. Fanning a card out to
139numbered factory worker lanes — the multi-lane launcher surface — is
140separate work; when the foreman grows that routing, it lands here as a
141second dispatch mode chosen per card. Until then this loop spawns one
142subagent per card, reads no factory state, and launches no lanes.
143
144## Failure handling
145
146Stop the loop (`ScheduleWakeup` with `stop: true`), with a one-line reason,
147when the loop cannot do its job: the queue file is repeatedly unreadable,
148the queue watch cannot be armed, or this skill's own surface is broken. A
149transient worker failure is not a loop failure — record it on the card and
150let the next iteration decide whether to re-dispatch.