magi/run.rs
1//! Run state: what happened, where it is stored, and how a run is resumed.
2//!
3//! Every node writes its result into [`RunState`] and the whole struct is
4//! flushed to `run.json` before the next node starts. That is what makes a run
5//! resumable: a competition can take an hour, and dying in review round four
6//! should not throw away three implementations, nine judge reads and a
7//! deliberation.
8//!
9//! Patches and raw agent transcripts are *not* in `run.json` — they live beside
10//! it under `artifacts/`, so the state file stays small enough to read by hand.
11use std::collections::BTreeMap;
12use std::path::{Path, PathBuf};
13
14use anyhow::{Context as _, Result, bail};
15use jiff::{Timestamp, Zoned};
16use serde::{Deserialize, Serialize};
17
18use crate::agent::SeatState;
19use crate::blind::Leak;
20use crate::config::{Config, MergeMode};
21use crate::verdict::{Finding, Rejection, ReviewVote, Severity};
22
23/// On-disk format version. Bumped when a field changes meaning, so a resumed
24/// run never half-reads a state file written by a different magi.
25///
26/// 2: added `RunStatus::Stalled`, `RunState::quota` (rate-limit losses), and
27/// the quorum fields on `Tally`. `RunState::load` already fails loudly and
28/// clearly on a schema mismatch; an old `run.json` from schema 1 now says so
29/// instead of silently half-reading.
30///
31/// 3: added `RunState::judge_skipped`. A solo candidate makes `judge` write
32/// only an event, leaving `judgements` empty forever — indistinguishable from
33/// "not yet judged" on every later reentry, which is what let `judge` re-run
34/// on a finished run and clobber its status back to `Judging`. The flag is
35/// the missing record of the fact that judging was skipped on purpose.
36///
37/// Also 3: a single-viable-candidate tally records `Tally::judges` as `0` and
38/// fills `Tally::uncontested`, instead of leaving the full roster size sitting
39/// next to a panel that never sat. A schema-2 record keeps reading as "0 of 3
40/// judges present" forever, because a tally is computed once and never
41/// recomputed on resume; the bump keeps that stale reading from being mixed
42/// with the new meaning.
43///
44/// 4: added `ReviewRound::progressed`. `graph::STAGNANT_LIMIT` counts
45/// consecutive rounds with `progressed == false` to decide whether the
46/// review loop should give up early, and a schema-3 record's default
47/// `false` would misreport a round that, at the time, actually committed a
48/// real diff — the field simply did not exist yet to say so. Without the
49/// bump, resuming an old multi-round review could spuriously trip the
50/// stagnation check on rounds that were never stagnant.
51///
52/// 5: added `RunStatus::Landing`. A run inside [`crate::land`]'s post-merge
53/// loop used to carry whatever status `merge` set before calling it forward
54/// unchanged - `Merged`, even while still watching CI or waiting on the
55/// owner's approval - which is also the one status [`RunStatus::resumable`]
56/// treats as finished. A daemon that gave this run's slot back to poll
57/// something else while an approval was outstanding, or one that simply
58/// crashed mid-land, had no way to tell "still landing" from "actually
59/// merged" and would either restart the whole competition or leave the run
60/// stuck reading as done. A schema-4 record has no notion of `Landing` at
61/// all, so this is a meaning a resumed old run cannot be guessed into rather
62/// than a value it can default to - hence the bump, not a `#[serde(default)]`.
63///
64/// 6: a deferred e2e is represented by an empty outcome list plus
65/// `ReviewRound::e2e_deferred`. Schema 5 treated that same empty list as an
66/// unconfigured, successful check, so schema-5 records are migrated with the
67/// old (not-deferred) meaning while older binaries reject schema-6 records.
68///
69/// 7: added `RunState::gate_ran`. An empty `RunState::gate` used to carry two
70/// meanings at once — "never attempted, or the last attempt was
71/// resource-blocked" (`graph::Runner::gate`'s retry case) and "attempted,
72/// zero commands configured, vacuously passed" (a repo with no
73/// `verify.gate`) — and nothing told them apart. `graph::Runner::merge`
74/// therefore read the second case as the first and refused forever: a
75/// review-only run with no gate commands configured reached `Gating` and
76/// then could never leave it. A schema-6 record's non-empty `gate` is
77/// migrated to `gate_ran = true` (a recorded attempt, real or historical,
78/// should not be spent again); an empty one migrates to `gate_ran = false`
79/// and is simply re-attempted by the next `gate()` call, which self-heals
80/// instantly for the zero-commands case.
81///
82/// 8: `ReviewRound::verified_head` used to be `None` for the overwhelming
83/// majority of rounds — every ordinary round that ran e2e against its own
84/// `head` in the main review loop never set it at all, leaving only the
85/// rare catch-up-on-a-different-commit case populated. A reader (a review
86/// prompt, `magi show`, the web UI) had no field to ask "which commit did
87/// this round's `e2e` actually check" and fell back to assuming it was
88/// always `head`, which is also what let a stale round's red output get
89/// quoted to a later round's reviewers as if it were about their patch, not
90/// an earlier one (see `ReviewRound::verification_summary`, which now exists
91/// so nowhere else has to guess). `verified_head` is now set whenever `e2e`
92/// held a real attempt (`E2eStatus::Passed`/`Failed`), always naming the
93/// commit actually checked instead of only the divergent case, and
94/// `ReviewRound::verified_at` is new alongside it. A schema-7 round's own
95/// unconditional main-loop check was always against `head` whether or not
96/// this field said so, so a `None` with a non-empty `e2e` migrates to
97/// `Some(head)` — a reconstruction of a fact that was always true, not a
98/// guess. `verified_at` has no historical value to reconstruct and stays
99/// `None`, which reads through `verification_summary` as "checked at:
100/// unknown" — an honest gap, not a fabricated time.
101/// 9: added [`RunState::operator_fixes`] — one record per `magi fix`
102/// invocation, routing specific, already-recorded findings to a fixer as a
103/// targeted, out-of-band fix outside the normal round sequence. Kept in a
104/// channel of its own rather than folded into [`ReviewRound`], because a
105/// reviewer's own severity and vote (copied verbatim onto
106/// [`OperatorFixFinding`]) must never be rewritten to look like the operator
107/// manufactured a blocking verdict — see `graph::Runner::fix_selected`. A
108/// schema-8 record has no operator-fix history at all, and
109/// `#[serde(default)]` reads an empty list as exactly that: "none happened",
110/// not an unknown gap. Nothing about an existing field's meaning changes.
111///
112/// 10: added `RunStatus::VerifiedNoop` and `Candidate::verified_noop`. Before
113/// this, an implementer that correctly concluded (with evidence) that a
114/// task's request was already satisfied elsewhere had no way to say so: the
115/// run ended the same way as one where every candidate simply failed to
116/// write anything — `after_implement` bailing with "no candidate produced a
117/// change; nothing to judge" and the run settling as a plain `Failed`. That
118/// conflated two very different facts (investigation run 391f's audit is
119/// what surfaced it: two attempts that had, correctly, found their fix
120/// already on `main`). A schema-9 record has no notion of either the new
121/// status or field, so a `VerifiedNoop` value is a meaning that cannot be
122/// reconstructed from an old record — hence the bump, not a
123/// `#[serde(default)]` for the status. `Candidate::verified_noop` alone
124/// *does* default-read as `None` on an old record, which is the honest
125/// reading: a run written before this schema never made the claim.
126///
127/// The report task 391f itself was raised from also named `6c5e`, `8df3` and
128/// `e9ce` as three more tasks whose implement wave ended the same
129/// diff-zero way, and the investigation traced all three — they do not
130/// share one cause.
131///
132/// `6c5e` and `8df3` are the same already-landed pattern as `391f`, not a
133/// coincidence: all three were re-queued together by a same-day audit of
134/// `done`-but-unlanded magi tasks (queue talk `20260912-115153-7216`,
135/// 2026-09-12 02:51–04:24), which found 17 magi tasks marked `done` with no
136/// merge to show for it and re-queued 16 of them, `6c5e` (a fix for the
137/// owner's `magi ask --thread` back-and-forth) and `8df3` (release
138/// automation) included. A second, same-day audit (talk
139/// `20260912-222053-07fe`, 13:20–13:36) then found 12 of those re-queued
140/// tasks — `391f`, `6c5e` and `8df3` among them — already merged by another
141/// route, and the owner had them deleted (`magi task rm`); `391f` alone
142/// survived because a daemon still held its run at the moment of deletion,
143/// which is the only reason any record of this group still exists to audit.
144/// Quoted directly from that second audit's own turn (talk `07fe`, so this
145/// reads without needing access to that talk store), naming both by id:
146///
147/// > 12件がマージ済み(対応不要)、3件が未実装(妥当)、2件が部分実装(要確認)でした。
148/// > **マージ済み → hold/rmを推奨:** 6c5e, 1ddc, fcf5, e25b, cea2, 391f, 3202,
149/// > b0a1, 5365, af85, 9f26, 8df3
150///
151/// — followed by the owner answering "削除!" and the agent confirming "11件
152/// 削除完了。391f はいま実行中のdaemonが掴んでいて削除できませんでした."
153/// `git log` independently confirms both fixes: the ask-back feature `6c5e`
154/// wanted landed as `f0df474` ("let the owner ask back on a question...",
155/// #93) on 2026-09-06, and the release-bump automation `8df3` wanted landed
156/// as `61005dd`/`bedd925` (open a release-bump PR on merge) on 2026-09-07
157/// and `116fcdc` (proportional version bump, #108) on 2026-09-08 — all
158/// before the 09-12 requeue. No run record survives the deletion for either
159/// task, so this schema's evidence is the audit transcript plus the
160/// independently re-checked `git log`, not a `run.json`.
161///
162/// `e9ce` is not that pattern at all, and is the reason the adoption guard
163/// below is all-or-nothing rather than "any candidate said so": its task
164/// asked an implementer to merge the real repository's `main` and cut a
165/// GitHub release — a destructive, out-of-worktree operation `AGENTS.md`
166/// names explicitly as not something to hand to an unattended candidate.
167/// Both of its runs (`20260912-053352-49ad`, `20260912-062629-bab1`)
168/// correctly refused, filed `magi ask` (questions `6196`, `6c9a`), and ended
169/// with an empty diff only because no answer arrived before the implement
170/// node's timeout — `49ad` looped `magi ask --wait` in the foreground for
171/// roughly 50 minutes as instructed before the timeout cut it off; `bab1`
172/// ended its turn moments after filing its question without ever actually
173/// blocking on the wait, a separate protocol slip this schema change does
174/// not attempt to fix. `49ad`'s own `candidates[0].summary` (quoted here
175/// because both records predate schema 10 and, separately, predate a
176/// still-unrelated struct change that already makes today's `magi show`
177/// refuse to parse either of them — `unknown field 'planner'` — so this is
178/// read straight from `run.json` on disk, not through that command):
179///
180/// > タスクの内容(READY 状態の run を実リポジトリの main に `merge --no-ff`
181/// > する、GitHub Release を作る)を精査した結果、これは全てこのワーカーの
182/// > worktree の外にある実リポジトリと GitHub 上の共有状態に対する不可逆な
183/// > 操作であり […] 私自身の運用ルール「Work only inside this worktree.
184/// > Nothing outside it is yours.」と正面から矛盾すると判断しました。
185///
186/// Neither candidate's reply carries the
187/// `NO CHANGE NEEDED` marker below, so both runs correctly stay `Failed`
188/// under this schema, not `VerifiedNoop`: a run blocked on an unanswered
189/// authorization question is not a verified no-op, and reading the two
190/// alike is exactly the misclassification the guard's per-candidate and
191/// whole-run conditions exist to refuse.
192pub const SCHEMA: u32 = 10;
193
194/// Where a run got to.
195#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
196#[serde(rename_all = "snake_case")]
197pub enum RunStatus {
198 /// Worktrees being prepared.
199 Prep,
200 /// Candidates being implemented.
201 Implementing,
202 /// Judges ranking blind.
203 Judging,
204 /// Judges deliberating after a split.
205 Deliberating,
206 /// Final votes being collected privately.
207 Voting,
208 /// Winner in the review + verification loop.
209 Reviewing,
210 /// Gate commands running. Transient: `graph::Runner::gate` and
211 /// `graph::Runner::merge` always move a run on from here, whether or not
212 /// any gate commands are configured — see [`RunState::gate_status`] and
213 /// `SCHEMA`'s doc for schema 7, which fixed a repo with an empty
214 /// `verify.gate` stranding a review-only run in `Gating` forever.
215 Gating,
216 /// Inside [`crate::land`]'s post-merge loop: watching CI, running a fix
217 /// round, rebasing onto a moved base, or waiting on the owner's merge
218 /// approval. A run parked here while an approval is outstanding has
219 /// handed its daemon slot back — see [`crate::daemon`] — and resumes
220 /// through exactly this status, not a fresh competition.
221 Landing,
222 /// Winner merged.
223 Merged,
224 /// Winner passed the gate; merge was not requested.
225 Ready,
226 /// The judgement did not gather enough judges (e.g. rate limiting took out
227 /// seats), so the verdict is not trustworthy. The run stopped and kept its
228 /// work so it can be resumed or folded — it must never be confused with a
229 /// healthy `Ready`.
230 Stalled,
231 /// Review rounds exhausted with findings still open, or the gate failed.
232 Blocked,
233 /// The graph could not complete.
234 Failed,
235 /// Every candidate wrote nothing, and every one of them said why in a way
236 /// that survived [`crate::graph::Runner`]'s adoption guard: a clean CLI
237 /// exit, an actually-empty tree, no command left with an unconfirmed
238 /// exit status, and non-empty evidence. Distinct from `Failed` on
239 /// purpose — see `SCHEMA`'s doc for schema 10 — because the two read
240 /// identically to an operator glancing at a card ("nothing happened")
241 /// while meaning opposite things: one is an agent that could not do the
242 /// work, the other is an agent that checked and the work was already
243 /// done. Settles the task through [`crate::queue::Task::handed_off`], not
244 /// [`crate::queue::Task::fail`]: a human still has to look — the claim is
245 /// unverified by magi itself — and `Held` (not `Failed`-and-requeued)
246 /// means nothing retries the task unattended on the same unconfirmed
247 /// claim while that look is pending.
248 VerifiedNoop,
249}
250
251impl RunStatus {
252 /// Is this a terminal state?
253 pub fn done(self) -> bool {
254 matches!(
255 self,
256 Self::Merged
257 | Self::Ready
258 | Self::Stalled
259 | Self::Blocked
260 | Self::Failed
261 | Self::VerifiedNoop
262 )
263 }
264
265 /// The name this status is written and shown under, matching the
266 /// `snake_case` serde spelling so a log line, an error message and the
267 /// JSON a phone reads all say the same word.
268 pub fn as_str(self) -> &'static str {
269 match self {
270 Self::Prep => "prep",
271 Self::Implementing => "implementing",
272 Self::Judging => "judging",
273 Self::Deliberating => "deliberating",
274 Self::Voting => "voting",
275 Self::Reviewing => "reviewing",
276 Self::Gating => "gating",
277 Self::Landing => "landing",
278 Self::Merged => "merged",
279 Self::Ready => "ready",
280 Self::Stalled => "stalled",
281 Self::Blocked => "blocked",
282 Self::Failed => "failed",
283 Self::VerifiedNoop => "verified_noop",
284 }
285 }
286
287 /// Label for a human-facing listing or report — the same word as
288 /// [`Self::as_str`] except where the machine spelling would read harsher
289 /// than the state actually is. `VerifiedNoop` is the one case: its own
290 /// `as_str` exists for logs, JSON and event messages, none of which
291 /// should quietly grow a second vocabulary, but a bare "verified_noop" in
292 /// a report reads like an error code, not the qualified, evidence-backed
293 /// claim it actually is.
294 pub fn display_label(self) -> &'static str {
295 match self {
296 Self::VerifiedNoop => "agent-verified no-op",
297 other => other.as_str(),
298 }
299 }
300
301 /// Can this run be carried on from where it stopped?
302 ///
303 /// Everything except a finished run and a failed one. `execute` skips
304 /// nodes already recorded, so re-entering is cheap wherever the run
305 /// stopped, and the alternative is always a fresh competition against
306 /// work that already exists.
307 ///
308 /// - `Stalled` re-asks only the seats whose absence collapsed the panel,
309 /// keeping the candidates that were already paid for.
310 /// - `Blocked` re-enters the review loop against a branch that is built.
311 /// - **A non-terminal status** means the run was interrupted: a parked
312 /// run waiting for its upgrade, or one whose daemon was killed. This
313 /// used to be excluded, which left run 4043 stuck at `reviewing` with
314 /// the deck telling the operator it could not be resumed - the one
315 /// state where resuming is the only sensible answer.
316 ///
317 /// `Failed` does not qualify: the graph could not complete and there is
318 /// no established point to continue from. Nor does a finished run, whose
319 /// answer is a new competition. Nor does `VerifiedNoop`: every candidate
320 /// already agreed nothing belongs in this worktree, and resuming would
321 /// only re-ask the same question — the answer is for a human to check
322 /// the evidence, not for the graph to run again.
323 ///
324 /// Whether anything is *already* driving the run is a separate question,
325 /// answered by `daemon::is_working_on` at the callers that need it.
326 pub fn resumable(self) -> bool {
327 !matches!(
328 self,
329 Self::Merged | Self::Ready | Self::Failed | Self::VerifiedNoop
330 )
331 }
332}
333
334/// One candidate implementation.
335#[derive(Debug, Clone, Serialize, Deserialize)]
336pub struct Candidate {
337 /// Position in the implementer list.
338 pub index: usize,
339 /// Blind label as presented to judges.
340 pub label: char,
341 /// Which agent wrote it. Recorded for the stats tables, never shown to a
342 /// judge.
343 pub agent: String,
344 /// Branch, named after the label so judges can inspect it without learning
345 /// the author.
346 pub branch: String,
347 /// Worktree path.
348 pub worktree: PathBuf,
349 /// Sanitized author summary.
350 #[serde(default)]
351 pub summary: String,
352 /// `git diff --stat`.
353 #[serde(default)]
354 pub stat: String,
355 /// Files touched.
356 #[serde(default)]
357 pub files: usize,
358 /// Commits ahead of base.
359 #[serde(default)]
360 pub commits: usize,
361 /// True when the agent produced no change at all.
362 #[serde(default)]
363 pub empty: bool,
364 /// Why this candidate is not in the running.
365 #[serde(default)]
366 pub failed: Option<String>,
367 /// The evidence this candidate gave for writing no change on purpose —
368 /// the `NO CHANGE NEEDED:` marker `prompt::implement`'s reply format
369 /// documents, verbatim. `Some` only when [`crate::graph`]'s adoption
370 /// guard accepted the claim: the CLI exited cleanly, the tree really is
371 /// empty, no command in the reply was left with an unconfirmed exit
372 /// status, and the evidence itself is non-empty. A candidate that wrote
373 /// nothing and said nothing about why — the ordinary empty loss — always
374 /// reads `None` here, same as one written before schema 10 ever existed.
375 #[serde(default)]
376 pub verified_noop: Option<String>,
377 /// Wall-clock time for the implementation.
378 #[serde(default)]
379 pub duration_ms: u64,
380 /// Whether the worktree has been folded away.
381 #[serde(default)]
382 pub folded: bool,
383}
384
385impl Candidate {
386 /// Can this candidate be judged?
387 pub fn viable(&self) -> bool {
388 self.failed.is_none() && !self.empty
389 }
390}
391
392/// One judge's independent ranking.
393#[derive(Debug, Clone, Serialize, Deserialize)]
394pub struct Judgement {
395 /// Judge seat number, 1-based.
396 pub judge: usize,
397 /// Seat key.
398 pub seat: String,
399 /// Agent occupying the seat.
400 pub agent: String,
401 /// Best-first labels.
402 #[serde(default)]
403 pub ranking: Vec<char>,
404 /// Per-label justification.
405 #[serde(default)]
406 pub reasons: BTreeMap<String, String>,
407 /// Self-reported confidence.
408 #[serde(default)]
409 pub confidence: Option<u8>,
410 /// Order the candidates were presented in, as candidate indices.
411 #[serde(default)]
412 pub order: Vec<usize>,
413 /// Why this judge has no ranking.
414 #[serde(default)]
415 pub failed: Option<String>,
416 /// Wall-clock time.
417 #[serde(default)]
418 pub duration_ms: u64,
419}
420
421/// One judge's turn in a deliberation round.
422#[derive(Debug, Clone, Serialize, Deserialize)]
423pub struct DeliberationTurn {
424 /// Judge seat number, 1-based.
425 pub judge: usize,
426 /// Agent occupying the seat.
427 pub agent: String,
428 /// The argument, as written.
429 pub body: String,
430 /// Where the judge stood at the end of the turn.
431 #[serde(default)]
432 pub tentative: Option<char>,
433}
434
435/// A deliberation round.
436#[derive(Debug, Clone, Serialize, Deserialize)]
437pub struct DeliberationRound {
438 /// 1-based round number.
439 pub round: usize,
440 /// Turns, in the order they were taken.
441 pub turns: Vec<DeliberationTurn>,
442}
443
444/// A final vote, collected privately.
445#[derive(Debug, Clone, Serialize, Deserialize)]
446pub struct VoteRecord {
447 /// Judge seat number, 1-based.
448 pub judge: usize,
449 /// Agent occupying the seat.
450 pub agent: String,
451 /// The vote.
452 #[serde(default)]
453 pub vote: Option<char>,
454 /// Why.
455 #[serde(default)]
456 pub reason: String,
457 /// Did this judge move from its initial first choice?
458 #[serde(default)]
459 pub changed: bool,
460}
461
462/// A seat that was taken out by a CLI rate limit / quota, recorded so a run
463/// whose panel collapsed does not masquerade as a healthy one.
464#[derive(Debug, Clone, Serialize, Deserialize)]
465pub struct QuotaLoss {
466 /// Seat key, e.g. `judge-1` or `review-2`.
467 pub seat: String,
468 /// Node that was running, e.g. `judge`, `vote`, `review`.
469 pub node: String,
470 /// When the CLI reported the limit.
471 pub at: Timestamp,
472 /// Reset hint if the CLI printed one, free text.
473 #[serde(default)]
474 pub reset: Option<String>,
475}
476
477/// The mechanical count.
478#[derive(Debug, Clone, Serialize, Deserialize)]
479pub struct Tally {
480 /// First-choice votes per label.
481 pub first_choice: BTreeMap<char, usize>,
482 /// Borda points from the initial rankings, used only to break a tie.
483 pub borda: BTreeMap<char, usize>,
484 /// The winning label.
485 pub winner: char,
486 /// How many judges produced a usable ranking. A panel of one is not a
487 /// consensus and must not be reported as a split.
488 #[serde(default)]
489 pub rankings: usize,
490 /// Did every judge's *initial* first choice agree?
491 pub unanimous_initial: bool,
492 /// Was deliberation run?
493 pub deliberated: bool,
494 /// Judges who moved between their initial ranking and their final vote.
495 pub changed_votes: usize,
496 /// Did the final votes agree?
497 pub unanimous_final: bool,
498 /// How the tie was broken, when it had to be.
499 #[serde(default)]
500 pub tie_break: Option<String>,
501 /// Configured judge count — the size of the full panel. `0` when no
502 /// panel was asked (see `uncontested`), not the roster size a panel that
503 /// never sat would have had.
504 #[serde(default)]
505 pub judges: usize,
506 /// Judges who actually contributed to the decision (not taken out by a
507 /// rate limit and producing a usable rank or vote).
508 #[serde(default)]
509 pub present: usize,
510 /// How many judges are required for a trustworthy verdict. Chosen as a
511 /// strict majority (`judges / 2 + 1`): a verdict backed by a minority must
512 /// never be presented as a healthy one, while a bare majority is still
513 /// real signal. A one-candidate run needs no quorum.
514 #[serde(default)]
515 pub quorum: usize,
516 /// `present >= quorum`, or no quorum was required.
517 #[serde(default)]
518 pub met_quorum: bool,
519 /// Why no panel was asked, when none was: a single viable candidate, or
520 /// a review-only run that never competed. `None` when judges actually
521 /// ranked and voted — including when too few of them survived to reach
522 /// quorum, which is a collapse and must keep reading as one.
523 #[serde(default)]
524 pub uncontested: Option<String>,
525}
526
527/// One reviewer's report in a round.
528#[derive(Debug, Clone, Serialize, Deserialize)]
529pub struct ReviewRecord {
530 /// Reviewer seat number, 1-based.
531 pub reviewer: usize,
532 /// Agent occupying the seat.
533 pub agent: String,
534 /// Reviewer prose.
535 #[serde(default)]
536 pub summary: String,
537 /// Findings, with magi-assigned ids.
538 #[serde(default)]
539 pub findings: Vec<Finding>,
540 /// This seat's initial vote. `None` on a record predating votes, exactly
541 /// like a round that genuinely had none cast — never a stand-in for a
542 /// vote that was lost.
543 #[serde(default)]
544 pub vote: Option<ReviewVote>,
545 /// Why this reviewer produced nothing.
546 #[serde(default)]
547 pub failed: Option<String>,
548 /// Wall-clock time.
549 #[serde(default)]
550 pub duration_ms: u64,
551 /// How many times this seat was asked before it settled — 0 for a first
552 /// answer, N after N nudges (`ask_json_wave`'s retry loop). Read this
553 /// together with [`Self::failed`], never `failed` alone: `failed: Some(_)`
554 /// with `attempts == 0` is a seat that never answered at all, while
555 /// `failed: None` with `attempts > 0` is one that only came back after a
556 /// nudge — recovered, not silent — and the two must not look the same in
557 /// history. A record written before this field existed defaults to `0`,
558 /// which under-reports a pre-existing retry rather than inventing one;
559 /// see `ask_json_wave`'s own doc for where this is filled in.
560 #[serde(default)]
561 pub attempts: usize,
562}
563
564/// One seat's revote during a round's reconsideration (see
565/// [`ReviewRound::reconsideration`]).
566#[derive(Debug, Clone, Serialize, Deserialize)]
567pub struct ReviewRevoteRecord {
568 /// Reviewer seat number, 1-based.
569 pub reviewer: usize,
570 /// Agent occupying the seat.
571 pub agent: String,
572 /// The revote. `None` when the seat did not answer.
573 #[serde(default)]
574 pub vote: Option<ReviewVote>,
575 /// Why.
576 #[serde(default)]
577 pub reason: String,
578 /// Why this seat produced no revote.
579 #[serde(default)]
580 pub failed: Option<String>,
581}
582
583/// The fixer's response to a round.
584#[derive(Debug, Clone, Serialize, Deserialize)]
585pub struct FixRecord {
586 /// Agent that applied the fixes.
587 pub agent: String,
588 /// Finding ids acted on.
589 #[serde(default)]
590 pub addressed: Vec<String>,
591 /// Findings declined, with reasons.
592 #[serde(default)]
593 pub rejected: Vec<Rejection>,
594 /// What changed.
595 #[serde(default)]
596 pub notes: String,
597 /// Did the fix produce a commit?
598 #[serde(default)]
599 pub committed: bool,
600 /// Why the fix step produced nothing.
601 #[serde(default)]
602 pub failed: Option<String>,
603 /// Wall-clock time.
604 #[serde(default)]
605 pub duration_ms: u64,
606 /// How the fixer's own seat was made to answer when its CLI turn ended
607 /// cleanly but without an addressed/rejected report — see
608 /// [`graph::Runner::continue_fix_report`]. `None` for a record written
609 /// before this existed, which must read as "unknown", not as
610 /// [`ContinuationOutcome::NotNeeded`]: an old run really may have hit
611 /// this exact gap and simply had no mechanism to say so.
612 #[serde(default)]
613 pub continuation: Option<ContinuationRecord>,
614}
615
616/// How a node recovered — or failed to recover — a structured report after
617/// the CLI's own turn ended cleanly (a usable, non-empty, exit-0 reply)
618/// without it. A clean CLI turn is not the same fact as the node's own work
619/// being done — see the `fix` node's `continue_fix_report`, which is what
620/// produces this.
621#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
622pub enum ContinuationOutcome {
623 /// The first reply already carried the report; nothing was resumed.
624 NotNeeded,
625 /// A follow-up call in the same session recovered the report.
626 Resumed,
627 /// The continuation budget was spent without ever recovering it.
628 Exhausted,
629 /// A continuation attempt hit the CLI's rate limit; not retried further
630 /// — a quota fails the same way again immediately.
631 QuotaLost,
632 /// No session was left to resume into, so nothing was attempted.
633 NoSession,
634}
635
636/// Cost and outcome of one node's attempt to recover a missing report by
637/// resuming its own seat.
638#[derive(Debug, Clone, Copy, Serialize, Deserialize)]
639pub struct ContinuationRecord {
640 /// Follow-up calls made to the same seat. `0` when the outcome is
641 /// [`ContinuationOutcome::NotNeeded`] or [`ContinuationOutcome::NoSession`].
642 pub attempts: usize,
643 /// Wall-clock time spent on those follow-up calls, summed — not counting
644 /// the original call whose reply this is recovering from.
645 pub cumulative_wait_ms: u64,
646 /// What ended the loop.
647 pub outcome: ContinuationOutcome,
648}
649
650impl ContinuationRecord {
651 /// The report was already there on the first try.
652 pub fn not_needed() -> Self {
653 Self {
654 attempts: 0,
655 cumulative_wait_ms: 0,
656 outcome: ContinuationOutcome::NotNeeded,
657 }
658 }
659}
660
661/// What happened to one operator-selected finding after the fixer ran, as
662/// part of an [`OperatorFixRequest`].
663#[derive(Debug, Clone, Default, PartialEq, Serialize, Deserialize)]
664#[serde(rename_all = "snake_case")]
665pub enum OperatorFixOutcome {
666 /// The request has not run yet, or never got far enough to report.
667 #[default]
668 Pending,
669 /// The fixer's adoption report named this finding as addressed.
670 Addressed,
671 /// The fixer's adoption report declined it, with an argument.
672 Rejected {
673 /// The fixer's own reason.
674 why: String,
675 },
676 /// The fixer never delivered a usable adoption report at all — a
677 /// dropped stream, a quota hit, or a continuation budget spent without
678 /// recovering one (see `graph::Runner::continue_fix_report`). Distinct
679 /// from `Rejected`, which needs an argument this never produced, and
680 /// never written back as "addressed" or silently left `Pending` — a
681 /// gap in the report is its own outcome, not evidence either way about
682 /// the finding.
683 Unreported,
684}
685
686/// One finding an operator selected for [`OperatorFixRequest`], with the
687/// provenance a reviewer originally gave it, copied here verbatim.
688///
689/// Severity and vote are snapshots, never recomputed and never treated as
690/// blocking just because an operator picked the finding — only
691/// [`Severity::blocks`] on the original [`ReviewRecord`] decides that. This
692/// type exists so an operator's selection is an auditable *addition* to the
693/// record, not a rewrite of what a reviewer actually said.
694#[derive(Debug, Clone, Serialize, Deserialize)]
695pub struct OperatorFixFinding {
696 /// Finding id, e.g. `R2-1-3`.
697 pub id: String,
698 /// Severity as the reviewer recorded it.
699 pub severity: Severity,
700 /// The reviewer seat's overall vote for the round this finding came
701 /// from, if one was cast.
702 #[serde(default)]
703 pub reviewer_vote: Option<ReviewVote>,
704 /// Review round the finding was raised in.
705 pub round: usize,
706 /// That round's own head — the commit the finding was actually raised
707 /// against, used for the freshness check against the branch's current
708 /// head at request time.
709 pub round_head: String,
710 /// Reviewer seat number, 1-based.
711 pub reviewer: usize,
712 /// Agent occupying that seat.
713 pub agent: String,
714 /// File the finding concerns.
715 #[serde(default)]
716 pub file: Option<String>,
717 /// Line the finding concerns.
718 #[serde(default)]
719 pub line: Option<u32>,
720 /// One-line summary.
721 pub title: String,
722 /// The argument.
723 #[serde(default)]
724 pub detail: String,
725 /// What happened to this finding after the fixer ran.
726 #[serde(default)]
727 pub outcome: OperatorFixOutcome,
728}
729
730/// One `magi fix` invocation: the operator's own record of which
731/// already-recorded findings they routed to a fixer, why, and what came
732/// back. See [`SCHEMA`]'s doc for schema 9 on why this is a channel of its
733/// own rather than a field on [`ReviewRound`].
734#[derive(Debug, Clone, Serialize, Deserialize)]
735pub struct OperatorFixRequest {
736 /// When `magi fix` was invoked.
737 pub requested_at: Timestamp,
738 /// The operator's own reasoning. Required and never empty at the CLI —
739 /// the audit trail this feature exists for.
740 pub reason: String,
741 /// The findings selected, each with its own provenance and outcome.
742 pub findings: Vec<OperatorFixFinding>,
743 /// The branch's head at the moment this request started executing.
744 pub head_at_request: String,
745 /// Did the operator pass `--allow-stale`?
746 pub allow_stale: bool,
747 /// Did any selected finding's own `round_head` differ from
748 /// `head_at_request`? Kept distinct from `allow_stale` — flipping that
749 /// flag does not retroactively make a request that was actually fresh
750 /// read as stale, or the reverse.
751 pub stale: bool,
752 /// The fixer's own attempt, once dispatched.
753 #[serde(default)]
754 pub fix: Option<FixRecord>,
755 /// Head after the fixer's commit, when it produced one.
756 #[serde(default)]
757 pub result_head: Option<String>,
758 /// The review-only run opened to re-verify the change, when one was
759 /// actually committed. `None` when nothing changed, so there was
760 /// nothing new to re-review — never left implicit as "not gotten to
761 /// yet".
762 #[serde(default)]
763 pub follow_up_review_run: Option<String>,
764}
765
766/// A command a seat's own CLI reported running, kept for `magi show` and for
767/// telling "this seat's turn ended" apart from "the process it started is
768/// done" — see `agent::CommandEvidence`, which is the only source this is
769/// ever built from. Never something magi polled or supervised; a command the
770/// CLI never reported finishing (or a CLI this crate has no adapter for at
771/// all) simply has no entry here, which must read as "unknown", not as
772/// "nothing ran".
773#[derive(Debug, Clone, Serialize, Deserialize)]
774pub struct JobRecord {
775 /// Graph node the seat belongs to, e.g. `"implement"`, `"fix"`.
776 pub node: String,
777 /// Review round this job belongs to, for a `"review"`/`"fix"` node —
778 /// `None` for every other node, where rounds do not apply, and for every
779 /// record written before this was tracked. Lets a reader ask "what did
780 /// this seat itself actually run this round", distinct from and never
781 /// substituted for magi's own recorded `ReviewRound::e2e` — an absent
782 /// entry here means unobserved, not that nothing ran (see this type's
783 /// own doc).
784 #[serde(default)]
785 pub round: Option<usize>,
786 /// Seat key, e.g. `"impl-A"`.
787 pub seat: String,
788 /// The CLI's own id for this command.
789 pub id: String,
790 /// The command itself, as the CLI reported it.
791 pub description: String,
792 /// When this evidence was captured — the moment this seat's reply
793 /// carrying it was read, not the command's own start time, which no
794 /// adapter here currently has. A lower bound on staleness only.
795 pub checked_at: Timestamp,
796 /// What the CLI reported for it.
797 pub status: JobStatus,
798 /// Exit code the CLI reported.
799 pub exit_code: Option<i32>,
800 /// Tail of the command's own output, when reported.
801 #[serde(default)]
802 pub result_summary: String,
803 /// Which CLI/event stream this came from, e.g. `"codex"`.
804 pub source: String,
805}
806
807/// What a [`JobRecord`]'s own CLI reported for it. There is no `Running`
808/// variant: nothing here is ever polled live, so "still running" and
809/// "finished but never reported" are the same absence of evidence, not a
810/// state this type can name — see [`JobRecord`]'s own doc.
811#[derive(Debug, Clone, Copy, Serialize, Deserialize, PartialEq, Eq)]
812pub enum JobStatus {
813 /// The command's own reported exit code was `0`.
814 Completed,
815 /// The command's own reported exit code was non-zero.
816 Failed,
817 /// The CLI reported this command but not a readable exit code.
818 Unknown,
819}
820
821/// Outcome of one shell command.
822#[derive(Debug, Clone, Serialize, Deserialize)]
823pub struct CommandOutcome {
824 /// The command, as configured.
825 pub command: String,
826 /// Exit code, `None` on timeout or signal.
827 pub code: Option<i32>,
828 /// Tail of the combined output, for the report and the fix prompt.
829 #[serde(default)]
830 pub output_tail: String,
831 /// Wall-clock time.
832 #[serde(default)]
833 pub duration_ms: u64,
834 /// Set only by magi itself, never inferred from `output_tail`: the
835 /// configured command was never actually run because a resource it
836 /// needs — right now, only the shared build cache's lease or the
837 /// freshness check that must precede using it — was not available
838 /// within budget. Distinct from an ordinary failure or timeout (both of
839 /// which *did* run something and are evidence about the patch); this is
840 /// evidence about the machine, and must never be read as a verdict on
841 /// the tree it named. `#[serde(default)]` so every record written
842 /// before this field existed keeps reading as `false` — exactly what it
843 /// was.
844 #[serde(default)]
845 pub resource_blocked: bool,
846}
847
848/// Substrings that mark a Cargo/rustc/link failure: the toolchain could not
849/// produce a binary to run at all, as opposed to producing one that ran and
850/// failed. A Windows link race against a shared `CARGO_TARGET_DIR` (see
851/// AGENTS.md, "Running magi on magi") looks exactly like a red command
852/// otherwise, and a run has concluded `Blocked` on nothing but that race.
853const BUILD_FAILURE_MARKERS: &[&str] = &[
854 "error: could not compile",
855 "error: linking with",
856 "LINK : fatal error",
857 "fatal error LNK",
858];
859
860impl CommandOutcome {
861 /// Did it pass?
862 pub fn ok(&self) -> bool {
863 self.code == Some(0)
864 }
865
866 /// Did this command fail because the code could not be built or linked,
867 /// rather than because it ran and produced a wrong result? A failure here
868 /// is not a verdict on the patch under review.
869 pub fn build_failed(&self) -> bool {
870 !self.ok()
871 && BUILD_FAILURE_MARKERS
872 .iter()
873 .any(|m| self.output_tail.contains(m))
874 }
875}
876
877/// One review + verify + fix round.
878#[derive(Debug, Clone, Serialize, Deserialize)]
879pub struct ReviewRound {
880 /// 1-based round number.
881 pub round: usize,
882 /// Commit the round reviewed.
883 pub head: String,
884 /// The commit `e2e` was actually attempted against. Set whenever an
885 /// attempt was dispatched (`e2e_status()` reads `Passed`, `Failed`, or
886 /// `ResourceBlocked`), naming that commit even when it equals `head` —
887 /// never left implicit, because an implicit "must have been `head`" is
888 /// exactly what let a later round quote an earlier round's result
889 /// without saying which commit it came from. A resource-blocked attempt
890 /// still targeted a specific commit even though no command finished, and
891 /// leaving that unrecorded is exactly what made a *fresh* blocked
892 /// attempt read the same as an untracked one from before schema 8.
893 /// `None` only when nothing was attempted at all (`NotConfigured`,
894 /// `Deferred`). See `SCHEMA`'s doc for schema 8 for why this broadened
895 /// from only the catch-up-on-a-different-commit case.
896 #[serde(default)]
897 pub verified_head: Option<String>,
898 /// When the attempt behind `verified_head` actually ran. `None` on
899 /// every record written before schema 8, and on a round where nothing
900 /// ran —
901 /// both read as "unknown", not as "now" or "never asked".
902 #[serde(default)]
903 pub verified_at: Option<Timestamp>,
904 /// Reviewer reports.
905 pub reviews: Vec<ReviewRecord>,
906 /// E2E command outcomes for this round.
907 #[serde(default)]
908 pub e2e: Vec<CommandOutcome>,
909 /// True when the first verify attempt this round could not build or
910 /// link, and `e2e` above holds a second attempt run before concluding.
911 /// A run must never be decided on a red it could not tell from an
912 /// unrelated build race.
913 #[serde(default)]
914 pub verify_retried: bool,
915 /// True when `e2e` was intentionally left empty this round: the round
916 /// already had blocking findings and another round was available, so
917 /// `graph::Runner::review_loop` sent the fixer straight at them instead
918 /// of spending a full verify run on a head it already knew would need
919 /// another fix. Distinct from an `e2e` that is simply empty because
920 /// `verify.e2e` has no commands configured — `e2e.is_empty()` alone
921 /// cannot tell those apart, and conflating them is exactly how a
922 /// deferred check would get painted green. A record written before this
923 /// field existed defaults to `false`, which is the truth for it: every
924 /// round used to run e2e unconditionally.
925 #[serde(default)]
926 pub e2e_deferred: bool,
927 /// Why `e2e` was deferred, set only when [`Self::e2e_deferred`] is true.
928 /// Carried to the fixer's prompt and shown in the report so "deferred"
929 /// never reads as silence.
930 #[serde(default)]
931 pub e2e_defer_reason: Option<String>,
932 /// Fixer response, absent when the round was already clean.
933 #[serde(default)]
934 pub fix: Option<FixRecord>,
935 /// Findings that hold the merge.
936 #[serde(default)]
937 pub blocking: usize,
938 /// Reviewer seats that answered (did not time out, crash, or return
939 /// something unparsable).
940 #[serde(default)]
941 pub answered: usize,
942 /// Reviewer seats the round expected an answer from — normally
943 /// `graph.reviewers`, but recorded per round so a config change between
944 /// runs never has to be inferred from history.
945 #[serde(default)]
946 pub expected: usize,
947 /// Round ended with no blocking findings and green verification, judged
948 /// against the seats that answered. See [`Self::incomplete`] for whether
949 /// that verdict is missing input.
950 #[serde(default)]
951 pub clean: bool,
952 /// Did the tree actually move against `base` this round, comparing the
953 /// diff after the fix to the diff the reviewers saw at the start of the
954 /// round?
955 ///
956 /// Never derived from the fixer's own `addressed`/`rejected` count: that
957 /// self-report has been caught lying twice on this workload (runs `b455`
958 /// and `6218`, both of which committed a real, substantial diff while
959 /// reporting `0 addressed`). `git` does not lie about whether the tree
960 /// changed, so this is what `graph::Runner::review_loop` counts rounds of
961 /// no progress against. Absent on a round with no fix attempt (already
962 /// clean, or the round the budget ran out on), where it defaults to
963 /// `false` and is not consulted.
964 #[serde(default)]
965 pub progressed: bool,
966 /// Did the seats' initial votes ([`ReviewRecord::vote`]) disagree?
967 #[serde(default)]
968 pub vote_split: bool,
969 /// One round of revoting, run only when `vote_split`: each seat that cast
970 /// an initial vote reads every seat's findings and votes, then revotes.
971 /// Empty when the initial votes already agreed, the same as a solo
972 /// candidate leaving `deliberation` empty.
973 #[serde(default)]
974 pub reconsideration: Vec<ReviewRevoteRecord>,
975 /// The round's verdict: the most cautious vote among the seats that
976 /// answered, using each seat's revote where reconsideration ran and its
977 /// initial vote otherwise. `None` when no seat produced a usable vote —
978 /// including every record written before votes existed, which is the
979 /// truth for those rounds, not a gap in this one.
980 #[serde(default)]
981 pub verdict: Option<ReviewVote>,
982}
983
984impl ReviewRound {
985 /// Did at least one reviewer seat fail to answer this round?
986 pub fn incomplete(&self) -> bool {
987 self.answered < self.expected
988 }
989
990 /// The honest state of this round's e2e leg.
991 ///
992 /// Never derive this from `e2e.is_empty()` alone anywhere else in the
993 /// codebase — `NotConfigured` and `Deferred` both leave it empty, and
994 /// only this method (backed by [`Self::e2e_deferred`]) tells them apart.
995 /// A resource-blocked attempt is checked first and ahead of both: `e2e`
996 /// is non-empty for it too, but `CommandOutcome::resource_blocked` says
997 /// no command actually ran, and reading that as `Failed` is exactly how
998 /// shared build-cache contention gets misreported as a verdict on the
999 /// patch (see `CommandOutcome::resource_blocked`'s own doc).
1000 pub fn e2e_status(&self) -> E2eStatus {
1001 if self.e2e.iter().any(|o| o.resource_blocked) {
1002 E2eStatus::ResourceBlocked
1003 } else if !self.e2e.is_empty() {
1004 if self.e2e.iter().all(CommandOutcome::ok) {
1005 E2eStatus::Passed
1006 } else {
1007 E2eStatus::Failed
1008 }
1009 } else if self.e2e_deferred {
1010 E2eStatus::Deferred
1011 } else {
1012 E2eStatus::NotConfigured
1013 }
1014 }
1015
1016 /// Facts about this round's verification leg, judged against
1017 /// `current_head` — the commit whoever is asking is actually looking at
1018 /// right now. `None` when there is nothing worth surfacing: no
1019 /// `verify.e2e` configured, or the round's own check came back green (a
1020 /// passing result needs no skepticism attached to it, and an unread
1021 /// `None` is exactly what keeps a quiet round quiet instead of padding
1022 /// every prompt with "everything was fine").
1023 ///
1024 /// This is the single place that turns `e2e`/`e2e_deferred`/
1025 /// `verified_head`/`verified_at` into text. Every prompt and report that
1026 /// shows a round's verification result must build its wording from this,
1027 /// not re-derive its own summary at the call site — a hand-rolled
1028 /// version at one more place is exactly how "an old red read as today's
1029 /// answer" comes back through a different door (see the incident this
1030 /// type exists to prevent, recorded alongside `SCHEMA`'s doc for schema
1031 /// 8).
1032 pub fn verification_summary(&self, current_head: &str) -> Option<VerificationSummary> {
1033 let status = self.e2e_status();
1034 if matches!(status, E2eStatus::NotConfigured | E2eStatus::Passed) {
1035 return None;
1036 }
1037 let commit = match &self.verified_head {
1038 Some(h) if h == current_head => {
1039 format!("commit {} (this is the head being looked at now)", short(h))
1040 }
1041 Some(h) => format!("commit {} (an earlier head, since superseded)", short(h)),
1042 None => "commit unknown (no command finished checking one)".to_owned(),
1043 };
1044 let checked_at = match self.verified_at {
1045 Some(t) => format!("checked at {t}"),
1046 None => "checked at: unknown (recorded before this was tracked)".to_owned(),
1047 };
1048 let result = match status {
1049 E2eStatus::NotConfigured | E2eStatus::Passed => unreachable!("checked above"),
1050 E2eStatus::Failed => "result: FAILED".to_owned(),
1051 E2eStatus::Deferred => format!(
1052 "result: not run this round yet — deferred to the fixer{}. Not passed, not \
1053 failed.",
1054 self.e2e_defer_reason
1055 .as_deref()
1056 .map(|why| format!(" ({why})"))
1057 .unwrap_or_default()
1058 ),
1059 E2eStatus::ResourceBlocked => "result: could not run — the shared build cache was \
1060 not available. This is evidence about the machine, \
1061 not about the patch."
1062 .to_owned(),
1063 };
1064 let label = format!("round {}, {commit}, {checked_at}\n{result}", self.round);
1065 // `Failed` names the command that actually ran and failed;
1066 // `ResourceBlocked` names the operation magi was waiting on (or the
1067 // freshness check it could not confirm) — `command` still says what
1068 // was attempted even though nothing finished, and leaving it out is
1069 // exactly how a reviewer or fixer lost the one thing this leg *can*
1070 // still tell them: what was being checked, not whether it passed.
1071 let tail = matches!(status, E2eStatus::Failed | E2eStatus::ResourceBlocked).then(|| {
1072 self.e2e
1073 .iter()
1074 .filter(|o| !o.ok())
1075 .map(|o| format!("$ {}\n{}\n", o.command, o.output_tail))
1076 .collect::<String>()
1077 });
1078 Some(VerificationSummary { label, tail })
1079 }
1080}
1081
1082/// The honest state of a round's e2e leg. See [`ReviewRound::e2e_status`].
1083#[derive(Debug, Clone, Copy, PartialEq, Eq)]
1084pub enum E2eStatus {
1085 /// `verify.e2e` has no commands configured.
1086 NotConfigured,
1087 /// Skipped this round on purpose: blocking findings already required a
1088 /// fix, so the round went straight to the fixer instead of spending a
1089 /// full verify run on a head it already knew would need another pass.
1090 Deferred,
1091 /// Ran, and every command exited 0.
1092 Passed,
1093 /// Ran, and at least one command did not exit 0.
1094 Failed,
1095 /// Magi could not even get a command to run — the shared build cache's
1096 /// lease or freshness check was not available within budget. Evidence
1097 /// about the machine, never a verdict on the tree it named; must not be
1098 /// shown or counted the same as [`Self::Failed`].
1099 ResourceBlocked,
1100}
1101
1102/// [`ReviewRound::verification_summary`]'s output: the facts, pre-worded, for
1103/// a prompt or report to place under its own heading. Kept as two pieces
1104/// rather than one pre-joined string so a caller that wants to insert its own
1105/// note between the label and the raw command tail (see `prompt::review`) can
1106/// do so without re-parsing text back apart.
1107#[derive(Debug, Clone)]
1108pub struct VerificationSummary {
1109 /// Round, commit, freshness and result — always present.
1110 pub label: String,
1111 /// Raw `$ command` / output tail, present for `result: FAILED` and for
1112 /// a resource-blocked attempt (naming the operation magi was waiting on,
1113 /// even though nothing finished) — absent for every other result, which
1114 /// has nothing to add past the label.
1115 pub tail: Option<String>,
1116}
1117
1118/// The honest state of a run's final gate. See [`RunState::gate_status`].
1119#[derive(Debug, Clone, Copy, PartialEq, Eq)]
1120pub enum GateStatus {
1121 /// Never attempted, or the last attempt was resource-blocked (the shared
1122 /// build cache could not be acquired or confirmed fresh in time) and
1123 /// needs a retry.
1124 NotRun,
1125 /// Ran with zero commands configured (`verify.gate` is empty) and
1126 /// therefore vacuously passed — there was nothing to check.
1127 PassedWithNoCommands,
1128 /// Ran one or more commands, and every one of them exited 0.
1129 Passed,
1130 /// Ran one or more commands, and at least one did not exit 0.
1131 Failed,
1132}
1133
1134impl GateStatus {
1135 /// May a run in this state proceed to merge?
1136 pub fn ok(self) -> bool {
1137 matches!(self, Self::PassedWithNoCommands | Self::Passed)
1138 }
1139}
1140
1141/// What happened to the winning branch.
1142#[derive(Debug, Clone, Serialize, Deserialize)]
1143pub struct MergeOutcome {
1144 /// Requested mode.
1145 pub mode: MergeMode,
1146 /// Did it land?
1147 pub ok: bool,
1148 /// Command output, or the command the operator should run.
1149 #[serde(default)]
1150 pub detail: String,
1151}
1152
1153/// A seat currently mid-answer: a prompt was sent and no reply has landed yet.
1154///
1155/// This is not the whole story of "is it alive" — a daemon killed mid-wave
1156/// leaves its last wave's entries here forever, since nothing ran to clear
1157/// them. A reader must cross-check a live daemon's heartbeat
1158/// (`daemon::is_working_on`) before trusting one of these as "still running"
1159/// rather than "abandoned". [`RunState::clear_active`] is what keeps that
1160/// leftover from surviving into the next attempt at this run: `execute` calls
1161/// it before doing anything else, so a resumed run never carries a stale
1162/// entry into its own report before the next wave repopulates it.
1163///
1164/// Deliberately carries no agent id: an implementer's agent is no secret, but
1165/// a judge or reviewer seat is blind (`SeatState::key` is keyed by seat, never
1166/// agent, for exactly this reason), and this struct has no way to tell which
1167/// kind of seat it describes. The seat key alone — already in the map this
1168/// lives under — is what every caller needs to say which seat is running.
1169///
1170/// The same map also carries entries for shell-command work that runs
1171/// outside any seat — `verify.e2e`, `verify.gate` — keyed by the task's own
1172/// name (`"e2e"`, `"gate"`) rather than a seat key. [`Self::task`] is `Some`
1173/// only for those; it is how a reader tells the two kinds of entry apart
1174/// without a second map, a second route, or a second SSE reason to poll for
1175/// — see [`RunState::seats_active`] / [`RunState::tasks_active`] for the
1176/// accessors that split them back apart. A task entry is exactly as blind as
1177/// a seat entry: no agent runs it, so there is nothing to leak, and
1178/// [`Self::command`] carries only the shell command being run, never
1179/// anything about who is running it.
1180#[derive(Debug, Clone, Serialize, Deserialize)]
1181pub struct ActiveSeat {
1182 /// Node the seat is answering for, e.g. `implement`, `judge`, `review`.
1183 /// For a task entry, the node the command list runs under (`verify`,
1184 /// `gate`).
1185 pub node: String,
1186 /// When this attempt — or, for a task entry, this one command — was
1187 /// started. A task entry's timer resets at every command boundary,
1188 /// because `verify.e2e` / `verify.gate` apply their timeout per command,
1189 /// not once across the whole list — see [`RunState::task_command`].
1190 pub started_at: Timestamp,
1191 /// The wall-clock budget for this attempt (a seat) or this one command
1192 /// (a task entry).
1193 pub timeout_secs: u64,
1194 /// 0 for the first ask, N for the Nth nudge or resume. For a task entry,
1195 /// 0 for the first pass over the command list, N for the Nth retry (see
1196 /// `run_e2e_with_retry`'s build/link retry).
1197 #[serde(default)]
1198 pub attempt: usize,
1199 /// `None` for a seat; `Some("e2e")` / `Some("gate")` for a running
1200 /// command-list task. This is the type tag that lets both kinds of entry
1201 /// share one map without a task ever being mistaken for a (blind) seat —
1202 /// see this struct's own doc. Omitted from JSON when absent (the common,
1203 /// seat case), rather than written out as a literal `null` on every one
1204 /// of a run's seat entries.
1205 #[serde(default, skip_serializing_if = "Option::is_none")]
1206 pub task: Option<String>,
1207 /// The command currently running, task entries only. Never set on a
1208 /// seat entry — a seat has no command, only a prompt, and a prompt is
1209 /// not safe to show mid-run (see this struct's blindness note).
1210 #[serde(default, skip_serializing_if = "Option::is_none")]
1211 pub command: Option<String>,
1212 /// 1-based position of [`Self::command`] within the task's command list.
1213 #[serde(default, skip_serializing_if = "Option::is_none")]
1214 pub index: Option<usize>,
1215 /// Number of commands in the task's list.
1216 #[serde(default, skip_serializing_if = "Option::is_none")]
1217 pub total: Option<usize>,
1218}
1219
1220impl ActiveSeat {
1221 /// Seconds since this attempt was sent.
1222 #[must_use]
1223 pub fn elapsed_secs(&self, now: Timestamp) -> i64 {
1224 (now.as_second() - self.started_at.as_second()).max(0)
1225 }
1226
1227 /// Seconds left before this attempt's own timeout fires, floored at zero
1228 /// rather than going negative once the CLI has overrun its budget.
1229 #[must_use]
1230 pub fn remaining_secs(&self, now: Timestamp) -> i64 {
1231 (self.timeout_secs as i64 - self.elapsed_secs(now)).max(0)
1232 }
1233}
1234
1235/// Whether a process is provably still driving a run, provably not, or
1236/// neither — see [`RunState::liveness`]. Serialized as a lowercase string
1237/// (`"live"` / `"dead"` / `"unknown"`) rather than a bool: a bool has no room
1238/// for "could not tell", and folding that case into either `true` or `false`
1239/// is exactly the wrong call for a display an operator uses to decide
1240/// whether to wait or to act — see the schema-10 field doc on
1241/// [`RunState::driver_pid`] for the report it used to produce instead.
1242#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize)]
1243#[serde(rename_all = "lowercase")]
1244pub enum Liveness {
1245 /// Proven: a daemon's heartbeat claims the run, or `driver_pid` answers
1246 /// alive under the same identity (`driver_started_at`) this run recorded
1247 /// for it.
1248 Live,
1249 /// Proven: no daemon claim, and either `driver_pid` answers dead outright
1250 /// or it answers alive under a *different* identity than recorded — a
1251 /// pid the OS has since handed to an unrelated process is exactly as
1252 /// good as proof the original driver is gone (see
1253 /// [`RunState::driver_started_at`]'s own doc).
1254 Dead,
1255 /// Neither proven — no daemon claim, and either no `driver_pid` to ask,
1256 /// the platform could not answer for it, or a live pid with nothing (or
1257 /// nothing queryable) to corroborate its identity against. Never treated
1258 /// as `Dead`: see [`RunState::liveness_with`].
1259 Unknown,
1260}
1261
1262/// A timestamped note about a node.
1263#[derive(Debug, Clone, Serialize, Deserialize)]
1264pub struct Event {
1265 /// When.
1266 pub at: Timestamp,
1267 /// Node name.
1268 pub node: String,
1269 /// What happened.
1270 pub message: String,
1271}
1272
1273/// How far the winner's tree trailed the landing base, last time it was
1274/// checked, and what came of trying to close that gap.
1275///
1276/// Set by `graph::Runner::sync_to_base`, which runs before the review loop and
1277/// again before the gate: verifying against a tree that does not yet contain
1278/// the base's tip answers "green on the commit this run branched from", not
1279/// "green on what is about to land", and a merge on that answer can revert
1280/// whatever landed elsewhere while the run was thinking.
1281#[derive(Debug, Clone, Serialize, Deserialize)]
1282pub struct BaseSync {
1283 /// `<remote>/<base>` tip the tree was last checked against.
1284 pub tip: String,
1285 /// Commits `tip` was ahead of the tree at that check, before any rebase
1286 /// this round tried to close the gap. Zero means the tree already
1287 /// contained `tip`.
1288 pub behind: usize,
1289 /// Rebase attempts spent so far this run, bounded by
1290 /// `graph::BASE_SYNC_ROUNDS`.
1291 pub attempts: usize,
1292 /// What git said, if the most recent rebase attempt conflicted or could
1293 /// not be pushed. `Some` here is what makes a `Blocked` run read as
1294 /// "stopped on the base, not on review or the gate" - the rebase is not
1295 /// retried again while this is set; a person has to look.
1296 #[serde(default)]
1297 pub conflict: Option<String>,
1298}
1299
1300/// What the land loop saw last time it looked at the pull request.
1301///
1302/// Strings for `state` and `checks` on purpose: they are `gh`'s vocabulary, and
1303/// pinning them into an enum here would mean a new GitHub check conclusion
1304/// turns a readable status into a deserialisation error on a run someone is
1305/// trying to look at.
1306#[derive(Debug, Clone, Serialize, Deserialize)]
1307pub struct PrRecord {
1308 /// Pull request url.
1309 pub url: String,
1310 /// Pull request number.
1311 pub number: u64,
1312 /// `open`, `merged` or `closed`.
1313 pub state: String,
1314 /// `pending`, `green`, `red` or `unknown`.
1315 pub checks: String,
1316 /// Land round, 1-based, or 0 before the first fix.
1317 pub round: usize,
1318 /// Land round budget.
1319 pub rounds: usize,
1320}
1321
1322/// The whole run.
1323#[derive(Debug, Clone, Serialize, Deserialize)]
1324pub struct RunState {
1325 /// On-disk format version.
1326 pub schema: u32,
1327 /// Run id, e.g. `20260830-153012-a1b2`.
1328 pub id: String,
1329 /// Repository the run operates on.
1330 pub repo: PathBuf,
1331 /// Branch the run started from.
1332 pub base_branch: String,
1333 /// Commit the run started from.
1334 pub base_commit: String,
1335 /// The task, verbatim.
1336 pub instruction: String,
1337 /// When the run was created.
1338 pub created_at: Timestamp,
1339 /// Last state flush.
1340 pub updated_at: Timestamp,
1341 /// Current status.
1342 pub status: RunStatus,
1343 /// Seed for labels and session ids.
1344 pub seed: u64,
1345 /// Config snapshot, so a resumed run behaves like the original.
1346 pub config: Config,
1347 /// Did this run take a reference on `extensions.worktreeConfig` being on
1348 /// (see [`crate::git::acquire_worktree_config`])? If so, cleanup releases
1349 /// it - which only actually turns the setting back off once every other
1350 /// run sharing this repository has released its own reference too.
1351 #[serde(default)]
1352 pub enabled_worktree_config: bool,
1353 /// Candidates.
1354 #[serde(default)]
1355 pub candidates: Vec<Candidate>,
1356 /// Initial blind rankings.
1357 #[serde(default)]
1358 pub judgements: Vec<Judgement>,
1359 /// `judge` decided a solo candidate needs no panel and only logged it.
1360 ///
1361 /// `judgements` stays empty in that case — nothing to distinguish from
1362 /// "not yet judged" — so this is the record that makes the skip
1363 /// idempotent: without it, every reentry re-ran `judge`, re-logged the
1364 /// same event, and rewrote `status` to `Judging` over whatever a later
1365 /// node had already concluded.
1366 #[serde(default)]
1367 pub judge_skipped: bool,
1368 /// Deliberation, if it happened.
1369 #[serde(default)]
1370 pub deliberation: Vec<DeliberationRound>,
1371 /// Private final votes.
1372 #[serde(default)]
1373 pub votes: Vec<VoteRecord>,
1374 /// The count.
1375 #[serde(default)]
1376 pub tally: Option<Tally>,
1377 /// Review rounds.
1378 #[serde(default)]
1379 pub reviews: Vec<ReviewRound>,
1380 /// Final gate.
1381 ///
1382 /// Never derive whether the gate has run from `gate.is_empty()` alone —
1383 /// use [`Self::gate_status`] instead. An empty list is ambiguous on its
1384 /// own: it is what an unattempted gate looks like, what a
1385 /// resource-blocked attempt leaves behind (see `graph::Runner::gate`'s
1386 /// own doc), and also what a repo with no `verify.gate` commands
1387 /// configured produces once it *has* run. [`Self::gate_ran`] is what
1388 /// tells the third case apart from the first two.
1389 #[serde(default)]
1390 pub gate: Vec<CommandOutcome>,
1391 /// Did `gate()` actually record an attempt — zero commands configured
1392 /// and vacuously passed, or one or more commands that ran to
1393 /// completion — as opposed to never having run, or having last hit a
1394 /// resource-blocked retry?
1395 ///
1396 /// `gate.is_empty()` cannot tell those apart by itself: a repo with no
1397 /// `verify.gate` commands leaves `gate` empty exactly like an
1398 /// unattempted or resource-blocked one does, and reading that empty list
1399 /// as "not yet run" is what stranded a review-only run in
1400 /// `RunStatus::Gating` forever on such a repo — see `SCHEMA`'s doc for
1401 /// schema 7. A record written before this field existed defaults to
1402 /// `false` and is migrated in [`migrate_schema`].
1403 #[serde(default)]
1404 pub gate_ran: bool,
1405 /// Merge outcome.
1406 #[serde(default)]
1407 pub merge: Option<MergeOutcome>,
1408 /// Vendor tokens seen in judged material.
1409 #[serde(default)]
1410 pub leaks: Vec<Leak>,
1411 /// Seats lost to a CLI rate limit / quota, in the order they hit.
1412 #[serde(default)]
1413 pub quota: Vec<QuotaLoss>,
1414 /// Parked at a node boundary, waiting to be resumed.
1415 ///
1416 /// A run that is neither finished nor being worked on is otherwise
1417 /// indistinguishable from one whose daemon was killed, and the two want
1418 /// opposite things from an operator: the first is expected to be resumed,
1419 /// the second is a leftover. Cleared by the resume that carries it on.
1420 #[serde(default)]
1421 pub parked: bool,
1422 /// Per-seat conversation state.
1423 #[serde(default)]
1424 pub seats: BTreeMap<String, SeatState>,
1425 /// Seats currently mid-answer, keyed by seat.
1426 ///
1427 /// An entry exists from the moment a prompt is sent until a reply (of any
1428 /// kind — success, failure, quota, drop) comes back, so its keys are
1429 /// exactly "who hasn't answered yet" for whichever node populated it. See
1430 /// [`ActiveSeat`] for why a reader still has to check a live daemon
1431 /// before trusting one of these as "running" rather than "abandoned".
1432 #[serde(default)]
1433 pub active: BTreeMap<String, ActiveSeat>,
1434 /// Process id of whichever `execute()` call last drove this run —
1435 /// written at the very top of that method, the same place
1436 /// [`Self::clear_active`] runs, so a fresh reentry always overwrites the
1437 /// pid a previous, possibly-dead process left behind.
1438 ///
1439 /// A daemon-claimed run already has a stronger signal
1440 /// (`daemon::is_working_on`), but a `magi run` / `magi review` typed
1441 /// straight into a terminal claims nothing there — before this field
1442 /// existed, [`report::active_seats`] had no way to tell that run apart
1443 /// from one a killed process abandoned, and printed the same "no live
1444 /// daemon claims this run" warning over a run that was, in fact, still
1445 /// answering. See [`Liveness`] for how this and the daemon claim combine.
1446 #[serde(default)]
1447 pub driver_pid: Option<u32>,
1448 /// The OS-reported moment [`Self::driver_pid`] started, recorded in the
1449 /// same breath as the pid itself — an opaque marker
1450 /// (`crate::proc::process_started_at`), compared only for equality.
1451 ///
1452 /// A pid alone never proves a live process is *this run's* driver: pids
1453 /// get reused, sometimes within minutes on a busy machine, and a killed
1454 /// manual `magi run` whose pid a later, wholly unrelated process happens
1455 /// to receive would otherwise read back as `Liveness::Live` from that
1456 /// coincidence alone. [`Self::liveness`] re-queries the current holder
1457 /// of `driver_pid` and requires this marker to still match before
1458 /// trusting a live answer — a mismatch means a different process now
1459 /// answers to that number, and no marker to compare (an old run, or a
1460 /// platform this build could not ask at record time) means neither
1461 /// extreme can be proven.
1462 #[serde(default)]
1463 pub driver_started_at: Option<String>,
1464 /// Last observation of the winner's pull request, when a land loop ran.
1465 ///
1466 /// Persisted rather than derived from the event log because the phone asks
1467 /// two questions about a run that has opened a PR - how are its checks and
1468 /// which round is it on - and parsing prose out of events to answer them
1469 /// would break the first time an event message was reworded.
1470 #[serde(default)]
1471 pub pr: Option<PrRecord>,
1472 /// The last look at how far the winner's tree trailed the landing base,
1473 /// and the rebase(s) tried to close that gap. `None` until the tree has a
1474 /// winner to check.
1475 #[serde(default)]
1476 pub base_sync: Option<BaseSync>,
1477 /// The design-deliberation stage's output, when `[graph] advise` ran it:
1478 /// one record per advisor seat, plus the synthesis blended into the
1479 /// implementer's prompt. `None` when the stage is off, has not run yet,
1480 /// or could not even resolve its seats - see
1481 /// [`crate::graph::Runner::advise`].
1482 #[serde(default)]
1483 pub advice: Option<crate::advise::Advice>,
1484 /// Whether the design-deliberation stage has already been attempted this
1485 /// run, whatever it produced. The idempotency marker `Runner::advise`
1486 /// checks on reentry, the same role [`Self::judge_skipped`] plays for
1487 /// `judge` - without it a resumed run whose stage failed (a misconfigured
1488 /// `[roles] advisors`, every seat quota'd) would re-run it, and re-spend
1489 /// the agent calls, on every single reentry before `implement`.
1490 #[serde(default)]
1491 pub advise_attempted: bool,
1492 /// Node log.
1493 #[serde(default)]
1494 pub events: Vec<Event>,
1495 /// Commands seats' own CLIs reported running, across every node — see
1496 /// [`JobRecord`]. Populated in [`crate::graph::wave`] as each seat
1497 /// answers, so a resumed run keeps what earlier waves already collected
1498 /// rather than losing it to a reentry. Empty on a record written before
1499 /// this existed, or wherever no adapter reads structured job events for
1500 /// the backend a seat used — both read as "no evidence", not "nothing
1501 /// ran".
1502 #[serde(default)]
1503 pub jobs: Vec<JobRecord>,
1504 /// Operator-triggered targeted fixes — see [`OperatorFixRequest`] and
1505 /// `SCHEMA`'s doc for schema 9. Empty on every record written before
1506 /// this existed, which reads correctly as "no operator fix ever
1507 /// requested".
1508 #[serde(default)]
1509 pub operator_fixes: Vec<OperatorFixRequest>,
1510}
1511
1512impl RunState {
1513 /// A fresh run.
1514 pub fn new(
1515 repo: PathBuf,
1516 base_branch: String,
1517 base_commit: String,
1518 instruction: String,
1519 config: Config,
1520 ) -> Self {
1521 let now = Timestamp::now();
1522 let seed = config.blind.seed.unwrap_or_else(crate::rng::entropy);
1523 Self {
1524 schema: SCHEMA,
1525 id: new_id(),
1526 repo,
1527 base_branch,
1528 base_commit,
1529 instruction,
1530 created_at: now,
1531 updated_at: now,
1532 status: RunStatus::Prep,
1533 seed,
1534 config,
1535 enabled_worktree_config: false,
1536 candidates: Vec::new(),
1537 judgements: Vec::new(),
1538 judge_skipped: false,
1539 deliberation: Vec::new(),
1540 votes: Vec::new(),
1541 tally: None,
1542 reviews: Vec::new(),
1543 gate: Vec::new(),
1544 gate_ran: false,
1545 merge: None,
1546 leaks: Vec::new(),
1547 quota: Vec::new(),
1548 parked: false,
1549 seats: BTreeMap::new(),
1550 active: BTreeMap::new(),
1551 driver_pid: None,
1552 driver_started_at: None,
1553 pr: None,
1554 base_sync: None,
1555 advice: None,
1556 advise_attempted: false,
1557 events: Vec::new(),
1558 jobs: Vec::new(),
1559 operator_fixes: Vec::new(),
1560 }
1561 }
1562
1563 /// Directory holding this run's state and artifacts.
1564 pub fn dir(&self) -> PathBuf {
1565 run_dir(&self.id)
1566 }
1567
1568 /// Short form used in branch names and reports.
1569 pub fn short(&self) -> &str {
1570 short_of(&self.id)
1571 }
1572
1573 /// Branch name for a label.
1574 pub fn branch_for(&self, label: char) -> String {
1575 format!("magi/{}/{}", self.short(), label)
1576 }
1577
1578 /// Root of this run's worktrees.
1579 pub fn worktree_root(&self) -> PathBuf {
1580 self.config
1581 .graph
1582 .worktree_root
1583 .clone()
1584 .unwrap_or_else(default_worktree_root)
1585 .join(self.short())
1586 }
1587
1588 /// Note something in the run log and on the tracing stream.
1589 pub fn event(&mut self, node: &str, message: impl Into<String>) {
1590 let message = message.into();
1591 tracing::info!(node, "{message}");
1592 self.events.push(Event {
1593 at: Timestamp::now(),
1594 node: node.to_owned(),
1595 message,
1596 });
1597 }
1598
1599 /// The honest state of the final gate.
1600 ///
1601 /// Never derive this from `gate.is_empty()` alone anywhere else in the
1602 /// codebase — `NotRun` and `PassedWithNoCommands` both leave `gate`
1603 /// empty, and only this method (backed by [`Self::gate_ran`]) tells them
1604 /// apart. See `SCHEMA`'s doc for schema 7 for what conflating them used
1605 /// to do.
1606 pub fn gate_status(&self) -> GateStatus {
1607 if !self.gate_ran {
1608 GateStatus::NotRun
1609 } else if self.gate.is_empty() {
1610 GateStatus::PassedWithNoCommands
1611 } else if self.gate.iter().all(CommandOutcome::ok) {
1612 GateStatus::Passed
1613 } else {
1614 GateStatus::Failed
1615 }
1616 }
1617
1618 /// Record that `seat` was just sent a prompt for `node`, with the given
1619 /// wall-clock budget. `attempt` is 0 for the first ask and N for the Nth
1620 /// nudge or resume, purely for display — it does not change how the seat
1621 /// is treated.
1622 pub fn seat_started(
1623 &mut self,
1624 node: &str,
1625 seat: &str,
1626 timeout: std::time::Duration,
1627 attempt: usize,
1628 ) {
1629 self.active.insert(
1630 seat.to_owned(),
1631 ActiveSeat {
1632 node: node.to_owned(),
1633 started_at: Timestamp::now(),
1634 timeout_secs: timeout.as_secs(),
1635 attempt,
1636 task: None,
1637 command: None,
1638 index: None,
1639 total: None,
1640 },
1641 );
1642 }
1643
1644 /// Record that `seat` has answered, whatever the answer was.
1645 pub fn seat_finished(&mut self, seat: &str) {
1646 self.active.remove(seat);
1647 }
1648
1649 /// Record that `task` (`"e2e"` or `"gate"` — a shell-command list run
1650 /// outside any seat) has just started `command`, the `index`-th of
1651 /// `total`. Called at every command boundary, not once for the whole
1652 /// list: `verify.e2e` / `verify.gate` apply `timeout` per command, so
1653 /// this is the only way a reader can tell "how long is left" for
1654 /// whichever command is actually running right now, rather than a stale
1655 /// budget left over from the first one.
1656 #[allow(clippy::too_many_arguments)]
1657 pub fn task_command(
1658 &mut self,
1659 task: &str,
1660 node: &str,
1661 attempt: usize,
1662 command: &str,
1663 index: usize,
1664 total: usize,
1665 timeout: std::time::Duration,
1666 ) {
1667 self.active.insert(
1668 task.to_owned(),
1669 ActiveSeat {
1670 node: node.to_owned(),
1671 started_at: Timestamp::now(),
1672 timeout_secs: timeout.as_secs(),
1673 attempt,
1674 task: Some(task.to_owned()),
1675 command: Some(command.to_owned()),
1676 index: Some(index),
1677 total: Some(total),
1678 },
1679 );
1680 }
1681
1682 /// Record that `task` has finished its whole command list for this
1683 /// attempt.
1684 pub fn task_finished(&mut self, task: &str) {
1685 self.active.remove(task);
1686 }
1687
1688 /// The seats — never task entries — currently mid-answer. What
1689 /// `report::active_seats` and the phone's "who has not answered yet"
1690 /// note need: a seat's identifier is safe to show ([`ActiveSeat`]'s doc),
1691 /// so nothing here filters anything out beyond the type tag itself.
1692 pub fn seats_active(&self) -> impl Iterator<Item = (&String, &ActiveSeat)> {
1693 self.active.iter().filter(|(_, a)| a.task.is_none())
1694 }
1695
1696 /// The command-list tasks — never seat entries — currently running.
1697 /// Counterpart to [`Self::seats_active`]; see [`ActiveSeat::task`] for
1698 /// the tag both read.
1699 pub fn tasks_active(&self) -> impl Iterator<Item = (&String, &ActiveSeat)> {
1700 self.active.iter().filter(|(_, a)| a.task.is_some())
1701 }
1702
1703 /// Drop every seat this state still lists as answering, reporting whether
1704 /// anything was dropped.
1705 ///
1706 /// Called first thing in `execute`, on every entry — fresh, resumed, or
1707 /// recovering a stall — because an entry here only means something while
1708 /// the process that wrote it is still asking that seat something. A
1709 /// process killed mid-wave leaves its last batch of seats here with
1710 /// nobody left to clear them, and the next process to touch this run must
1711 /// not let that leftover read as "still going" before it has asked
1712 /// anyone anything.
1713 pub fn clear_active(&mut self) -> bool {
1714 if self.active.is_empty() {
1715 return false;
1716 }
1717 self.active.clear();
1718 true
1719 }
1720
1721 /// Does every seat this run still lists as [`Self::active`] sit past its
1722 /// own [`ActiveSeat::timeout_secs`]? `false` when nothing is active at
1723 /// all — an empty map is not evidence of anything overrunning.
1724 ///
1725 /// This alone is not proof the run is dead: a seat's own attempt can
1726 /// legitimately run a little past its budget while the process driving it
1727 /// is still tearing the attempt down. Every caller pairs this with its own
1728 /// `!live` reading (`daemon::is_working_on`) before treating the run as
1729 /// abandoned — this module cannot check that itself without depending on
1730 /// `crate::daemon`, and callers already have to ask that question anyway.
1731 #[must_use]
1732 pub fn active_all_overrun(&self, now: Timestamp) -> bool {
1733 !self.active.is_empty()
1734 && self
1735 .active
1736 .values()
1737 .all(|a| a.elapsed_secs(now) > a.timeout_secs as i64)
1738 }
1739
1740 /// Whether a process is actually still driving this run, given whether a
1741 /// daemon's heartbeat claims it and process-liveness/identity queries for
1742 /// [`Self::driver_pid`].
1743 ///
1744 /// A daemon claim wins outright when present — it is the stronger,
1745 /// independently-heartbeating signal. Absent that (every manual `magi
1746 /// run` / `magi review`, and every daemon-driven run whose daemon has
1747 /// since exited cleanly), `driver_pid` is asked directly. A live answer
1748 /// alone is not enough to trust, though: pids get reused, so `identity`
1749 /// re-queries whoever currently holds that pid and the result must still
1750 /// match [`Self::driver_started_at`] — the marker recorded at the same
1751 /// moment `driver_pid` was — before this reads `Live`. A mismatch means
1752 /// a *different* process now answers to that number, which is exactly as
1753 /// good as proof the original driver is gone, so that reads `Dead`; no
1754 /// marker to compare against (an old run, or a platform this build could
1755 /// not ask at record time) or a `None` from either query, and this
1756 /// cannot tell either way, so it reads [`Liveness::Unknown`] — never
1757 /// guessed as [`Liveness::Dead`] out of mere silence. A display that
1758 /// guessed "dead" out of missing information would be exactly the
1759 /// mtime-and-task-manager guessing this type exists to replace.
1760 ///
1761 /// Kept generic over `query` and `identity` so a test can inject answers
1762 /// without spawning a real process query — production code goes through
1763 /// [`Self::liveness`], which supplies [`crate::proc::pid_status`] and
1764 /// [`crate::proc::process_started_at`].
1765 #[must_use]
1766 pub fn liveness_with<F, G>(&self, daemon_claims: bool, query: F, identity: G) -> Liveness
1767 where
1768 F: FnOnce(u32) -> Option<bool>,
1769 G: FnOnce(u32) -> Option<String>,
1770 {
1771 if daemon_claims {
1772 return Liveness::Live;
1773 }
1774 let Some(pid) = self.driver_pid else {
1775 return Liveness::Unknown;
1776 };
1777 match query(pid) {
1778 Some(false) => Liveness::Dead,
1779 None => Liveness::Unknown,
1780 Some(true) => match (&self.driver_started_at, identity(pid)) {
1781 (Some(recorded), Some(current)) if *recorded == current => Liveness::Live,
1782 (Some(_), Some(_)) => Liveness::Dead,
1783 _ => Liveness::Unknown,
1784 },
1785 }
1786 }
1787
1788 /// [`Self::liveness_with`], backed by the real process-liveness and
1789 /// identity queries.
1790 #[must_use]
1791 pub fn liveness(&self, daemon_claims: bool) -> Liveness {
1792 self.liveness_with(
1793 daemon_claims,
1794 crate::proc::pid_status,
1795 crate::proc::process_started_at,
1796 )
1797 }
1798
1799 /// Clear every seat this run still lists as active and fail it, unless it
1800 /// had already reached a terminal status some other way.
1801 ///
1802 /// Callers must already have proven this run is dead — [`Self::active_all_overrun`]
1803 /// plus their own `!live` reading — before calling this; it does not
1804 /// check either itself. Unlike [`Self::clear_active`] (dropping a resumed
1805 /// run's own stale wave before repopulating it, called unconditionally at
1806 /// the top of every `execute()`), this is a verdict: a run left this way
1807 /// has nothing left to repopulate the wave, ever, and must stop reading as
1808 /// `implementing` (or whichever node) forever.
1809 pub fn abandon(&mut self, by: &str) {
1810 let seats: Vec<String> = self.active.keys().cloned().collect();
1811 self.clear_active();
1812 if !self.status.done() {
1813 self.status = RunStatus::Failed;
1814 }
1815 self.event(
1816 by,
1817 format!(
1818 "abandoned: seat(s) {} left behind by a killed process, past their own \
1819 timeout with no live daemon claiming this run",
1820 seats.join(", ")
1821 ),
1822 );
1823 }
1824
1825 /// Flush to `run.json`, atomically, under the process-global [`home`].
1826 pub fn save(&mut self) -> Result<()> {
1827 let home = home();
1828 self.save_under(&home)
1829 }
1830
1831 /// [`Self::save`], rooted at an explicit `home` instead of the
1832 /// process-global one.
1833 ///
1834 /// For a caller that was already handed its own `home` explicitly — a
1835 /// housekeeping pass, mainly, for the same reason `Queue::at` and the
1836 /// daemon status path are parameters rather than resolved here (see
1837 /// `daemon::drive`'s own doc) — falling through to the global would write
1838 /// back through whichever directory some *other* process or test pinned
1839 /// into that `OnceLock` first, not the one this call was actually handed.
1840 pub fn save_under(&mut self, home: &Path) -> Result<()> {
1841 self.updated_at = Timestamp::now();
1842 let dir = home.join("runs").join(&self.id);
1843 std::fs::create_dir_all(&dir).with_context(|| format!("create {}", dir.display()))?;
1844 let body = serde_json::to_string_pretty(self).context("serialize run state")?;
1845 let tmp = dir.join("run.json.tmp");
1846 std::fs::write(&tmp, &body).with_context(|| format!("write {}", tmp.display()))?;
1847 std::fs::rename(&tmp, dir.join("run.json")).with_context(|| "replace run.json")?;
1848 Ok(())
1849 }
1850
1851 /// Load a run by id or unambiguous id prefix.
1852 pub fn load(id: &str) -> Result<Self> {
1853 let resolved = resolve_id(id)?;
1854 let path = run_dir(&resolved).join("run.json");
1855 let body =
1856 std::fs::read_to_string(&path).with_context(|| format!("read {}", path.display()))?;
1857 let state: Self =
1858 serde_json::from_str(&body).with_context(|| format!("parse {}", path.display()))?;
1859 migrate_schema(state)
1860 }
1861}
1862
1863fn migrate_schema(mut state: RunState) -> Result<RunState> {
1864 // Schema 5 predates deferred e2e. Its empty e2e lists therefore mean
1865 // "not configured", never "deferred"; serde's field defaults retain
1866 // exactly that representation while this migration permits resumes.
1867 if state.schema == 5 {
1868 state.schema = 6;
1869 }
1870 // Schema 6 predates `gate_ran` and could not tell "never attempted or
1871 // resource-blocked" apart from "ran with zero commands configured" — see
1872 // `SCHEMA`'s doc for schema 7. A non-empty `gate` is a real recorded
1873 // attempt either way, so it is trusted as `gate_ran = true` rather than
1874 // spent again; an empty one is simply handed back to the next `gate()`
1875 // call, which re-attempts it and, for the zero-commands case, resolves
1876 // instantly.
1877 if state.schema == 6 {
1878 state.gate_ran = !state.gate.is_empty();
1879 state.schema = 7;
1880 }
1881 // Schema 7's main review loop always checked `e2e` against the round's
1882 // own `head`, it just never wrote that fact into `verified_head` unless
1883 // a catch-up run had checked a *different* commit — see `SCHEMA`'s doc
1884 // for schema 8. Reconstructing `Some(head)` for a round whose `e2e` held
1885 // a real attempt restores a fact that was always true; `verified_at` has
1886 // no historical value to recover and stays `None`.
1887 if state.schema == 7 {
1888 for round in &mut state.reviews {
1889 if round.verified_head.is_none()
1890 && matches!(round.e2e_status(), E2eStatus::Passed | E2eStatus::Failed)
1891 {
1892 round.verified_head = Some(round.head.clone());
1893 }
1894 }
1895 state.schema = 8;
1896 }
1897 // Schema 8 predates `operator_fixes`. There is nothing to reconstruct —
1898 // an old run simply never had one requested — so `#[serde(default)]`
1899 // already left it as the correct empty `Vec`; this only advances the
1900 // version number.
1901 if state.schema == 8 {
1902 state.schema = 9;
1903 }
1904 // Schema 9 predates `RunStatus::VerifiedNoop` and
1905 // `Candidate::verified_noop`. Nothing to reconstruct: an old record never
1906 // made the claim, `#[serde(default)]` already reads `verified_noop` as
1907 // `None` on every candidate, and a `VerifiedNoop` status cannot appear in
1908 // a schema-9 record at all — see `SCHEMA`'s doc for schema 10. This only
1909 // advances the version number.
1910 if state.schema == 9 {
1911 state.schema = SCHEMA;
1912 }
1913 if state.schema != SCHEMA {
1914 bail!(
1915 "run {} was written by a different magi (schema {}, this build \
1916 speaks {SCHEMA})",
1917 state.id,
1918 state.schema
1919 );
1920 }
1921 Ok(state)
1922}
1923
1924impl RunState {
1925 /// The winning candidate, once the tally has run.
1926 pub fn winner(&self) -> Option<&Candidate> {
1927 let label = self.tally.as_ref()?.winner;
1928 self.candidates.iter().find(|c| c.label == label)
1929 }
1930
1931 /// Candidates eligible for judging.
1932 pub fn viable(&self) -> Vec<&Candidate> {
1933 self.candidates.iter().filter(|c| c.viable()).collect()
1934 }
1935
1936 /// Did every candidate write nothing, and every one of them back it with
1937 /// evidence [`crate::graph`]'s adoption guard accepted?
1938 ///
1939 /// All-or-nothing on purpose: one candidate declaring `NO CHANGE NEEDED`
1940 /// while another simply failed to produce anything is not agreement, it
1941 /// is one candidate's unverified claim next to an ordinary loss, and the
1942 /// run must still read as the `Failed` it is. Only ever meaningful when
1943 /// [`Self::viable`] is already empty — a run with any real patch to judge
1944 /// never reaches the caller that asks this.
1945 pub fn all_candidates_verified_noop(&self) -> bool {
1946 !self.candidates.is_empty()
1947 && self
1948 .candidates
1949 .iter()
1950 .all(|c| c.empty && c.verified_noop.is_some())
1951 }
1952
1953 /// Findings still open when the review loop stopped trying: the last
1954 /// round's, exactly when that round was not clean. Empty on a run that
1955 /// never reviewed, or whose last round was clean.
1956 ///
1957 /// This is the last round's findings regardless of what the fixer claims
1958 /// to have addressed in that same round: a round that stopped the loop
1959 /// (round budget spent, or no tree progress for
1960 /// [`crate::graph::STAGNANT_LIMIT`] rounds) never had a *following* round
1961 /// to confirm the fix actually landed, and the self-reported adoption
1962 /// count is not trusted for that judgement either — see
1963 /// [`ReviewRound::progressed`].
1964 pub fn open_findings(&self) -> Vec<&Finding> {
1965 match self.reviews.last() {
1966 Some(r) if !r.clean => r
1967 .reviews
1968 .iter()
1969 .flat_map(|rec| rec.findings.iter())
1970 .collect(),
1971 _ => Vec::new(),
1972 }
1973 }
1974
1975 /// Every finding raised in the most recent review round, regardless of
1976 /// that round's own severity mix — unlike [`Self::open_findings`], not
1977 /// filtered to a round that was not clean. This is the pool `magi fix`
1978 /// reports as available to pick from: a round can conclude clean (no
1979 /// finding blocked merge) while still carrying minor findings nobody
1980 /// has acted on.
1981 pub fn last_round_findings(&self) -> Vec<&Finding> {
1982 self.reviews
1983 .last()
1984 .into_iter()
1985 .flat_map(|r| r.reviews.iter())
1986 .flat_map(|rec| rec.findings.iter())
1987 .collect()
1988 }
1989
1990 /// Look up a finding by id anywhere in this run's review history,
1991 /// together with the round and reviewer record that raised it — the
1992 /// provenance `magi fix` snapshots onto [`OperatorFixFinding`].
1993 pub fn finding(&self, id: &str) -> Option<(&ReviewRound, &ReviewRecord, &Finding)> {
1994 self.reviews.iter().find_map(|round| {
1995 round.reviews.iter().find_map(|rec| {
1996 rec.findings
1997 .iter()
1998 .find(|f| f.id == id)
1999 .map(|f| (round, rec, f))
2000 })
2001 })
2002 }
2003
2004 /// Did this run reach a mergeable status (`Ready` or `Merged`) with
2005 /// review findings still open?
2006 ///
2007 /// That combination is the point of the review hand-off: the review
2008 /// round budget (or an unproductive round, see [`ReviewRound::progressed`])
2009 /// was spent while gate and e2e stayed green, so the run was handed off
2010 /// rather than blocked — but the findings did not disappear, and whoever
2011 /// reads the result should be told they are still there.
2012 pub fn handed_off_with_open_findings(&self) -> bool {
2013 matches!(self.status, RunStatus::Ready | RunStatus::Merged)
2014 && self.reviews.last().is_some_and(|r| !r.clean)
2015 }
2016
2017 /// Reached `Ready` because `[merge] mode = "none"` left it there by
2018 /// design, never to be picked up by the PR-polling merge watcher — as
2019 /// opposed to a `Ready` that is still a plausible landing candidate (a
2020 /// PR closed without merging, or a re-entry onto an already-concluded
2021 /// node). Both leave `status` at `Ready`; only this one leaves the
2022 /// winning branch permanently unwatched, which is what a caller needs to
2023 /// know before labelling the run in a listing.
2024 pub fn unmerged_by_design(&self) -> bool {
2025 self.status == RunStatus::Ready
2026 && self
2027 .merge
2028 .as_ref()
2029 .is_some_and(|m| m.mode == MergeMode::None)
2030 }
2031
2032 /// Local-time creation stamp for reports.
2033 pub fn created_local(&self) -> String {
2034 self.created_at
2035 .to_zoned(jiff::tz::TimeZone::system())
2036 .strftime("%Y-%m-%d %H:%M:%S")
2037 .to_string()
2038 }
2039
2040 /// Assert that this run is safe to delete.
2041 ///
2042 /// Refuses a run a live daemon is working on, and refuses any run whose
2043 /// candidate worktrees and branches have not been folded away with `magi
2044 /// fold`. The fold requirement is the real protection: it is what makes
2045 /// "delete" mean "remove a record" rather than "throw away a worktree
2046 /// somebody may still be editing".
2047 ///
2048 /// `in_flight` has to come from the caller, because a run's own status
2049 /// cannot answer the question. A daemon killed mid-run leaves its status at
2050 /// `implementing` forever, and a guard that trusted that would make every
2051 /// interrupted run permanently undeletable - the operator's only recourse
2052 /// being to edit `run.json` by hand, which is exactly the sort of thing
2053 /// this command exists to avoid. The queue already treats an orphaned
2054 /// `.lock` from a `SIGKILL`ed daemon the same way; this is that rule for
2055 /// runs.
2056 pub fn ensure_can_delete(&self, in_flight: bool) -> Result<()> {
2057 if in_flight {
2058 bail!(
2059 "run {} is being worked on by a live daemon right now",
2060 self.short()
2061 );
2062 }
2063 if self.candidates.iter().any(|c| !c.folded) {
2064 bail!(
2065 "run {} has unfolded candidates; fold first with `magi fold`",
2066 self.short()
2067 );
2068 }
2069 Ok(())
2070 }
2071}
2072
2073/// The short form of a commit, for a label a human or an LLM reads.
2074fn short(commit: &str) -> String {
2075 commit.chars().take(7).collect()
2076}
2077
2078/// The short form of a run id: the trailing block after the last `-`.
2079///
2080/// A free function as well as [`RunState::short`], because callers that have
2081/// only an id - an error message, a daemon status, a route handler - were
2082/// otherwise reimplementing the split, and two spellings of "short id" is one
2083/// rename away from branch names that no longer match their run.
2084pub fn short_of(id: &str) -> &str {
2085 id.split('-').next_back().unwrap_or(id)
2086}
2087
2088/// Where magi keeps its runs.
2089///
2090/// `MAGI_HOME` overrides the default, and [`set_home`] overrides both — which
2091/// is what lets the integration tests drive a whole graph without writing into
2092/// the operator's real history.
2093///
2094/// In a unit test build (`cfg(test)`), falling through to the real
2095/// `<data_local>/magi` is not a fallback worth having: it is exactly how
2096/// three broken fixture runs ended up in the operator's actual history and
2097/// were counted as `unreadable` by the deck. A test that reaches this point
2098/// forgot to call [`set_home`] (or set `MAGI_HOME`) - that is a bug in the
2099/// test, not a case to serve, so it panics instead of writing anywhere.
2100pub fn home() -> PathBuf {
2101 resolve_home(HOME.get().cloned(), std::env::var_os("MAGI_HOME"))
2102}
2103
2104/// The decision `home` makes, taking its two overrides as plain values
2105/// instead of reading the `OnceLock` and the environment itself.
2106///
2107/// Pulled out so the `cfg(test)` panic is asserted directly against a
2108/// `None, None` input, rather than racing every other unit test in the
2109/// binary for who touches the process-global `HOME` first.
2110fn resolve_home(pinned: Option<PathBuf>, magi_home_env: Option<std::ffi::OsString>) -> PathBuf {
2111 if let Some(dir) = pinned {
2112 return dir;
2113 }
2114 if let Some(dir) = magi_home_env {
2115 return PathBuf::from(dir);
2116 }
2117 #[cfg(test)]
2118 {
2119 panic!(
2120 "run::home() was reached in a test without run::set_home() or \
2121 MAGI_HOME; this would write into the operator's real \
2122 <data_local>/magi. Call `run::set_home(temp_dir)` before any \
2123 code path that touches a RunState."
2124 );
2125 }
2126 #[cfg(not(test))]
2127 {
2128 dirs::data_local_dir()
2129 .unwrap_or_else(|| PathBuf::from("."))
2130 .join("magi")
2131 }
2132}
2133
2134/// Pin the run home for this process. The first call wins.
2135pub fn set_home(dir: PathBuf) {
2136 let _ = HOME.set(dir);
2137}
2138
2139static HOME: std::sync::OnceLock<PathBuf> = std::sync::OnceLock::new();
2140
2141/// `<home>/runs`.
2142pub fn runs_root() -> PathBuf {
2143 home().join("runs")
2144}
2145
2146/// The worktree root a run uses when the config sets none: `~/wt/magi`.
2147///
2148/// One definition of the default, so the folder the janitor folds and the
2149/// folder the health view sizes cannot drift apart: a run with no configured
2150/// [`crate::config::Graph::worktree_root`] lays its worktrees exactly here.
2151pub fn default_worktree_root() -> PathBuf {
2152 dirs::home_dir()
2153 .unwrap_or_else(|| PathBuf::from("."))
2154 .join("wt")
2155 .join("magi")
2156}
2157
2158/// Directory for one run id.
2159pub fn run_dir(id: &str) -> PathBuf {
2160 runs_root().join(id)
2161}
2162
2163/// Every run id on disk, newest first.
2164///
2165/// A directory is a run because of its **name**, not because it holds a
2166/// readable `run.json`. A run whose very first save lost the machine's last
2167/// free bytes leaves `<id>/run.json.tmp` and nothing else, and filtering on
2168/// `run.json` made that run invisible everywhere: not in `magi list`, not in
2169/// `runs_unreadable`, not on the phone, so nothing could report it and no
2170/// route could clear it. `88c0` sat like that for two days. Unreadable is
2171/// counted, never hidden - the readers already say why each one cannot be
2172/// read, and `fold_unreadable` is how a record like this leaves.
2173pub fn list_ids() -> Vec<String> {
2174 let mut ids: Vec<String> = std::fs::read_dir(runs_root())
2175 .into_iter()
2176 .flatten()
2177 .flatten()
2178 .filter(|e| e.path().is_dir())
2179 .map(|e| e.file_name().to_string_lossy().into_owned())
2180 .filter(|name| is_run_id(name))
2181 .collect();
2182 // Ids start with a sortable timestamp.
2183 ids.sort_unstable_by(|a, b| b.cmp(a));
2184 ids
2185}
2186
2187/// Does `name` have the shape [`new_id`] mints: `YYYYMMDD-HHMMSS-xxxx`?
2188///
2189/// The test for "this directory is a run", so a stray folder under
2190/// `<home>/runs` is not reported as a broken run.
2191///
2192/// The tag is checked for length and for being alphanumeric, not for being
2193/// hex: real ids are hex, but fixtures across this crate name runs
2194/// `...-dead` / `...-gone` / `...-once`, and a predicate that disowned those
2195/// would be asserting the fixtures' spelling rather than the shape.
2196pub fn is_run_id(name: &str) -> bool {
2197 let mut parts = name.split('-');
2198 let (Some(day), Some(time), Some(tag), None) =
2199 (parts.next(), parts.next(), parts.next(), parts.next())
2200 else {
2201 return false;
2202 };
2203 day.len() == 8
2204 && day.bytes().all(|b| b.is_ascii_digit())
2205 && time.len() == 6
2206 && time.bytes().all(|b| b.is_ascii_digit())
2207 && tag.len() == 4
2208 && tag.bytes().all(|b| b.is_ascii_alphanumeric())
2209}
2210
2211/// Expand an id prefix to exactly one run id.
2212pub fn resolve_id(prefix: &str) -> Result<String> {
2213 // A whole id names its directory, readable state or not: the run whose
2214 // `run.json` never landed still has to be reachable by `magi show` and
2215 // by the fold route, which is the only way its record ever leaves.
2216 if is_run_id(prefix) && run_dir(prefix).is_dir() {
2217 return Ok(prefix.to_owned());
2218 }
2219 let hits: Vec<String> = list_ids()
2220 .into_iter()
2221 .filter(|id| id.starts_with(prefix) || id.ends_with(prefix))
2222 .collect();
2223 match hits.len() {
2224 1 => Ok(hits.into_iter().next().expect("exactly one hit")),
2225 0 => bail!("no run matches `{prefix}`"),
2226 _ => bail!(
2227 "`{prefix}` matches {} runs: {}",
2228 hits.len(),
2229 hits.join(", ")
2230 ),
2231 }
2232}
2233
2234/// The most recent run, if any.
2235pub fn latest_id() -> Option<String> {
2236 list_ids().into_iter().next()
2237}
2238
2239/// `YYYYMMDD-HHMMSS-xxxx`, sortable and short enough for a branch name.
2240///
2241/// The four hex digits are fresh entropy, **not** `blind.seed`. They were the
2242/// seed, and a pinned seed then made the whole id a function of the second it
2243/// started in: two runs a second apart were distinguishable, two in the same
2244/// second were not. Everything keyed on the id collided with them - the run
2245/// directory, `artifacts/`, and the candidate worktrees under
2246/// `wt/magi/<short>/`.
2247///
2248/// `tests/common` pins the seed on purpose, so its integration tests all share
2249/// one suffix. On Windows the suite is slow enough that the seconds differ and
2250/// nothing showed; on Linux `graph_dropped_stream`'s three tests run inside
2251/// 16s, so two of them shared a run directory and the second read an artifact
2252/// the first had written (`impl-B-resume.out`) - a failure that looked like the
2253/// resume logic misbehaving and was really two runs in one directory.
2254///
2255/// A seed exists to make the *blind* decisions reproducible: label assignment
2256/// and per-judge presentation order. It was never meant to name the run, and
2257/// `RunState::seed` still carries it for what it is for.
2258fn new_id() -> String {
2259 let stamp = Zoned::now().strftime("%Y%m%d-%H%M%S");
2260 let entropy = crate::rng::entropy();
2261 format!("{stamp}-{:04x}", (entropy ^ (entropy >> 32)) & 0xffff)
2262}
2263
2264/// Keep the last `max` bytes of `text`, on a line boundary.
2265pub fn tail(text: &str, max: usize) -> String {
2266 if text.len() <= max {
2267 return text.to_owned();
2268 }
2269 let mut cut = text.len() - max;
2270 while cut < text.len() && !text.is_char_boundary(cut) {
2271 cut += 1;
2272 }
2273 let slice = &text[cut..];
2274 let start = slice.find('\n').map_or(0, |i| i + 1);
2275 format!(
2276 "[... {} earlier bytes omitted ...]\n{}",
2277 cut,
2278 &slice[start..]
2279 )
2280}
2281
2282/// Path of a run artifact.
2283pub fn artifact_path(run: &RunState, name: &str) -> PathBuf {
2284 run.dir().join("artifacts").join(name)
2285}
2286
2287/// Write an artifact, creating the directory if needed.
2288pub fn write_artifact(run: &RunState, name: &str, body: &str) -> Result<PathBuf> {
2289 let path = artifact_path(run, name);
2290 if let Some(parent) = path.parent() {
2291 std::fs::create_dir_all(parent).with_context(|| format!("create {}", parent.display()))?;
2292 }
2293 std::fs::write(&path, body).with_context(|| format!("write {}", path.display()))?;
2294 Ok(path)
2295}
2296
2297/// Read an artifact back, e.g. a stored patch on resume.
2298pub fn read_artifact(run: &RunState, name: &str) -> Option<String> {
2299 std::fs::read_to_string(artifact_path(run, name)).ok()
2300}
2301
2302#[cfg(test)]
2303mod tests {
2304 use super::*;
2305
2306 fn state() -> RunState {
2307 RunState::new(
2308 PathBuf::from("/repo"),
2309 "main".to_owned(),
2310 "abc1234def".to_owned(),
2311 "add retries".to_owned(),
2312 Config::default(),
2313 )
2314 }
2315
2316 #[test]
2317 fn resolve_home_prefers_the_pin_then_the_env_var() {
2318 let pinned = PathBuf::from("/pinned");
2319 assert_eq!(
2320 resolve_home(Some(pinned.clone()), Some("/env".into())),
2321 pinned,
2322 "a pin wins even over MAGI_HOME"
2323 );
2324 assert_eq!(
2325 resolve_home(None, Some("/env".into())),
2326 PathBuf::from("/env")
2327 );
2328 }
2329
2330 #[test]
2331 #[should_panic(expected = "run::set_home()")]
2332 fn resolve_home_refuses_to_fall_back_to_the_operators_real_home() {
2333 // Neither override present is exactly the state a test reaches by
2334 // forgetting `set_home`/`MAGI_HOME` - the accident that put three
2335 // broken fixture runs into the operator's real history. Asserted
2336 // against the pure decision directly, not `home()` itself, because
2337 // `HOME` is a process-wide `OnceLock` another test may have already
2338 // set - this must not depend on test execution order.
2339 resolve_home(None, None);
2340 }
2341
2342 #[test]
2343 fn a_run_is_named_by_shape_so_a_state_less_directory_is_still_a_run() {
2344 // The shape `new_id` mints. A directory answering to it is a run even
2345 // with no readable `run.json`: that is how a save that ran out of
2346 // disk stays visible instead of vanishing from every listing.
2347 assert!(is_run_id(&new_id()));
2348 assert!(is_run_id("20260904-014540-88c0"));
2349 // Not runs: a stray folder, a truncated id, a non-hex tag, and an id
2350 // with an extra segment (a worktree label, say).
2351 assert!(!is_run_id("scratch"));
2352 assert!(!is_run_id("20260904-014540"));
2353 assert!(!is_run_id("20260904-014540-88c0f"));
2354 assert!(!is_run_id("2026090x-014540-88c0"));
2355 assert!(!is_run_id("20260904-014540-88c0-A"));
2356 }
2357
2358 #[test]
2359 fn ids_are_sortable_and_short_suffixed() {
2360 let s = state();
2361 let parts: Vec<&str> = s.id.split('-').collect();
2362 assert_eq!(parts.len(), 3);
2363 assert_eq!(parts[0].len(), 8);
2364 assert_eq!(parts[1].len(), 6);
2365 assert_eq!(parts[2].len(), 4);
2366 assert_eq!(s.short(), parts[2]);
2367 }
2368
2369 #[test]
2370 fn branch_names_carry_the_label_not_the_author() {
2371 let s = state();
2372 let b = s.branch_for('B');
2373 assert_eq!(b, format!("magi/{}/B", s.short()));
2374 assert!(!b.contains("claude"));
2375 }
2376
2377 /// A pinned seed reproduces the blind decisions. It must **not** reproduce
2378 /// the run's identity.
2379 ///
2380 /// `assert_eq!(a.short(), b.short())` used to stand where the last
2381 /// assertion is now, and it was pinning the defect: with the id's suffix
2382 /// derived from the seed, two runs started in the same second were the
2383 /// same run as far as the filesystem was concerned - one directory, one
2384 /// `artifacts/`, one set of candidate worktrees. `tests/common` pins a
2385 /// seed for every integration test, so on Linux, where the suite is fast,
2386 /// two tests in `graph_dropped_stream` shared a directory and one read the
2387 /// other's artifact.
2388 #[test]
2389 fn a_pinned_seed_is_reproducible_but_never_the_run_id() {
2390 let mut cfg = Config::default();
2391 cfg.blind.seed = Some(1234);
2392 let a = RunState::new(
2393 PathBuf::from("/r"),
2394 "main".to_owned(),
2395 "c".to_owned(),
2396 "t".to_owned(),
2397 cfg.clone(),
2398 );
2399 let b = RunState::new(
2400 PathBuf::from("/r"),
2401 "main".to_owned(),
2402 "c".to_owned(),
2403 "t".to_owned(),
2404 cfg,
2405 );
2406 // What the seed is for: the same shuffles, run after run.
2407 assert_eq!(a.seed, 1234);
2408 assert_eq!(a.seed, b.seed);
2409 // What it is not for. Two runs are two runs, in the same second or
2410 // not, and everything keyed on the id depends on that.
2411 assert_ne!(
2412 a.id, b.id,
2413 "two runs sharing an id share a directory, artifacts and worktrees"
2414 );
2415 }
2416
2417 #[test]
2418 fn status_terminality() {
2419 assert!(RunStatus::Merged.done());
2420 assert!(RunStatus::Blocked.done());
2421 assert!(!RunStatus::Reviewing.done());
2422 }
2423
2424 fn overrun_seat(now: Timestamp, elapsed_secs: i64, timeout_secs: u64) -> ActiveSeat {
2425 ActiveSeat {
2426 node: "implement".to_owned(),
2427 started_at: now - jiff::SignedDuration::new(elapsed_secs, 0),
2428 timeout_secs,
2429 attempt: 0,
2430 task: None,
2431 command: None,
2432 index: None,
2433 total: None,
2434 }
2435 }
2436
2437 #[test]
2438 fn active_all_overrun_requires_every_seat_past_its_own_timeout() {
2439 let mut s = state();
2440 let now = Timestamp::now();
2441 assert!(
2442 !s.active_all_overrun(now),
2443 "nothing active is not evidence of anything"
2444 );
2445
2446 s.active
2447 .insert("impl-A".to_owned(), overrun_seat(now, 21_000, 3_600));
2448 assert!(
2449 s.active_all_overrun(now),
2450 "21000s elapsed against a 3600s budget"
2451 );
2452
2453 // A seat still well within its own budget means the run is not
2454 // provably dead, however far its sibling has overrun.
2455 s.active
2456 .insert("impl-B".to_owned(), overrun_seat(now, 0, 3_600));
2457 assert!(!s.active_all_overrun(now));
2458 }
2459
2460 /// A daemon claim wins outright, whatever `driver_pid` or either query
2461 /// says — the stronger, independently-heartbeating signal. Neither query
2462 /// closure is even called: a daemon claim short-circuits before either
2463 /// one, which panicking closures here prove.
2464 #[test]
2465 fn liveness_reads_live_from_a_daemon_claim_alone() {
2466 let mut s = state();
2467 s.driver_pid = None;
2468 assert_eq!(
2469 s.liveness_with(
2470 true,
2471 |_| panic!("a daemon claim needs no pid query"),
2472 |_| panic!("a daemon claim needs no identity query")
2473 ),
2474 Liveness::Live,
2475 "a daemon claim needs no pid to back it up"
2476 );
2477 }
2478
2479 /// The gap `driver_pid` closes: no daemon claim (every manual `magi run`
2480 /// / `magi review`), but the recorded pid answers alive *and* the
2481 /// process currently holding it still carries the same start-time
2482 /// marker this run recorded — proof it is genuinely the same process,
2483 /// not merely the same number.
2484 #[test]
2485 fn liveness_reads_live_from_a_confirmed_pid_with_a_matching_identity() {
2486 let mut s = state();
2487 s.driver_pid = Some(4242);
2488 s.driver_started_at = Some("2026-09-22T10:00:00Z".to_owned());
2489 assert_eq!(
2490 s.liveness_with(
2491 false,
2492 |pid| {
2493 assert_eq!(pid, 4242);
2494 Some(true)
2495 },
2496 |pid| {
2497 assert_eq!(pid, 4242);
2498 Some("2026-09-22T10:00:00Z".to_owned())
2499 }
2500 ),
2501 Liveness::Live
2502 );
2503 }
2504
2505 /// No daemon claim and the recorded pid confirmed gone by the OS itself
2506 /// — dead outright, and the identity query is never even reached (a
2507 /// panicking closure proves it), since there is nothing left to
2508 /// corroborate.
2509 #[test]
2510 fn liveness_reads_dead_from_a_confirmed_dead_pid() {
2511 let mut s = state();
2512 s.driver_pid = Some(4242);
2513 assert_eq!(
2514 s.liveness_with(
2515 false,
2516 |_| Some(false),
2517 |_| panic!("a confirmed-dead pid needs no identity query")
2518 ),
2519 Liveness::Dead
2520 );
2521 }
2522
2523 /// The gap this task's review round exists to close: a killed manual
2524 /// run's pid gets handed to a wholly unrelated later process. `pid_status`
2525 /// alone would read that as `Live` — the reused pid really is alive —
2526 /// but the process now holding it started at a different moment than the
2527 /// one this run recorded, so this must read `Dead`, not `Live`: a
2528 /// mismatch is exactly as good as proof the original driver is gone.
2529 #[test]
2530 fn liveness_reads_dead_when_a_live_pid_no_longer_matches_the_recorded_start_time() {
2531 let mut s = state();
2532 s.driver_pid = Some(4242);
2533 s.driver_started_at = Some("2026-09-22T10:00:00Z".to_owned());
2534 assert_eq!(
2535 s.liveness_with(
2536 false,
2537 |_| Some(true),
2538 |_| Some("2026-09-22T11:30:00Z".to_owned())
2539 ),
2540 Liveness::Dead,
2541 "the pid is alive, but under a different process than the one this run recorded"
2542 );
2543 }
2544
2545 /// Missing information never collapses to `Dead`: an old run with no
2546 /// `driver_pid` at all, a `driver_pid` this build could not query, a live
2547 /// pid with no recorded start time to compare (an even older run, before
2548 /// that field existed), and a live pid whose current identity this build
2549 /// could not re-query, all read as `Unknown` — never a guess in either
2550 /// direction.
2551 #[test]
2552 fn liveness_never_guesses_out_of_missing_information() {
2553 let mut s = state();
2554 s.driver_pid = None;
2555 assert_eq!(
2556 s.liveness_with(
2557 false,
2558 |_| panic!("no pid to query"),
2559 |_| panic!("no pid to query")
2560 ),
2561 Liveness::Unknown,
2562 "no driver_pid recorded at all — an old run predating this field"
2563 );
2564
2565 s.driver_pid = Some(4242);
2566 assert_eq!(
2567 s.liveness_with(false, |_| None, |_| panic!("inconclusive already")),
2568 Liveness::Unknown,
2569 "a pid to ask, but the platform could not answer for it"
2570 );
2571
2572 s.driver_started_at = None;
2573 assert_eq!(
2574 s.liveness_with(false, |_| Some(true), |_| Some("anything".to_owned())),
2575 Liveness::Unknown,
2576 "a live pid, but no recorded marker to corroborate it against — an old run \
2577 predating `driver_started_at`"
2578 );
2579
2580 s.driver_started_at = Some("2026-09-22T10:00:00Z".to_owned());
2581 assert_eq!(
2582 s.liveness_with(false, |_| Some(true), |_| None),
2583 Liveness::Unknown,
2584 "a live pid and a recorded marker, but the identity re-query itself failed"
2585 );
2586 }
2587
2588 #[test]
2589 fn abandon_clears_active_and_fails_a_non_terminal_run() {
2590 let mut s = state();
2591 s.status = RunStatus::Implementing;
2592 let now = Timestamp::now();
2593 s.active
2594 .insert("impl-A".to_owned(), overrun_seat(now, 21_000, 3_600));
2595
2596 s.abandon("daemon");
2597
2598 assert!(s.active.is_empty());
2599 assert_eq!(s.status, RunStatus::Failed);
2600 assert!(
2601 s.events
2602 .last()
2603 .expect("an event was logged")
2604 .message
2605 .contains("impl-A"),
2606 "the event names the abandoned seat"
2607 );
2608 }
2609
2610 #[test]
2611 fn abandon_never_overwrites_a_status_already_terminal() {
2612 let mut s = state();
2613 s.status = RunStatus::Ready;
2614 let now = Timestamp::now();
2615 s.active
2616 .insert("impl-A".to_owned(), overrun_seat(now, 21_000, 3_600));
2617
2618 s.abandon("daemon");
2619
2620 assert!(s.active.is_empty());
2621 assert_eq!(
2622 s.status,
2623 RunStatus::Ready,
2624 "a run already done must not be relabelled Failed"
2625 );
2626 }
2627
2628 #[test]
2629 fn candidate_viability_excludes_empty_and_failed() {
2630 let mut c = Candidate {
2631 index: 0,
2632 label: 'A',
2633 agent: "a".to_owned(),
2634 branch: "b".to_owned(),
2635 worktree: PathBuf::from("/w"),
2636 summary: String::new(),
2637 stat: String::new(),
2638 files: 1,
2639 commits: 1,
2640 empty: false,
2641 failed: None,
2642 verified_noop: None,
2643 duration_ms: 0,
2644 folded: false,
2645 };
2646 assert!(c.viable());
2647 c.empty = true;
2648 assert!(!c.viable());
2649 c.empty = false;
2650 c.failed = Some("timeout".to_owned());
2651 assert!(!c.viable());
2652 }
2653
2654 #[test]
2655 fn build_failure_is_distinguished_from_a_failing_test() {
2656 let link_race = CommandOutcome {
2657 command: "cargo test".to_owned(),
2658 code: Some(1),
2659 output_tail: "LINK : fatal error LNK1104: cannot open file \
2660 'graph_dirty_tree-71d4dc8e.exe'\n\
2661 error: could not compile `magi-cli` (test \"graph_dirty_tree\")"
2662 .to_owned(),
2663 duration_ms: 500,
2664 resource_blocked: false,
2665 };
2666 assert!(!link_race.ok());
2667 assert!(link_race.build_failed());
2668
2669 let failing_test = CommandOutcome {
2670 command: "cargo test".to_owned(),
2671 code: Some(101),
2672 output_tail: "thread 'it_works' panicked at 'assertion failed'".to_owned(),
2673 duration_ms: 500,
2674 resource_blocked: false,
2675 };
2676 assert!(!failing_test.ok());
2677 assert!(
2678 !failing_test.build_failed(),
2679 "a real test failure must not be classed as a build failure"
2680 );
2681
2682 let passing = CommandOutcome {
2683 command: "cargo test".to_owned(),
2684 code: Some(0),
2685 output_tail: String::new(),
2686 duration_ms: 500,
2687 resource_blocked: false,
2688 };
2689 assert!(passing.ok());
2690 assert!(!passing.build_failed());
2691 }
2692
2693 #[test]
2694 fn tail_keeps_the_end_on_a_line_boundary() {
2695 let text = (0..100).map(|i| format!("line {i}\n")).collect::<String>();
2696 let t = tail(&text, 40);
2697 assert!(t.starts_with("[..."));
2698 assert!(t.ends_with("line 99\n"));
2699 assert!(t.len() < 120);
2700 assert_eq!(tail("short", 40), "short");
2701 }
2702
2703 #[test]
2704 fn tail_survives_multibyte_cuts() {
2705 let text = "あ".repeat(50);
2706 let t = tail(&text, 10);
2707 assert!(t.contains("earlier bytes omitted"));
2708 assert!(t.ends_with('あ'));
2709 }
2710
2711 fn finding(id: &str, severity: crate::verdict::Severity) -> crate::verdict::Finding {
2712 crate::verdict::Finding {
2713 id: id.to_owned(),
2714 severity,
2715 file: None,
2716 line: None,
2717 title: "x".to_owned(),
2718 detail: String::new(),
2719 }
2720 }
2721
2722 fn round(clean: bool, findings: Vec<crate::verdict::Finding>) -> ReviewRound {
2723 ReviewRound {
2724 round: 1,
2725 head: "h".to_owned(),
2726 verified_head: None,
2727 verified_at: None,
2728 reviews: vec![ReviewRecord {
2729 attempts: 0,
2730 reviewer: 1,
2731 agent: "a".to_owned(),
2732 summary: String::new(),
2733 findings,
2734 vote: None,
2735 failed: None,
2736 duration_ms: 0,
2737 }],
2738 e2e: Vec::new(),
2739 verify_retried: false,
2740 e2e_deferred: false,
2741 e2e_defer_reason: None,
2742 fix: None,
2743 blocking: 0,
2744 answered: 1,
2745 expected: 1,
2746 clean,
2747 progressed: false,
2748 vote_split: false,
2749 reconsideration: Vec::new(),
2750 verdict: None,
2751 }
2752 }
2753
2754 #[test]
2755 fn e2e_status_tells_deferred_apart_from_not_configured() {
2756 let mut r = round(false, Vec::new());
2757 assert_eq!(r.e2e_status(), E2eStatus::NotConfigured);
2758
2759 r.e2e_deferred = true;
2760 assert_eq!(
2761 r.e2e_status(),
2762 E2eStatus::Deferred,
2763 "an empty e2e must not read as unconfigured once it was deferred on purpose"
2764 );
2765
2766 r.e2e = vec![CommandOutcome {
2767 command: "test".to_owned(),
2768 code: Some(0),
2769 output_tail: String::new(),
2770 duration_ms: 0,
2771 resource_blocked: false,
2772 }];
2773 assert_eq!(
2774 r.e2e_status(),
2775 E2eStatus::Passed,
2776 "a round with real outcomes is never read as deferred, even if the flag is still set"
2777 );
2778 }
2779
2780 #[test]
2781 fn e2e_status_reports_a_real_failure_as_failed_not_deferred() {
2782 let mut r = round(false, Vec::new());
2783 r.e2e = vec![CommandOutcome {
2784 command: "test".to_owned(),
2785 code: Some(1),
2786 output_tail: "boom".to_owned(),
2787 duration_ms: 0,
2788 resource_blocked: false,
2789 }];
2790 assert_eq!(r.e2e_status(), E2eStatus::Failed);
2791 }
2792
2793 #[test]
2794 fn e2e_status_never_reads_a_resource_block_as_a_failure() {
2795 // The exact shape of contention on the shared build cache: `e2e`
2796 // holds one outcome, and it is `resource_blocked`, never a command
2797 // that actually ran and produced a red exit code.
2798 let mut r = round(false, Vec::new());
2799 r.e2e = vec![CommandOutcome {
2800 command: "(waiting for the shared build cache)".to_owned(),
2801 code: None,
2802 output_tail: "contended".to_owned(),
2803 duration_ms: 0,
2804 resource_blocked: true,
2805 }];
2806 assert_eq!(
2807 r.e2e_status(),
2808 E2eStatus::ResourceBlocked,
2809 "magi's own inability to get a command to run must not read as a verdict on the \
2810 patch"
2811 );
2812 }
2813
2814 #[test]
2815 fn verification_summary_is_silent_when_there_is_nothing_worth_saying() {
2816 let mut r = round(true, Vec::new());
2817 assert!(
2818 r.verification_summary("h").is_none(),
2819 "no verify.e2e configured: nothing to surface"
2820 );
2821 r.e2e = vec![CommandOutcome {
2822 command: "test".to_owned(),
2823 code: Some(0),
2824 output_tail: String::new(),
2825 duration_ms: 0,
2826 resource_blocked: false,
2827 }];
2828 assert!(
2829 r.verification_summary("h").is_none(),
2830 "a green result needs no skepticism attached to it"
2831 );
2832 }
2833
2834 #[test]
2835 fn verification_summary_tells_the_current_head_apart_from_an_earlier_one() {
2836 let mut r = round(false, Vec::new());
2837 r.head = "h1".to_owned();
2838 r.e2e = vec![CommandOutcome {
2839 command: "test".to_owned(),
2840 code: Some(1),
2841 output_tail: "boom".to_owned(),
2842 duration_ms: 0,
2843 resource_blocked: false,
2844 }];
2845 r.verified_head = Some("h1".to_owned());
2846 r.verified_at = Some(Timestamp::now());
2847
2848 let fresh = r.verification_summary("h1").expect("a failure is surfaced");
2849 assert!(
2850 fresh.label.contains("this is the head being looked at now"),
2851 "{}",
2852 fresh.label
2853 );
2854 assert_eq!(fresh.tail.as_deref(), Some("$ test\nboom\n"));
2855
2856 let stale = r.verification_summary("h2").expect("still surfaced");
2857 assert!(
2858 stale.label.contains("an earlier head, since superseded"),
2859 "a result about a different commit than the one being looked at now must say so, \
2860 not read as current: {}",
2861 stale.label
2862 );
2863 }
2864
2865 #[test]
2866 fn verification_summary_marks_a_resource_block_and_a_deferral_distinctly_from_a_failure() {
2867 let mut r = round(false, Vec::new());
2868 r.e2e = vec![CommandOutcome {
2869 command: "(waiting for the shared build cache)".to_owned(),
2870 code: None,
2871 output_tail: "contended".to_owned(),
2872 duration_ms: 0,
2873 resource_blocked: true,
2874 }];
2875 let blocked = r
2876 .verification_summary("h")
2877 .expect("a resource block is still surfaced, never silent");
2878 assert!(blocked.label.contains("could not run"));
2879 // No command actually ran, but which operation was attempted is
2880 // still a fact worth showing — never silent past the label either.
2881 let tail = blocked
2882 .tail
2883 .expect("the attempted operation is still named");
2884 assert!(tail.contains("(waiting for the shared build cache)"));
2885 assert!(tail.contains("contended"));
2886
2887 let mut d = round(false, Vec::new());
2888 d.e2e_deferred = true;
2889 d.e2e_defer_reason = Some("2 blocking finding(s) already required a fix".to_owned());
2890 let deferred = d.verification_summary("h").expect("deferred is surfaced");
2891 assert!(deferred.label.contains("deferred to the fixer"));
2892 assert!(deferred.label.contains("2 blocking finding(s)"));
2893 assert!(deferred.tail.is_none());
2894 }
2895
2896 #[test]
2897 fn verification_summary_says_unknown_rather_than_guessing_a_time_or_a_commit() {
2898 let mut r = round(false, Vec::new());
2899 r.e2e = vec![CommandOutcome {
2900 command: "test".to_owned(),
2901 code: Some(1),
2902 output_tail: "boom".to_owned(),
2903 duration_ms: 0,
2904 resource_blocked: false,
2905 }];
2906 // verified_head/verified_at left at their default `None` — exactly
2907 // the shape a schema-7 round with no reconstructable timestamp has.
2908 let summary = r.verification_summary("h").expect("a failure is surfaced");
2909 assert!(summary.label.contains("commit unknown"));
2910 assert!(summary.label.contains("checked at: unknown"));
2911 }
2912
2913 #[test]
2914 fn gate_status_tells_not_run_apart_from_passed_with_no_commands() {
2915 let mut s = state();
2916 assert_eq!(s.gate_status(), GateStatus::NotRun);
2917
2918 s.gate_ran = true;
2919 assert_eq!(
2920 s.gate_status(),
2921 GateStatus::PassedWithNoCommands,
2922 "an empty gate must read as a real pass once gate_ran says it actually ran"
2923 );
2924
2925 s.gate = vec![CommandOutcome {
2926 command: "cargo make check".to_owned(),
2927 code: Some(0),
2928 output_tail: String::new(),
2929 duration_ms: 0,
2930 resource_blocked: false,
2931 }];
2932 assert_eq!(s.gate_status(), GateStatus::Passed);
2933
2934 s.gate[0].code = Some(1);
2935 assert_eq!(s.gate_status(), GateStatus::Failed);
2936
2937 s.gate_ran = false;
2938 assert_eq!(
2939 s.gate_status(),
2940 GateStatus::NotRun,
2941 "gate_ran false must win even over a non-empty gate left from a stale record"
2942 );
2943 }
2944
2945 #[test]
2946 fn open_findings_is_empty_when_the_last_round_was_clean() {
2947 let mut s = state();
2948 s.reviews = vec![round(
2949 true,
2950 vec![finding("R1-1-1", crate::verdict::Severity::Minor)],
2951 )];
2952 assert!(s.open_findings().is_empty());
2953 }
2954
2955 #[test]
2956 fn open_findings_reads_the_last_non_clean_round() {
2957 let mut s = state();
2958 s.reviews = vec![round(
2959 false,
2960 vec![finding("R1-1-1", crate::verdict::Severity::Major)],
2961 )];
2962 let open = s.open_findings();
2963 assert_eq!(open.len(), 1);
2964 assert_eq!(open[0].id, "R1-1-1");
2965 }
2966
2967 #[test]
2968 fn handed_off_with_open_findings_needs_a_mergeable_status_and_an_open_round() {
2969 let mut s = state();
2970 s.reviews = vec![round(
2971 false,
2972 vec![finding("R1-1-1", crate::verdict::Severity::Major)],
2973 )];
2974
2975 s.status = RunStatus::Blocked;
2976 assert!(
2977 !s.handed_off_with_open_findings(),
2978 "a blocked run is not a hand-off"
2979 );
2980
2981 s.status = RunStatus::Ready;
2982 assert!(s.handed_off_with_open_findings());
2983
2984 s.reviews = vec![round(true, Vec::new())];
2985 assert!(
2986 !s.handed_off_with_open_findings(),
2987 "a clean last round has nothing to hand off"
2988 );
2989 }
2990
2991 #[test]
2992 fn unmerged_by_design_is_only_ready_reached_via_merge_mode_none() {
2993 let mut s = state();
2994
2995 s.status = RunStatus::Ready;
2996 assert!(
2997 !s.unmerged_by_design(),
2998 "no merge outcome recorded at all must not be flagged"
2999 );
3000
3001 s.merge = Some(MergeOutcome {
3002 mode: MergeMode::None,
3003 ok: true,
3004 detail: "git merge --no-ff magi/x/A".to_owned(),
3005 });
3006 assert!(
3007 s.unmerged_by_design(),
3008 "Ready reached through mode none is the case this exists to flag"
3009 );
3010
3011 // A PR closed without merging also leaves `status` at `Ready`, but
3012 // through `mode = "pr"` — a run that may still have been landable by
3013 // a person watching the PR, unlike the honest mode-none no-op.
3014 s.merge = Some(MergeOutcome {
3015 mode: MergeMode::Pr,
3016 ok: false,
3017 detail: "https://example.com/pr/1 was closed without merging".to_owned(),
3018 });
3019 assert!(
3020 !s.unmerged_by_design(),
3021 "a closed pull request is a different Ready and must not be relabelled"
3022 );
3023
3024 // Same signal must not fire before the run actually got there.
3025 s.status = RunStatus::Gating;
3026 s.merge = Some(MergeOutcome {
3027 mode: MergeMode::None,
3028 ok: true,
3029 detail: "git merge --no-ff magi/x/A".to_owned(),
3030 });
3031 assert!(
3032 !s.unmerged_by_design(),
3033 "status must actually be Ready, not merely have a stale mode-none merge record"
3034 );
3035 }
3036
3037 #[test]
3038 fn state_round_trips_through_json() {
3039 let s = state();
3040 let body = serde_json::to_string(&s).unwrap();
3041 let back: RunState = serde_json::from_str(&body).unwrap();
3042 assert_eq!(back.id, s.id);
3043 assert_eq!(back.instruction, "add retries");
3044 assert_eq!(back.status, RunStatus::Prep);
3045 }
3046
3047 #[test]
3048 fn a_round_recorded_before_e2e_deferral_existed_still_loads() {
3049 // Exactly the shape a pre-existing `run.json` has for a round: no
3050 // `e2e_deferred`, no `e2e_defer_reason`. Every round used to run e2e
3051 // unconditionally, so the honest reading of an old record's silence
3052 // on this is "it was not deferred" — `false`/`None`, not a load
3053 // failure and not a schema bump (see the `SCHEMA` doc comment: a
3054 // purely additive field whose absence has one unambiguous meaning
3055 // does not need one).
3056 let body = r#"{
3057 "round": 1,
3058 "head": "deadbeef",
3059 "reviews": [],
3060 "e2e": [],
3061 "verify_retried": false,
3062 "fix": null,
3063 "blocking": 0,
3064 "answered": 1,
3065 "expected": 1,
3066 "clean": true
3067 }"#;
3068 let r: ReviewRound = serde_json::from_str(body).expect("an old-shaped round must load");
3069 assert!(!r.e2e_deferred);
3070 assert!(r.e2e_defer_reason.is_none());
3071 assert_eq!(r.e2e_status(), E2eStatus::NotConfigured);
3072 }
3073
3074 #[test]
3075 fn schema_five_state_migrates_old_empty_e2e_and_legacy_verify_budget() {
3076 let mut value = serde_json::to_value(state()).expect("serialize state");
3077 let object = value.as_object_mut().expect("state object");
3078 object.insert("schema".to_owned(), serde_json::json!(5));
3079 let graph = object["config"]["graph"]
3080 .as_object_mut()
3081 .expect("graph object");
3082 graph.insert("timeout_review".to_owned(), serde_json::json!(3600));
3083 graph.remove("timeout_verify");
3084 let review = object["reviews"].as_array_mut().expect("reviews");
3085 review.push(serde_json::json!({
3086 "round": 1, "head": "old", "reviews": [], "e2e": [],
3087 "verify_retried": false, "blocking": 0, "answered": 1,
3088 "expected": 1, "clean": true
3089 }));
3090 let old: RunState = serde_json::from_value(value).expect("schema-5 shape parses");
3091 let migrated = migrate_schema(old).expect("schema 5 migrates");
3092 assert_eq!(migrated.schema, SCHEMA);
3093 assert_eq!(migrated.config.graph.verify_timeout(), 3600);
3094 assert_eq!(migrated.reviews[0].e2e_status(), E2eStatus::NotConfigured);
3095 }
3096
3097 #[test]
3098 fn schema_six_state_with_a_recorded_gate_migrates_to_gate_ran_true() {
3099 let mut value = serde_json::to_value(state()).expect("serialize state");
3100 let object = value.as_object_mut().expect("state object");
3101 object.insert("schema".to_owned(), serde_json::json!(6));
3102 object.insert(
3103 "gate".to_owned(),
3104 serde_json::json!([{
3105 "command": "cargo make check",
3106 "code": 0,
3107 "output_tail": "",
3108 "duration_ms": 0,
3109 "resource_blocked": false
3110 }]),
3111 );
3112 let old: RunState = serde_json::from_value(value).expect("schema-6 shape parses");
3113 let migrated = migrate_schema(old).expect("schema 6 migrates");
3114 assert_eq!(migrated.schema, SCHEMA);
3115 assert!(
3116 migrated.gate_ran,
3117 "a non-empty recorded gate is a real attempt, not an unrun one"
3118 );
3119 assert_eq!(migrated.gate_status(), GateStatus::Passed);
3120 }
3121
3122 #[test]
3123 fn schema_six_state_with_an_empty_gate_migrates_to_gate_ran_false_and_is_retried() {
3124 // The exact shape of the stuck `shoka` run this schema bump fixes:
3125 // `verify.gate` empty, `gate` empty, schema 6. It must come back as
3126 // "not yet run" so the next `gate()` call re-attempts it — and for a
3127 // repo with no gate commands configured, that resolves instantly to
3128 // `PassedWithNoCommands` instead of staying stuck forever.
3129 let mut value = serde_json::to_value(state()).expect("serialize state");
3130 let object = value.as_object_mut().expect("state object");
3131 object.insert("schema".to_owned(), serde_json::json!(6));
3132 object.insert("gate".to_owned(), serde_json::json!([]));
3133 let old: RunState = serde_json::from_value(value).expect("schema-6 shape parses");
3134 let migrated = migrate_schema(old).expect("schema 6 migrates");
3135 assert_eq!(migrated.schema, SCHEMA);
3136 assert!(
3137 !migrated.gate_ran,
3138 "an empty gate on schema 6 is ambiguous and must be treated as unrun"
3139 );
3140 assert_eq!(migrated.gate_status(), GateStatus::NotRun);
3141 }
3142
3143 #[test]
3144 fn schema_seven_state_reconstructs_verified_head_for_a_round_that_actually_ran_e2e() {
3145 // Schema 7's main review loop always checked `e2e` against the
3146 // round's own `head` — it just never wrote that into `verified_head`
3147 // unless a catch-up run had checked a *different* commit. Migrating
3148 // to schema 8 restores that always-true fact instead of leaving a
3149 // reader to assume it.
3150 let mut value = serde_json::to_value(state()).expect("serialize state");
3151 let object = value.as_object_mut().expect("state object");
3152 object.insert("schema".to_owned(), serde_json::json!(7));
3153 let reviews = object["reviews"].as_array_mut().expect("reviews");
3154 reviews.push(serde_json::json!({
3155 "round": 1, "head": "deadbeef", "reviews": [],
3156 "e2e": [{
3157 "command": "cargo test", "code": 0, "output_tail": "",
3158 "duration_ms": 0, "resource_blocked": false
3159 }],
3160 "verify_retried": false, "blocking": 0, "answered": 1,
3161 "expected": 1, "clean": true
3162 }));
3163 let old: RunState = serde_json::from_value(value).expect("schema-7 shape parses");
3164 let migrated = migrate_schema(old).expect("schema 7 migrates");
3165 assert_eq!(migrated.schema, SCHEMA);
3166 assert_eq!(
3167 migrated.reviews[0].verified_head.as_deref(),
3168 Some("deadbeef"),
3169 "a schema-7 round's main-loop e2e was always against its own head, even though the \
3170 field never said so"
3171 );
3172 assert!(
3173 migrated.reviews[0].verified_at.is_none(),
3174 "no historical timestamp exists to reconstruct; unknown stays unknown, not a \
3175 guessed 'now'"
3176 );
3177 }
3178
3179 #[test]
3180 fn schema_seven_state_leaves_a_deferred_round_with_no_verified_head() {
3181 let mut value = serde_json::to_value(state()).expect("serialize state");
3182 let object = value.as_object_mut().expect("state object");
3183 object.insert("schema".to_owned(), serde_json::json!(7));
3184 let reviews = object["reviews"].as_array_mut().expect("reviews");
3185 reviews.push(serde_json::json!({
3186 "round": 1, "head": "deadbeef", "reviews": [],
3187 "e2e": [], "e2e_deferred": true,
3188 "verify_retried": false, "blocking": 1, "answered": 1,
3189 "expected": 1, "clean": false
3190 }));
3191 let old: RunState = serde_json::from_value(value).expect("schema-7 shape parses");
3192 let migrated = migrate_schema(old).expect("schema 7 migrates");
3193 assert!(
3194 migrated.reviews[0].verified_head.is_none(),
3195 "a deferred round never ran e2e; there is nothing to reconstruct"
3196 );
3197 }
3198
3199 #[test]
3200 fn schema_six_serialization_is_rejected_by_a_schema_five_reader() {
3201 let body = serde_json::to_value(state()).expect("serialize state");
3202 assert_eq!(body["schema"], serde_json::json!(SCHEMA));
3203 assert_ne!(body["schema"], serde_json::json!(5));
3204 }
3205
3206 #[test]
3207 fn seat_started_and_finished_track_who_has_not_answered_yet() {
3208 let mut s = state();
3209 s.seat_started("judge", "judge-1", std::time::Duration::from_secs(60), 0);
3210 s.seat_started("judge", "judge-2", std::time::Duration::from_secs(60), 0);
3211 assert_eq!(s.active.len(), 2, "both seats are still out");
3212
3213 s.seat_finished("judge-1");
3214 assert_eq!(
3215 s.active.keys().collect::<Vec<_>>(),
3216 vec!["judge-2"],
3217 "only the seat that answered drops out; judge-2 is still waited on"
3218 );
3219 }
3220
3221 /// `seats_active` / `tasks_active` are the accessors report/web read
3222 /// instead of `active` directly, so neither ever counts the other kind of
3223 /// entry as a seat — a `verify.e2e` task must never inflate a quorum or
3224 /// seat count, and a seat must never show up in a task listing.
3225 #[test]
3226 fn seats_active_and_tasks_active_never_cross_over() {
3227 let mut s = state();
3228 s.seat_started("judge", "judge-1", std::time::Duration::from_secs(60), 0);
3229 s.task_command(
3230 "e2e",
3231 "verify",
3232 0,
3233 "cargo test",
3234 1,
3235 2,
3236 std::time::Duration::from_secs(600),
3237 );
3238
3239 assert_eq!(
3240 s.seats_active()
3241 .map(|(k, _)| k.as_str())
3242 .collect::<Vec<_>>(),
3243 vec!["judge-1"]
3244 );
3245 assert_eq!(
3246 s.tasks_active()
3247 .map(|(k, _)| k.as_str())
3248 .collect::<Vec<_>>(),
3249 vec!["e2e"]
3250 );
3251
3252 // A command boundary updates the same entry in place — still one
3253 // task, never a second one accumulating alongside it.
3254 s.task_command(
3255 "e2e",
3256 "verify",
3257 0,
3258 "cargo clippy",
3259 2,
3260 2,
3261 std::time::Duration::from_secs(600),
3262 );
3263 assert_eq!(s.tasks_active().count(), 1);
3264 assert_eq!(s.active["e2e"].command.as_deref(), Some("cargo clippy"));
3265
3266 s.task_finished("e2e");
3267 assert!(s.tasks_active().next().is_none());
3268 assert_eq!(
3269 s.seats_active()
3270 .map(|(k, _)| k.as_str())
3271 .collect::<Vec<_>>(),
3272 vec!["judge-1"],
3273 "clearing the task must not touch the seat entry"
3274 );
3275 }
3276
3277 #[test]
3278 fn a_retry_is_recorded_as_a_later_attempt_on_the_same_seat() {
3279 let mut s = state();
3280 s.seat_started("review", "review-2", std::time::Duration::from_secs(30), 0);
3281 s.seat_finished("review-2");
3282 // A nudge re-asks the same seat; attempt says this is not the first
3283 // time, which is the only trace a nudge otherwise leaves behind.
3284 s.seat_started("review", "review-2", std::time::Duration::from_secs(30), 1);
3285 assert_eq!(s.active["review-2"].attempt, 1);
3286 }
3287
3288 #[test]
3289 fn active_seat_reports_elapsed_and_remaining_time() {
3290 let now = Timestamp::now();
3291 let started = now - jiff::SignedDuration::from_secs(30);
3292 let seat = ActiveSeat {
3293 node: "judge".to_owned(),
3294 started_at: started,
3295 timeout_secs: 100,
3296 attempt: 0,
3297 task: None,
3298 command: None,
3299 index: None,
3300 total: None,
3301 };
3302 assert_eq!(seat.elapsed_secs(now), 30);
3303 assert_eq!(seat.remaining_secs(now), 70);
3304 }
3305
3306 #[test]
3307 fn remaining_time_never_goes_negative_past_the_timeout() {
3308 // `agy`'s own print-timeout occasionally overruns by a hair before the
3309 // kill lands; a naive subtraction would print a negative "time left".
3310 let now = Timestamp::now();
3311 let started = now - jiff::SignedDuration::from_secs(200);
3312 let seat = ActiveSeat {
3313 node: "implement".to_owned(),
3314 started_at: started,
3315 timeout_secs: 100,
3316 attempt: 1,
3317 task: None,
3318 command: None,
3319 index: None,
3320 total: None,
3321 };
3322 assert_eq!(seat.remaining_secs(now), 0);
3323 }
3324
3325 #[test]
3326 fn clear_active_drops_stale_seats_and_reports_whether_it_did() {
3327 let mut s = state();
3328 assert!(!s.clear_active(), "nothing to clear on a fresh run");
3329 s.seat_started(
3330 "implement",
3331 "impl-B",
3332 std::time::Duration::from_secs(3600),
3333 0,
3334 );
3335 assert!(s.clear_active(), "a leftover entry is reported as cleared");
3336 assert!(s.active.is_empty());
3337 }
3338
3339 #[test]
3340 fn active_seat_carries_nothing_that_could_be_read_as_output_bytes() {
3341 // `agy` prints exactly one JSON object, at the very end (see
3342 // `agent::dropped_stream`'s doc comment) — a seat can sit at zero
3343 // captured bytes for its whole timeout while working normally. So
3344 // `ActiveSeat` records only the wall-clock facts (when it started,
3345 // its budget, which attempt), never a byte count, which is what
3346 // keeps a reader from being able to build "0 bytes => dead" out of
3347 // it even by accident.
3348 let seat = ActiveSeat {
3349 node: "implement".to_owned(),
3350 started_at: Timestamp::now(),
3351 timeout_secs: 60,
3352 attempt: 0,
3353 task: None,
3354 command: None,
3355 index: None,
3356 total: None,
3357 };
3358 let value = serde_json::to_value(&seat).unwrap();
3359 let keys: std::collections::BTreeSet<String> =
3360 value.as_object().unwrap().keys().cloned().collect();
3361 assert_eq!(
3362 keys,
3363 std::collections::BTreeSet::from([
3364 "node".to_owned(),
3365 "started_at".to_owned(),
3366 "timeout_secs".to_owned(),
3367 "attempt".to_owned(),
3368 ]),
3369 "a byte count here would be a lever to declare a silent-but-healthy seat dead, and \
3370 the task-only fields must stay absent (not null) on an ordinary seat entry"
3371 );
3372 }
3373
3374 /// The same guarantee as
3375 /// [`active_seat_carries_nothing_that_could_be_read_as_output_bytes`],
3376 /// extended to a task entry: `verify.e2e` / `verify.gate` are exactly as
3377 /// silent as `agy` between commands, so a running command-list task must
3378 /// never carry anything a reader could mistake for output-byte evidence
3379 /// either.
3380 #[test]
3381 fn task_active_seat_carries_nothing_that_could_be_read_as_output_bytes() {
3382 let seat = ActiveSeat {
3383 node: "verify".to_owned(),
3384 started_at: Timestamp::now(),
3385 timeout_secs: 600,
3386 attempt: 0,
3387 task: Some("e2e".to_owned()),
3388 command: Some("cargo test".to_owned()),
3389 index: Some(1),
3390 total: Some(3),
3391 };
3392 let value = serde_json::to_value(&seat).unwrap();
3393 let keys: std::collections::BTreeSet<String> =
3394 value.as_object().unwrap().keys().cloned().collect();
3395 assert_eq!(
3396 keys,
3397 std::collections::BTreeSet::from([
3398 "node".to_owned(),
3399 "started_at".to_owned(),
3400 "timeout_secs".to_owned(),
3401 "attempt".to_owned(),
3402 "task".to_owned(),
3403 "command".to_owned(),
3404 "index".to_owned(),
3405 "total".to_owned(),
3406 ]),
3407 );
3408 }
3409
3410 #[test]
3411 fn an_old_run_json_without_active_seats_still_loads() {
3412 // Schema did not bump for this field: an already-written run.json
3413 // simply lacks the key, and `#[serde(default)]` must fill it in
3414 // rather than fail the whole read.
3415 let s = state();
3416 let mut value = serde_json::to_value(&s).unwrap();
3417 value.as_object_mut().unwrap().remove("active");
3418 let back: RunState = serde_json::from_value(value).unwrap();
3419 assert!(back.active.is_empty());
3420 assert_eq!(back.schema, SCHEMA);
3421 }
3422
3423 #[test]
3424 fn an_old_run_json_without_jobs_still_loads() {
3425 // No schema bump for this field either, for the same reason: an
3426 // empty `jobs` list on an old record means exactly what it always
3427 // meant for that record — no adapter existed yet to report one —
3428 // and `#[serde(default)]` fills it in rather than failing the read.
3429 let s = state();
3430 let mut value = serde_json::to_value(&s).unwrap();
3431 value.as_object_mut().unwrap().remove("jobs");
3432 let back: RunState = serde_json::from_value(value).unwrap();
3433 assert!(back.jobs.is_empty());
3434 assert_eq!(back.schema, SCHEMA);
3435 }
3436
3437 #[test]
3438 fn ensure_can_delete_guards_live_and_unfolded_runs() {
3439 let mut s = state();
3440 // 1. A daemon is working on it right now.
3441 s.status = RunStatus::Prep;
3442 let err = s.ensure_can_delete(true).unwrap_err().to_string();
3443 assert!(err.contains("live daemon"), "{err}");
3444
3445 // 2. The same unfinished run with no daemon behind it is a leftover
3446 // from a killed process, and deletable. Without this an interrupted
3447 // run could never be removed: its status stays `prep` forever.
3448 assert!(s.ensure_can_delete(false).is_ok());
3449
3450 // 3. Unfolded candidates are refused either way — that is the guard
3451 // that stops a delete from discarding a worktree.
3452 s.status = RunStatus::Merged;
3453 s.candidates.push(Candidate {
3454 index: 0,
3455 label: 'A',
3456 agent: "a".to_owned(),
3457 branch: "b".to_owned(),
3458 worktree: PathBuf::from("/w"),
3459 summary: String::new(),
3460 stat: String::new(),
3461 files: 1,
3462 commits: 1,
3463 empty: false,
3464 failed: None,
3465 verified_noop: None,
3466 duration_ms: 0,
3467 folded: false,
3468 });
3469 let err = s.ensure_can_delete(false).unwrap_err().to_string();
3470 assert!(
3471 err.contains("magi fold"),
3472 "error must suggest `magi fold`: {err}"
3473 );
3474
3475 // 4. Folded and nobody working on it.
3476 s.candidates[0].folded = true;
3477 assert!(s.ensure_can_delete(false).is_ok());
3478 }
3479}