Skip to main content

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