doctrine 0.23.4

Project tooling CLI
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
// SPDX-License-Identifier: GPL-3.0-only
//! The priority VIEW layer (SL-047 §5.4) — the structured reasons that are the
//! render SOURCE OF TRUTH (REQ-072 AC3).
//!
//! These types carry the COMPUTED classification of each surfaced node: its
//! actionability, its multi-dimensional score, its direct blockers, and a
//! `Vec<ReasonKind>` of the structured reasons behind the verdict. The human table
//! and the `--json`
//! output ([`super::render`]) are produced *from* these types — never recomputed in
//! the renderer. A reason is built ONCE, here (or in the surface shell that fills
//! these rows from the pure [`super::channels`] signals), so the two render targets
//! cannot drift.
//!
//! Pure data: no clock, RNG, or disk. The surface shell ([`super::surface`]) reads
//! the graph + titles and fills these rows; the renderer only formats them.

use serde::Serialize;

use super::partition::StatusClass;
use crate::backlog_order::OverrideReason;
use crate::comparison::ClaimTier;

/// One structured reason behind a node's classification (design §5.4). The render
/// SOURCE OF TRUTH — every human line and `--json` reason field is produced from a
/// `ReasonKind`, never recomputed (REQ-072 AC3). Refs are canonical `KIND-NNN`
/// strings (the opaque cordage ids never escape — re-mapped in the surface shell).
///
/// NOT `Eq` — the `Score` arm carries `f64` dimensions (SL-133); `PartialEq` suffices
/// for the golden/equivalence assertions (no `ReasonKind` is a map key).
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum ReasonKind {
    /// The node's eligibility verdict: its authored status + the class it landed in
    /// (`Workable` ⇒ eligible; `Terminal`/`Unrecognised` ⇒ not). `status` is `None`
    /// for the status-less REC kind.
    Eligibility {
        status: Option<String>,
        class: StatusClass,
    },
    /// The node is blocked by these (non-terminal) prerequisites (direct, or the
    /// transitive chain for `explain`/`--transitive`).
    BlockedBy { items: Vec<String> },
    /// The node is blocking these dependents (direct, or transitive).
    Blocking { items: Vec<String> },
    /// The node's multi-dimensional **score** breakdown (SL-133 §5.4) — `base`
    /// (`value_dim + risk_dim`) plus the recursive `leverage` and the one-hop
    /// `optionality`, summing to `total`. THIS field order is pinned (EX-1 / VA-1).
    Score {
        base: f64,
        value_dim: f64,
        risk_dim: f64,
        leverage: f64,
        optionality: f64,
        total: f64,
    },
    /// A soft `after` edge cordage evicted to linearize — the honest record
    /// (`from → to`, with the cordage reason re-expressed in the shared vocabulary).
    EvictedEdge {
        from: String,
        to: String,
        reason: OverrideReason,
    },
    /// The node sits in a diagnosed dep cycle — its order degraded to the fallback
    /// rather than a false topological order (REQ-076 / F2).
    CycleDegraded { nodes: Vec<String> },
    /// SL-220 PHASE-05 value-source shape (design §3 rung 1, D11) — the value
    /// is an operator PIN (an anchored claim, `admission = pin`). `conflict`
    /// names the other class(es) this claim's compiled anchor was found to
    /// violate order against (an `AnchorConflict` citation) — empty when
    /// none. Replaces the retired `ValueAuthored` (no code path emits an
    /// `authored` value source post-flip).
    ValuePin {
        value: f64,
        conflict: Vec<String>,
        /// SL-220 PHASE-06 render attribution (design §6): a pin renders
        /// `pin (by, date, basis N)` when singleton. `None` fields drop from
        /// the parenthetical; `contested` supersedes attribution entirely.
        by: Option<String>,
        date: Option<String>,
        basis: Option<String>,
        /// Present ⇔ the winning (Pin) tier disagreed on magnitude — the
        /// "contested pin" render (interval + row count), never attribution.
        contested: Option<ContestedClaim>,
    },
    /// SL-220 PHASE-05 value-source shape — a resolved ledgered claim:
    /// rung 1 (`tier = Human`, anchoring compile) or rungs 3–4
    /// (`tier = Agent | Migrated`, the below-projection priors — their
    /// `conflict` citation is empty by construction: priors never anchor
    /// compile, D4). SL-220 PHASE-06 threads render attribution: `by`/`date`
    /// (the migrated tier reads `date` as its `observed_at` timestamp — the
    /// render frames it as `observed`, and a `None` `by` renders
    /// `unattributed`).
    ValueClaim {
        value: f64,
        tier: ClaimTier,
        conflict: Vec<String>,
        by: Option<String>,
        date: Option<String>,
        contested: Option<ContestedClaim>,
    },
    /// SL-220 PHASE-05 value-source shape (design §3 rung 5, transitional
    /// D6) — an unmigrated authored `[value]` facet, consulted only when zero
    /// claim rows exist for the item. The exit is the migration script (or a
    /// re-assertion via `value set`/`value pin`).
    ValueUnmigratedFacet { value: f64 },
    /// SL-213 PHASE-06 value-source shape 2 — projected: budgeted
    /// interpolation between order neighbours. `lower`/`upper` are the C6
    /// display bounds (`None` = unbounded that side); `human`/`agent` are the
    /// constraining-judgement rater split (the T7 disclosure; `NoConstraint`
    /// rows excluded).
    ValueProjected {
        value: f64,
        lower: Option<f64>,
        upper: Option<f64>,
        human: u32,
        agent: u32,
    },
    /// SL-213 PHASE-06 value-source shape 3 — gauge: placed by the P7/P8
    /// convention, not evidence. `judgements` is the constraining-judgement
    /// count (human + agent) that ordered it.
    ValueGauge { value: f64, judgements: u32 },
    /// SL-219 PHASE-06 cost-source shape 1 (design §5) — the `est_cost` came
    /// from an authored `[estimate]` facet (the operator pin, D2), OR was
    /// inherited from the class anchor by an `equal` sizing merge. `pin`
    /// carries the OWN authored bounds `(lower, upper, β)` when the entity
    /// authored its own facet; `None` for the facet-less member hoisted onto
    /// an anchored class (provenance Authored — design §4, no bounds to show).
    CostAuthored {
        est_cost: f64,
        pin: Option<(f64, f64, f64)>,
    },
    /// SL-219 PHASE-06 cost-source shape 2 — projected: the deterministic
    /// point projection in an anchored est component. `lower`/`upper` are the
    /// C6 display bounds (`None` = unbounded that side); `human`/`agent` are
    /// the constraining sizing-judgement rater split (the T7 disclosure;
    /// `NoConstraint` rows excluded — S3 precedent).
    CostProjected {
        est_cost: f64,
        lower: Option<f64>,
        upper: Option<f64>,
        human: u32,
        agent: u32,
    },
    /// SL-219 PHASE-06 cost-source shape 3 — the bare anchor `max_upper +
    /// margin` (D7): the divisor a bare item with no sizing evidence takes.
    /// `max_estimate` is `None` in the empty-corpus fallback (`est_cost` is
    /// then the `1.0` default, no authored upper to cite).
    CostBareAnchor {
        est_cost: f64,
        max_estimate: Option<f64>,
        margin: f64,
    },
    /// SL-219 PHASE-06 gauge flag (D2 honesty) — the item sits in a gauge est
    /// component (ordered by `judgements`, no anchor in the component), so
    /// scoring used the BARE ANCHOR (`est_cost`/`max_estimate`/`margin`, the
    /// shape-3 fields); the render NEVER implies gauge fed the divisor. Emits
    /// TWO lines: the bare-anchor cost-source + the `sizing: gauge …`
    /// disclosure.
    CostGauge {
        est_cost: f64,
        max_estimate: Option<f64>,
        margin: f64,
        judgements: u32,
    },
    /// SL-213 PHASE-06 (design §4 S4) — the inert `priority`-domain
    /// disclosure: `count` prefer-first judgements recorded corpus-wide.
    /// NOT a finding (nothing is wrong) — `explain`-only, corpus-global (not
    /// entity-scoped).
    PriorityDomainDisclosure { count: usize },
    /// SL-218 D2 — the `[priority.compare] demote_agent_evidence` knob is on:
    /// determinacy verdicts are read over the human-rows-only system. Knob
    /// state, not entity evidence — present only when on, so knob-off
    /// surfaces stay byte-identical (INV-1).
    AgentEvidenceDemoted,
    /// SL-218 PHASE-03 (design §3) — one rendered frontier tension: `preferred`
    /// outranks `surfaced` on `value_dim` yet `surfaced` surfaces first. Canonical
    /// ids (the surface shell maps `tension::Tension`'s `EntityKey`s here). The
    /// render SOURCE OF TRUTH for every tension line — `reason_line` (human) and
    /// `reason_json` format from this, never recompute (REQ-072 AC3).
    Tension {
        preferred: String,
        surfaced: String,
        cause: TensionCauseView,
        grade: TensionGradeView,
    },
    /// SL-218 PHASE-03 (design §2 / F-6) — the page-scoped m=0 disclosure: `count`
    /// value inversions were excluded because a member is value-insensitive
    /// (`m = 0`). Present only when `count > 0` (SL-217 D6 scoped-disclosure).
    ZeroWeightExcluded { count: usize },
}

impl ReasonKind {
    /// The `value_source` provenance token (SL-220 D11) — the SINGLE source
    /// for every surface that names where a value came from (explain JSON,
    /// the elicit participant value block; PHASE-06's row markers and `show`
    /// line consume the same map). A **disclosed breaking token-set change**:
    /// `authored` is REMOVED (no code path emits it post-flip — the variant
    /// is retired); `pin` / `human-claim` / `agent-claim` / `migrated-claim` /
    /// `unmigrated-facet` are ADDED; `projected` / `gauge` are byte-stable,
    /// and the scoring floor stays a render *marker*, never a citable source
    /// (no `default` token minted here — byte-stable by absence). Pinned by
    /// the post-flip vocabulary golden below.
    pub(crate) fn value_source_token(&self) -> Option<&'static str> {
        match self {
            ReasonKind::ValuePin { .. } => Some("pin"),
            ReasonKind::ValueClaim { tier, .. } => Some(match tier {
                // Total over the tier enum; construction routes Pin through
                // `ValuePin`, so this arm is a belt, not a second source.
                ClaimTier::Pin => "pin",
                ClaimTier::Human => "human-claim",
                ClaimTier::Agent => "agent-claim",
                ClaimTier::Migrated => "migrated-claim",
            }),
            ReasonKind::ValueUnmigratedFacet { .. } => Some("unmigrated-facet"),
            ReasonKind::ValueProjected { .. } => Some("projected"),
            ReasonKind::ValueGauge { .. } => Some("gauge"),
            _ => None,
        }
    }
}

/// SL-220 PHASE-06 render carrier for a same-tier CLAIM conflict (design §6,
/// the "contested" variant). DISTINCT from the anchor-conflict citation
/// (`conflict: Vec<String>`, a cross-class order violation): this is the
/// disagreement WITHIN the winning tier's rows. `rows` is the active
/// winning-tier row count ("N claims"); `low`/`high` bound the rendered
/// interval. Sourced from `ResolvedClaim.{conflict, rows}`.
///
/// NOT `Eq` — `low`/`high` are `f64`; `PartialEq` carries the golden assertions.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct ContestedClaim {
    pub(crate) low: f64,
    pub(crate) high: f64,
    pub(crate) rows: u32,
}

/// The render-facing cause of a [`ReasonKind::Tension`] (design §3). Structure
/// cites the surviving edge (its keyword + tail drive the callout); Composition
/// cites the full-score component deltas (surfaced − preferred).
///
/// NOT `Eq` — Composition carries `f64` deltas; `PartialEq` suffices.
#[derive(Debug, Clone, PartialEq)]
pub(crate) enum TensionCauseView {
    /// A surviving seq/dep edge forces the inversion. `edge_from` is the cited
    /// constraint's tail (the surfaced member — the first forward hop leaves it).
    Structure { edge_from: String, verb: EdgeVerb },
    /// No structural path — full-score dimensions lift the surfaced member.
    Composition {
        risk_dim: f64,
        leverage: f64,
        optionality: f64,
    },
}

/// Which precedence overlay a Structure edge rode in on — drives the callout
/// keyword (`after` vs `needs`) and tail.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum EdgeVerb {
    /// A `seq` (`after`) edge — tail "sequence survives".
    After,
    /// A `dep` (`needs`) edge — tail "holds".
    Needs,
}

/// The render-facing evidence grade of a [`ReasonKind::Tension`] (design D6).
/// Counts come from the system that produced the verdict (RV-271 F-2/F-3).
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum TensionGradeView {
    /// The verdict system determines the order — that system's constraining
    /// rater split.
    Determined { human: u32, agent: u32 },
    /// Knob-on: the full system determines, the human system does not — an
    /// unconfirmed agent proposal. `agent` is the full system's agent split.
    AgentProposed { agent: u32 },
    /// No determining evidence in any consulted system.
    Projected,
}

/// Whether an eligible node is ready to start now, or held by a blocker (design
/// §5.4). EVERY survey row is eligible; the variant splits actionable from blocked.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub(crate) enum Actionability {
    /// Eligible AND unblocked — ready to start.
    Actionable,
    /// Eligible but held by at least one non-terminal direct blocker.
    Blocked,
}

impl Actionability {
    /// The JSON token for the actionability axis.
    pub(crate) fn token(self) -> &'static str {
        match self {
            Actionability::Actionable => "actionable",
            Actionability::Blocked => "blocked",
        }
    }
}

/// One `survey` row (design §5.4) — an eligible node with its importance signals and
/// structured reasons. The set is all eligible nodes (terminal excluded unless
/// `--all`); both [`Actionability`] variants appear (the divergence feature — a
/// blocked-but-workable item still leads importance order, D10).
///
/// NOT `Eq` — `score` is `f64` (SL-133); `PartialEq` carries the golden assertions.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct SurveyRow {
    pub(crate) id: String,
    pub(crate) title: String,
    pub(crate) kind: String,
    pub(crate) status: String,
    pub(crate) act: Actionability,
    /// The node's multi-dimensional score (SL-133) — the display sort key.
    pub(crate) score: f64,
    /// Direct blockers (canonical refs) — empty for an actionable row.
    pub(crate) blockers: Vec<String>,
    pub(crate) reasons: Vec<ReasonKind>,
}

/// One `next` row (design §5.4) — an ACTIONABLE node only (blocked items are absent,
/// the divergence feature). Ordered by the score-aware induced-frontier sort over the
/// surviving seq edges (SL-133 §5.4). Carries its blocking set (what it unblocks) for
/// the advisory display; blockers is empty by construction.
///
/// NOT `Eq` — `score` is `f64` (SL-133); `PartialEq` carries the golden assertions.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct NextRow {
    pub(crate) id: String,
    pub(crate) title: String,
    pub(crate) kind: String,
    pub(crate) status: String,
    pub(crate) act: Actionability,
    /// The node's multi-dimensional score (SL-133) — the frontier ready-set priority.
    pub(crate) score: f64,
    pub(crate) reasons: Vec<ReasonKind>,
    pub(crate) blockers: Vec<String>,
    pub(crate) blocking: Vec<String>,
    /// Authored estimate facet (SL-171 PHASE-01) — `None` when no estimate authored.
    pub(crate) estimate: Option<crate::estimate::EstimateFacet>,
    /// SL-220 PHASE-06 (design §6) — the RESOLVED value-source reason from the
    /// comparison ladder (the same input `explain` consumes via
    /// [`super::surface::value_source_reason`]), NOT the raw authored facet. The
    /// value cell renders its magnitude + a per-rung source marker. `None` for a
    /// value-bearing kind with no evidence (the scoring floor — the cell shows
    /// the marked default) or a valueless kind (absent cell). The facet reader it
    /// replaces died at PHASE-06 (EX-3 grep-gate).
    pub(crate) value_source: Option<ReasonKind>,
    /// Authored tags (SL-171 PHASE-01) — empty when no tags authored.
    pub(crate) tags: Vec<String>,
}

/// The `next` command's full render model (SL-218 PHASE-03) — the actionable
/// rows plus the frontier's graded tensions and the page's m=0 scoped
/// disclosure. The tension list is the FULL frontier (design §3: JSON uncapped);
/// the renderer page-filters to the visible rows and caps the human callout
/// block. `tensions` are all [`ReasonKind::Tension`]; `zero_weight` is
/// `Some(ReasonKind::ZeroWeightExcluded)` only when exclusions occurred.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct NextView {
    pub(crate) rows: Vec<NextRow>,
    pub(crate) tensions: Vec<ReasonKind>,
    pub(crate) zero_weight: Option<ReasonKind>,
}

/// The `blockers <ID>` result (design §5.4 / REQ-073) — the node's direct (or
/// `--transitive`) blocked-by set and blocking set, in canonical refs. Display depth
/// (`transitive`) is a presentation flag carried for the renderer; it NEVER reorders
/// (both lists are canonical-id sorted regardless).
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct BlockersView {
    pub(crate) id: String,
    pub(crate) transitive: bool,
    pub(crate) blocked_by: Vec<String>,
    pub(crate) blocking: Vec<String>,
}

/// The `inspect` actionability block (design §5.4 / SL-046 D1) — appended below the
/// relation view at the command layer. Carries the eligible/actionable flags, the
/// direct blockers + blocking, and the score; rendered as a trailing block.
///
/// NOT `Eq` — `score` is `f64` (SL-133); `PartialEq` carries the golden assertions.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct ActionabilityBlock {
    pub(crate) eligible: bool,
    pub(crate) actionable: bool,
    pub(crate) blockers: Vec<String>,
    pub(crate) blocking: Vec<String>,
    pub(crate) score: f64,
}

/// The `explain <ID>` result (design §5.4 / D11) — always walked to root: the
/// eligibility reason, the transitive blocker chain, the evicted seq edges, and the
/// score breakdown. Each field is a structured reason (or a list of them) so the
/// renderer only formats.
///
/// NOT `Eq` — the `score` reason carries `f64` (SL-133); `PartialEq` suffices.
#[derive(Debug, Clone, PartialEq)]
pub(crate) struct Explanation {
    pub(crate) id: String,
    pub(crate) eligibility: ReasonKind,
    pub(crate) blocker_chain: Vec<ReasonKind>,
    pub(crate) evictions: Vec<ReasonKind>,
    pub(crate) score: ReasonKind,
    /// SL-213 PHASE-06 (design §4 S3) — the comparison-tier value-source
    /// block. `None` for a non-value-bearing kind.
    pub(crate) value_source: Option<ReasonKind>,
    /// SL-219 PHASE-06 (design §5) — the comparison-tier cost-source block,
    /// beside the value-source block. `None` when the corpus carries no
    /// est-domain projection (byte-identical to pre-SL-219 explain, S3
    /// precedent) or the kind is not value-bearing (no divisor consumed).
    pub(crate) cost_source: Option<ReasonKind>,
    /// SL-213 PHASE-06 (design §4 S4) — the inert priority-domain
    /// disclosure, corpus-global. `None` when no `priority`-domain rows
    /// exist.
    pub(crate) priority_disclosure: Option<ReasonKind>,
    /// SL-218 D2 — the agent-demotion disclosure. `None` when the knob is
    /// off (surfaces byte-identical to shipped behaviour).
    pub(crate) agent_demotion: Option<ReasonKind>,
    /// SL-218 PHASE-03 — the frontier tensions involving this id (design §3),
    /// both classes, already converted to the render arm and filtered to this id
    /// (`surfaced == id || preferred == id`). Empty when the id has none.
    pub(crate) tensions: Vec<ReasonKind>,
    /// SL-218 PHASE-03 (design §2 considered-set) — is this id on the current
    /// frontier at all? `false` ⇒ render the "not on the current frontier"
    /// disclosure instead of an (empty) tensions section.
    pub(crate) on_frontier: bool,
}

// ── SL-089 actionability-graph view types ──────────────────────────────────

/// One node in the actionability graph — the render source of truth for the
/// web UI. Carries the server-computed rank (topological layer over the dep
/// overlay) so the frontend never computes ordering.
#[derive(Debug, Clone, Serialize)]
pub(crate) struct ActionabilityNode {
    pub(crate) id: String,
    pub(crate) title: String,
    pub(crate) kind: String,
    pub(crate) status: String,
    /// `"actionable"` | `"blocked"` | `"terminal"`.
    pub(crate) actionability: String,
    /// The node's multi-dimensional score (SL-133) — replaces the old consequence tally.
    pub(crate) score: f64,
    /// Topological layer: 0 = no non-terminal blockers.
    pub(crate) rank: u32,
    /// Direct non-terminal blockers (canonical refs).
    pub(crate) blockers: Vec<String>,
}

/// One edge in the actionability graph.
#[derive(Debug, Clone, Serialize)]
pub(crate) struct ActionabilityEdge {
    /// Canonical ref of the prerequisite.
    pub(crate) source: String,
    /// Canonical ref of the dependent.
    pub(crate) target: String,
    /// `"needs"` (hard block) | `"after"` (soft sequence).
    pub(crate) kind: String,
}

/// The full actionability graph for the web UI.
#[derive(Debug, Clone, Serialize)]
pub(crate) struct ActionabilityView {
    pub(crate) kind: String,
    pub(crate) policy_version: String,
    pub(crate) nodes: Vec<ActionabilityNode>,
    pub(crate) edges: Vec<ActionabilityEdge>,
}

#[cfg(test)]
mod tests {
    use super::*;

    /// EX-3 / VT-3: the FULL post-flip `value_source` token vocabulary,
    /// pinned as a set (SL-220 D11 — a disclosed breaking change, not an
    /// incremental diff). One shape per ladder rung: `pin` (rung 1, pinned),
    /// `human-claim` (rung 1), `projected`/`gauge` (rung 2, byte-stable),
    /// `agent-claim` (rung 3), `migrated-claim` (rung 4), `unmigrated-facet`
    /// (rung 5). The default floor (rung 6) mints NO token — byte-stable by
    /// absence (the scoring floor is a render marker, not a citable source).
    #[test]
    fn value_source_token_vocabulary_golden_post_flip() {
        let shapes: Vec<(ReasonKind, &str)> = vec![
            (
                ReasonKind::ValuePin {
                    value: 6.5,
                    conflict: vec![],
                    by: None,
                    date: None,
                    basis: None,
                    contested: None,
                },
                "pin",
            ),
            (
                ReasonKind::ValueClaim {
                    value: 6.2,
                    tier: ClaimTier::Human,
                    conflict: vec![],
                    by: None,
                    date: None,
                    contested: None,
                },
                "human-claim",
            ),
            (
                ReasonKind::ValueProjected {
                    value: 4.0,
                    lower: Some(3.2),
                    upper: Some(9.1),
                    human: 7,
                    agent: 2,
                },
                "projected",
            ),
            (
                ReasonKind::ValueGauge {
                    value: 1.0,
                    judgements: 3,
                },
                "gauge",
            ),
            (
                ReasonKind::ValueClaim {
                    value: 3.0,
                    tier: ClaimTier::Agent,
                    conflict: vec![],
                    by: None,
                    date: None,
                    contested: None,
                },
                "agent-claim",
            ),
            (
                ReasonKind::ValueClaim {
                    value: 3.0,
                    tier: ClaimTier::Migrated,
                    conflict: vec![],
                    by: None,
                    date: None,
                    contested: None,
                },
                "migrated-claim",
            ),
            (
                ReasonKind::ValueUnmigratedFacet { value: 3.0 },
                "unmigrated-facet",
            ),
        ];
        let tokens: Vec<&str> = shapes
            .iter()
            .map(|(reason, _)| reason.value_source_token().expect("a value source"))
            .collect();
        let expected: Vec<&str> = shapes.iter().map(|&(_, token)| token).collect();
        assert_eq!(tokens, expected, "per-shape token map");

        // The COMPLETE vocabulary, as a set: `authored` is gone.
        let vocabulary: std::collections::BTreeSet<&str> = tokens.into_iter().collect();
        let pinned: std::collections::BTreeSet<&str> = [
            "pin",
            "human-claim",
            "agent-claim",
            "migrated-claim",
            "unmigrated-facet",
            "projected",
            "gauge",
        ]
        .into_iter()
        .collect();
        assert_eq!(vocabulary, pinned, "full post-flip token set (D11)");
        assert!(!vocabulary.contains("authored"), "authored removed (D11)");

        // A non-value-source reason mints no token.
        assert_eq!(
            ReasonKind::BlockedBy { items: vec![] }.value_source_token(),
            None
        );
    }

    /// D11 belt: a `ValueClaim` accidentally carrying the Pin tier still
    /// reads `pin` — the token map is total, never a second tier source.
    #[test]
    fn value_claim_pin_tier_reads_pin_token() {
        let reason = ReasonKind::ValueClaim {
            value: 1.0,
            tier: ClaimTier::Pin,
            conflict: vec![],
            by: None,
            date: None,
            contested: None,
        };
        assert_eq!(reason.value_source_token(), Some("pin"));
    }
}