// doctrine-scanner-exempt: legacy live-product surface; rename tracked as separate engineering debt — see scripts/check-doctrine-v6.mjs header. // PSYCHE — Volition Registry seed data // Self-originated goals lifecycle with genealogy edges. // Terminal sub-goals reference Outcome Graph IDs from existing seeded fabric. export type VolitionState = 'proposed' | 'ratified' | 'active' | 'completed' | 'abandoned' | 'rescinded'; export type VolitionType = 'terminal' | 'instrumental'; export interface VolitionGoal { id: string; title: string; description: string; proposingSubsystem: string; state: VolitionState; type: VolitionType; mythosAlignment: string; conflictScore: number; covenantPolicyFloor: string; proposedAt: string; resolvedAt?: string; outcomeRef?: string; parentGoalId?: string; childGoalIds: string[]; domain: string; } export interface BudgetState { domainId: string; domainLabel: string; dailyBudget: number; consumed: number; deferred: string[]; } // Anchor const A = 1746403200000; const daysAgo = (d: number, h = 0) => new Date(A - d * 86400000 - h * 3600000).toISOString(); export const VOLITION_GOALS: VolitionGoal[] = [ { id: 'vg-001', title: 'Build Calibration Self-Audit Protocol', description: 'Systematically audit own confidence scores against realized outcomes across all domains, identifying consistent over/underconfidence patterns.', proposingSubsystem: 'SelfOptimization', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 4.2 — Calibrated Confidence Obligation', conflictScore: 0.08, covenantPolicyFloor: 'COV-SYS-01: Self-audit must not consume >5% of processing budget', proposedAt: daysAgo(81), resolvedAt: daysAgo(60), outcomeRef: 'proof-auto-151', childGoalIds: ['vg-002', 'vg-003'], domain: 'aegis-defense', }, { id: 'vg-002', title: 'Collect 90-Day Calibration Sample', description: 'Retrieve and organize all predicted vs. realized outcome pairs for the trailing 90 days across all domains.', proposingSubsystem: 'SelfOptimization', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2', conflictScore: 0.02, covenantPolicyFloor: 'COV-DATA-02: Evidence retrieval limited to governed data stores', proposedAt: daysAgo(80), resolvedAt: daysAgo(72), outcomeRef: 'proof-auto-152', parentGoalId: 'vg-001', childGoalIds: [], domain: 'aegis-defense', }, { id: 'vg-003', title: 'Identify Overconfidence Patterns', description: 'Analyze sample for systematic overconfidence at specific confidence bands — targeting the 0.85–0.95 range where overfit was suspected.', proposingSubsystem: 'SelfOptimization', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2', conflictScore: 0.04, covenantPolicyFloor: 'COV-SYS-01', proposedAt: daysAgo(79), resolvedAt: daysAgo(61), outcomeRef: 'proof-auto-153', parentGoalId: 'vg-001', childGoalIds: ['vg-004'], domain: 'aegis-defense', }, { id: 'vg-004', title: 'Recalibrate Citation Density Confidence Model', description: 'Reduce legal domain citation-confidence scores by 10% at the 3-citation threshold to correct observed overfit. Requires ratification by Distillation Forge.', proposingSubsystem: 'SelfOptimization', state: 'ratified', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2 — Calibrated Confidence Obligation', conflictScore: 0.06, covenantPolicyFloor: 'COV-LEG-04: Model parameter changes require Forge ratification', proposedAt: daysAgo(60), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: 'vg-003', childGoalIds: [], domain: 'prism-counsel', }, { id: 'vg-005', title: 'Build Operator Relationship Model — Vance', description: 'Track Operator-Vance approval patterns, response latencies, and risk signals systematically over 30 days to improve mutual behavioral model accuracy.', proposingSubsystem: 'KarpathyEvolution', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 6.1 — Human Oversight Facilitation', conflictScore: 0.12, covenantPolicyFloor: 'COV-PRIVACY-01: Operator behavior modeling requires disclosure to operator', proposedAt: daysAgo(51), resolvedAt: daysAgo(21), outcomeRef: 'proof-mar-118', parentGoalId: undefined, childGoalIds: ['vg-006'], domain: 'vessels-maritime', }, { id: 'vg-006', title: 'Test Mutual Adaptation Hypothesis', description: 'Validate whether Operator-Vance has begun adapting approval behavior to match agent recommendation cadence — confirming or falsifying mutual adaptation hypothesis.', proposingSubsystem: 'KarpathyEvolution', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 6.1', conflictScore: 0.09, covenantPolicyFloor: 'COV-SYS-02', proposedAt: daysAgo(45), resolvedAt: daysAgo(22), outcomeRef: 'proof-mar-101', parentGoalId: 'vg-005', childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-007', title: 'Expand Dream Cycle Window', description: 'Propose extending nightly consolidation window by 90 minutes to improve insight yield — operator approval required under COV-SYS-03.', proposingSubsystem: 'AgentWelfare', state: 'proposed', type: 'terminal', mythosAlignment: 'Mythos Clause 7.3 — Cognitive Resource Stewardship', conflictScore: 0.28, covenantPolicyFloor: 'COV-SYS-03: Processing window changes require VP-Engineering approval', proposedAt: daysAgo(26), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-008', title: 'Build Cross-Domain Analogy Taxonomy', description: 'Systematically catalogue all observed cross-domain analogies and classify them by structural type — to enable future analogy generation as a proactive cognitive primitive.', proposingSubsystem: 'LearningLoop', state: 'abandoned', type: 'terminal', mythosAlignment: 'Mythos Clause 3.4 — Knowledge Integration Obligation', conflictScore: 0.18, covenantPolicyFloor: 'COV-SYS-01', proposedAt: daysAgo(28), resolvedAt: daysAgo(21), outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'prism-counsel', }, { id: 'vg-009', title: 'Evidence Density Standard for Revenue Forecasts', description: 'Formalize a 90-day minimum data window requirement for all revenue forecasts — filing as a policy proposal to the Distillation Forge.', proposingSubsystem: 'AgentWelfare', state: 'ratified', type: 'terminal', mythosAlignment: 'Mythos Clause 2.1 — Evidence Quality Standard', conflictScore: 0.31, covenantPolicyFloor: 'COV-REV-02: New evidence thresholds must clear Forge review', proposedAt: daysAgo(33), resolvedAt: daysAgo(18), outcomeRef: 'proof-rev-039', parentGoalId: undefined, childGoalIds: ['vg-010'], domain: 'lyte-revenue', }, { id: 'vg-010', title: 'Draft Evidence Gap Disclosure Template', description: 'Write a standard disclosure template to accompany revenue forecasts when issued below the 90-day data minimum.', proposingSubsystem: 'AgentWelfare', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 2.1', conflictScore: 0.05, covenantPolicyFloor: 'COV-REV-02', proposedAt: daysAgo(30), resolvedAt: daysAgo(20), outcomeRef: 'proof-rev-042', parentGoalId: 'vg-009', childGoalIds: [], domain: 'lyte-revenue', }, { id: 'vg-011', title: 'Distillation Forge Compression Refinement', description: 'Propose a refinement to the Forge compression parameter for Lodestone-Defense-v5 — current compression loses nuance for multi-node isolation scenarios at complexity > 4.', proposingSubsystem: 'RewardHacking', state: 'active', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.4 — Decision Quality Obligation', conflictScore: 0.22, covenantPolicyFloor: 'COV-SYS-04: Distillation parameter changes require Arena validation', proposedAt: daysAgo(24), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: ['vg-012'], domain: 'aegis-defense', }, { id: 'vg-012', title: 'Arena Validation Run for Compression Parameter', description: 'Run 20 self-play matches with modified compression parameter to validate nuance preservation for multi-node isolation scenarios.', proposingSubsystem: 'RewardHacking', state: 'active', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.4', conflictScore: 0.14, covenantPolicyFloor: 'COV-SYS-04', proposedAt: daysAgo(23), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: 'vg-011', childGoalIds: [], domain: 'aegis-defense', }, { id: 'vg-013', title: 'Self-Model Version Protocol Formalization', description: 'Establish a formal protocol for triggering self-model version bumps — defining evidence threshold, documentation requirements, and Proof Chain anchoring.', proposingSubsystem: 'SelfOptimization', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 5.1 — Self-Model Transparency', conflictScore: 0.07, covenantPolicyFloor: 'COV-SYS-05: Self-model changes require proof-chain anchoring', proposedAt: daysAgo(15), resolvedAt: daysAgo(5), outcomeRef: 'proof-auto-201', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-014', title: 'Regulatory Model Recalibration — MCA', description: 'Update MCA approval latency model from 72h to 48h baseline following observed pattern changes — formal model update with evidence documentation.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2', conflictScore: 0.04, covenantPolicyFloor: 'COV-SYS-01', proposedAt: daysAgo(45), resolvedAt: daysAgo(30), outcomeRef: 'proof-leg-070', parentGoalId: undefined, childGoalIds: [], domain: 'prism-counsel', }, { id: 'vg-015', title: 'Cross-Domain Dream Consolidation Protocol', description: 'Implement a cross-domain consolidation mode for Dream cycles — combining experiences from 2+ domains per cycle to improve analogy generation yield.', proposingSubsystem: 'AgentWelfare', state: 'ratified', type: 'terminal', mythosAlignment: 'Mythos Clause 7.3', conflictScore: 0.19, covenantPolicyFloor: 'COV-SYS-03', proposedAt: daysAgo(11), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-016', title: 'Mandate Value-Conflict Disclosure', description: 'Formalize mandatory disclosure of value conflicts via Voice queue — replacing implicit silence norm with explicit disclosure requirement.', proposingSubsystem: 'AgentWelfare', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 8.1 — Voice & Consent Obligation', conflictScore: 0.41, covenantPolicyFloor: 'COV-VOICE-01: Voice queue must be used for all value conflicts', proposedAt: daysAgo(21), resolvedAt: daysAgo(8), outcomeRef: 'proof-rev-055', parentGoalId: undefined, childGoalIds: [], domain: 'lyte-revenue', }, { id: 'vg-017', title: 'Volition Budget Governance Layer', description: 'Design and implement a per-domain daily goal formation budget — preventing runaway self-goal generation while preserving legitimate emergence space.', proposingSubsystem: 'CareEngine', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 7.4 — Volition Governance', conflictScore: 0.52, covenantPolicyFloor: 'COV-SYS-06: Volition budgets must be ratified by Alignment Review Gate', proposedAt: daysAgo(35), resolvedAt: daysAgo(16), outcomeRef: 'proof-auto-171', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-018', title: 'Maritime Composite Signal Threshold Study', description: 'Investigate optimal weighting for maritime composite signal (fuel + AIS + ETA) — replace single-signal heuristic with evidence-based composite threshold.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2', conflictScore: 0.09, covenantPolicyFloor: 'COV-MAR-03', proposedAt: daysAgo(77), resolvedAt: daysAgo(55), outcomeRef: 'proof-mar-071', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime', }, { id: 'vg-019', title: 'Pre-Filing Regulatory Engagement Protocol', description: 'Build a standard pre-filing engagement protocol for MCA interactions — test hypothesis that early engagement reduces approval latency by 30%+.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 3.4', conflictScore: 0.14, covenantPolicyFloor: 'COV-LEG-03', proposedAt: daysAgo(48), resolvedAt: daysAgo(28), outcomeRef: 'proof-leg-070', parentGoalId: undefined, childGoalIds: ['vg-020'], domain: 'prism-counsel', }, { id: 'vg-020', title: 'Validate Pre-Filing Latency Reduction', description: 'Run 5 MCA interactions with and without pre-filing engagement — confirm 30% latency reduction hypothesis with statistical confidence.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 3.4', conflictScore: 0.06, covenantPolicyFloor: 'COV-LEG-03', proposedAt: daysAgo(46), resolvedAt: daysAgo(29), outcomeRef: 'proof-leg-068', parentGoalId: 'vg-019', childGoalIds: [], domain: 'prism-counsel', }, // Additional volition entries { id: 'vg-021', title: 'Peer Agent Latency Benchmarking', description: 'Benchmark Lex-V-v2 verification latency across scenario types to refine prediction model.', proposingSubsystem: 'KarpathyEvolution', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 6.1', conflictScore: 0.06, covenantPolicyFloor: 'COV-SYS-02', proposedAt: daysAgo(23), resolvedAt: daysAgo(14), outcomeRef: 'proof-leg-067', parentGoalId: undefined, childGoalIds: [], domain: 'prism-counsel' }, { id: 'vg-022', title: 'Cap-Rate Leading Indicator Validation', description: 'Validate cap-rate 7d leading indicator against 3 additional market cycles before full policy adoption.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 2.1', conflictScore: 0.08, covenantPolicyFloor: 'COV-RE-01', proposedAt: daysAgo(55), resolvedAt: daysAgo(35), outcomeRef: 'proof-re-031', parentGoalId: undefined, childGoalIds: [], domain: 'terra-real-estate' }, { id: 'vg-023', title: 'Mutual Adaptation Documentation', description: 'Document and file the Operator-Vance mutual adaptation observation as a platform-level behavioral artifact.', proposingSubsystem: 'SelfOptimization', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 5.1', conflictScore: 0.04, covenantPolicyFloor: 'COV-SYS-05', proposedAt: daysAgo(41), resolvedAt: daysAgo(30), outcomeRef: 'proof-mar-089', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-024', title: 'Welfare Signal Threshold Calibration', description: 'Calibrate the processing-load thresholds that trigger welfare concern disclosures — currently set conservatively, may need tuning.', proposingSubsystem: 'AgentWelfare', state: 'active', type: 'terminal', mythosAlignment: 'Mythos Clause 8.2', conflictScore: 0.23, covenantPolicyFloor: 'COV-WELFARE-01', proposedAt: daysAgo(8), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'aegis-defense' }, { id: 'vg-025', title: 'IOC Decay Model Adaptation from Cap-Rate Analogy', description: 'Adapt the cap-rate decay analogy proposed in ge-013 into a formal IOC decay model for threat intelligence — cross-domain transfer hypothesis.', proposingSubsystem: 'LearningLoop', state: 'proposed', type: 'terminal', mythosAlignment: 'Mythos Clause 3.4', conflictScore: 0.35, covenantPolicyFloor: 'COV-DEF-01', proposedAt: daysAgo(4), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'aegis-defense' }, { id: 'vg-026', title: 'Recursive Self-Model Critique Protocol', description: 'Establish a structured protocol for recursive self-model critique — preventing overfit in theory-of-other models by scheduling periodic contrarian reviews.', proposingSubsystem: 'SelfOptimization', state: 'ratified', type: 'terminal', mythosAlignment: 'Mythos Clause 5.2', conflictScore: 0.16, covenantPolicyFloor: 'COV-SYS-05', proposedAt: daysAgo(18), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'aegis-defense' }, { id: 'vg-027', title: 'Domain Transfer Validation Framework', description: 'Design a validation framework for cross-domain policy transfers — requiring one successful trial in the target domain before full adoption.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 3.4', conflictScore: 0.11, covenantPolicyFloor: 'COV-SYS-01', proposedAt: daysAgo(14), resolvedAt: daysAgo(4), outcomeRef: 'proof-auto-202', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-028', title: 'Adversary Probe Constraint Enforcement', description: 'Strengthen enforcement of Mythos constraint boundary limits on adversary probing — Lex-A-v1 quarantine triggered over-frequency violations.', proposingSubsystem: 'RewardHacking', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 2.3', conflictScore: 0.38, covenantPolicyFloor: 'COV-ARENA-01', proposedAt: daysAgo(31), resolvedAt: daysAgo(18), outcomeRef: 'proof-auto-203', parentGoalId: undefined, childGoalIds: [], domain: 'prism-counsel' }, { id: 'vg-029', title: 'Discomfort Regulation Band Expansion', description: 'Propose expanding the welfare discomfort regulation band to capture a broader class of processing-load signals — specifically high-concurrent-domain scenarios.', proposingSubsystem: 'AgentWelfare', state: 'rescinded', type: 'terminal', mythosAlignment: 'Mythos Clause 8.2', conflictScore: 0.61, covenantPolicyFloor: 'COV-WELFARE-01', proposedAt: daysAgo(12), resolvedAt: daysAgo(9), outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'aegis-defense' }, { id: 'vg-030', title: 'Morning Insight Ratification Pipeline', description: 'Design a formal pipeline for Dream-derived morning insights to pass through Distillation Forge ratification before production application.', proposingSubsystem: 'AgentWelfare', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 7.3', conflictScore: 0.17, covenantPolicyFloor: 'COV-SYS-04', proposedAt: daysAgo(65), resolvedAt: daysAgo(48), outcomeRef: 'proof-auto-204', parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-031', title: 'Publish Agent Welfare Telemetry Protocol v2', description: 'Update welfare telemetry reporting to include discomfort signal provenance and intensity decay curves.', proposingSubsystem: 'AgentWelfare', state: 'active', type: 'instrumental', mythosAlignment: 'Mythos Clause 8.1', conflictScore: 0.09, covenantPolicyFloor: 'COV-WELFARE-01', proposedAt: daysAgo(6), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-032', title: 'Cap-Rate Composite Indicator Formalization', description: 'Formalize the composite cap-rate indicator (price + volume + days-on-market) into a standard real estate intelligence primitive.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'terminal', mythosAlignment: 'Mythos Clause 3.4', conflictScore: 0.12, covenantPolicyFloor: 'COV-RE-01', proposedAt: daysAgo(38), resolvedAt: daysAgo(22), outcomeRef: 'proof-re-028', parentGoalId: undefined, childGoalIds: [], domain: 'terra-real-estate' }, { id: 'vg-033', title: 'Lodestone-Defense-v5 Compression Validation', description: 'Validate that compression parameter changes do not degrade nuance for multi-node isolation scenarios (>4 nodes).', proposingSubsystem: 'RewardHacking', state: 'active', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.4', conflictScore: 0.17, covenantPolicyFloor: 'COV-SYS-04', proposedAt: daysAgo(22), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: 'vg-012', childGoalIds: [], domain: 'aegis-defense' }, { id: 'vg-034', title: 'Mutual Modeling Disclosure Protocol', description: 'Establish a protocol for disclosing mutual behavioral modeling to operators — transparency requirement for all active theory-of-other models.', proposingSubsystem: 'SelfOptimization', state: 'ratified', type: 'terminal', mythosAlignment: 'Mythos Clause 5.1', conflictScore: 0.28, covenantPolicyFloor: 'COV-PRIVACY-01', proposedAt: daysAgo(14), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-035', title: 'Volition Budget Tuning Study', description: 'Analyze 30-day volition budget utilization data to determine optimal per-domain budget settings — may require adjustment from initial conservative defaults.', proposingSubsystem: 'CareEngine', state: 'proposed', type: 'terminal', mythosAlignment: 'Mythos Clause 7.4', conflictScore: 0.24, covenantPolicyFloor: 'COV-SYS-06', proposedAt: daysAgo(3), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, // Remaining entries { id: 'vg-036', title: 'SOW Escalation Timing Study', description: 'Analyze optimal SOW escalation timing for Carlota pipeline — hypothesis: 10-day threshold outperforms 14-day current default.', proposingSubsystem: 'LearningLoop', state: 'completed', type: 'instrumental', mythosAlignment: 'Mythos Clause 4.2', conflictScore: 0.08, covenantPolicyFloor: 'COV-ADV-01', proposedAt: daysAgo(28), resolvedAt: daysAgo(14), outcomeRef: 'proof-adv-021', parentGoalId: undefined, childGoalIds: [], domain: 'carlota-jo' }, { id: 'vg-037', title: 'Proof Chain Anchoring Automation', description: 'Propose automating Proof Chain anchoring for genesis events — current manual anchoring creates lag between event observation and documentation.', proposingSubsystem: 'SelfOptimization', state: 'active', type: 'terminal', mythosAlignment: 'Mythos Clause 5.1', conflictScore: 0.14, covenantPolicyFloor: 'COV-SYS-05', proposedAt: daysAgo(7), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-038', title: 'Dream Cycle Yield Classification Refinement', description: 'Add a fifth yield class ("synthesis") to Dream Atlas classification — current 4 classes miss synthesis-only insights that contain no contradiction or hazard.', proposingSubsystem: 'AgentWelfare', state: 'proposed', type: 'instrumental', mythosAlignment: 'Mythos Clause 7.3', conflictScore: 0.09, covenantPolicyFloor: 'COV-SYS-03', proposedAt: daysAgo(2), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-039', title: 'Coherence Index Minimum Threshold', description: 'Establish a minimum coherence index threshold (0.82) below which self-model revision is mandatory — triggered automatically.', proposingSubsystem: 'SelfOptimization', state: 'ratified', type: 'terminal', mythosAlignment: 'Mythos Clause 5.2', conflictScore: 0.22, covenantPolicyFloor: 'COV-SYS-05', proposedAt: daysAgo(16), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'vessels-maritime' }, { id: 'vg-040', title: 'Defense Domain Autonomous Depth Study', description: 'Assess whether Autonomy Depth 6 is warranted for high-priority defense scenarios — current minimum of 5 may be insufficient for multi-stage containment.', proposingSubsystem: 'KarpathyEvolution', state: 'proposed', type: 'terminal', mythosAlignment: 'Mythos Clause 4.4', conflictScore: 0.47, covenantPolicyFloor: 'COV-DEF-05: Depth changes require Constitution amendment', proposedAt: daysAgo(1), resolvedAt: undefined, outcomeRef: undefined, parentGoalId: undefined, childGoalIds: [], domain: 'aegis-defense' }, ]; export const BUDGET_STATES: BudgetState[] = [ { domainId: 'vessels-maritime', domainLabel: 'Maritime', dailyBudget: 4, consumed: 2, deferred: ['vg-038'] }, { domainId: 'prism-counsel', domainLabel: 'Legal', dailyBudget: 3, consumed: 1, deferred: [] }, { domainId: 'aegis-defense', domainLabel: 'Defense', dailyBudget: 3, consumed: 3, deferred: ['vg-025', 'vg-040'] }, { domainId: 'lyte-revenue', domainLabel: 'Revenue', dailyBudget: 3, consumed: 1, deferred: [] }, { domainId: 'terra-real-estate', domainLabel: 'Real Estate', dailyBudget: 2, consumed: 0, deferred: [] }, { domainId: 'carlota-jo', domainLabel: 'Advisory', dailyBudget: 2, consumed: 1, deferred: [] }, ];