yana-rt 1.4.0

Yana AI Runtime — safety CLI for AI agents: scan, graph, vault, hunt, ci, map, fix, doctor
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
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
//! Program K — Yana OS Phase 1 local management plane.

mod agent;
mod autonomy;
mod credential;
mod governor;
mod health;
// pub(crate), not private (Discord Phase, host-native-os program): `remote`
// (a crate-root sibling of `os`, not a descendant) reuses `Actor`/`ActorId`/
// `ActorKind` directly for remote-request identity — same reasoning as
// `resource`'s pub(crate) below, not a new precedent.
pub(crate) mod identity;
mod monitor;
mod monitor_service;
pub mod platform;
// pub(crate), not private (Phase 7, host-native-os program): `model::placement`
// (a crate-root sibling of `os`, not a descendant) reuses
// `resource::placement`/`pressure`/`reservation`/`topology`'s types
// directly rather than redefining parallel ones — see that module's own
// doc comment.
pub(crate) mod resource;
mod roadmap;
mod service;
mod state;
mod status;
mod supervisor;

use anyhow::{bail, Result};
use clap::Subcommand;
use std::path::PathBuf;

#[derive(Subcommand, Debug)]
pub enum OsAction {
    /// Initialize versioned Yana OS state for a project.
    Init {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Show aggregate management-plane status.
    Status {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Inspect management-plane evidence without mutating or repairing it.
    Doctor {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Cooperative agent registry and lifecycle metadata.
    Agent {
        #[command(subcommand)]
        action: AgentAction,
    },
    /// Credential presence (never credential values).
    Credential {
        #[command(subcommand)]
        action: CredentialAction,
    },
    /// Explicit resource policy and preflight.
    Resource {
        #[command(subcommand)]
        action: ResourceAction,
    },
    /// Evolution Governor — health, capacity, and portfolio roadmap.
    Governor {
        #[command(subcommand)]
        action: GovernorAction,
    },
    /// Cross-platform host and Yana runtime health monitoring.
    Monitor {
        #[command(subcommand)]
        action: MonitorAction,
    },
    /// Normalized host profile and platform capability fingerprint.
    Host {
        #[command(subcommand)]
        action: HostAction,
    },
    /// Native Giám Thị supervisor, safety modes, dashboard, and receipts.
    Supervisor {
        #[command(subcommand)]
        action: SupervisorAction,
    },
    /// Resident Giám Thị service lifecycle (continuous process, not scheduler).
    Service {
        #[command(subcommand)]
        action: ResidentServiceAction,
    },
    /// Automatic-operation policy and durable action intent queue.
    Autonomy {
        #[command(subcommand)]
        action: AutonomyAction,
    },
    /// Normalized actor identity and scoped capability leases.
    Identity {
        #[command(subcommand)]
        action: IdentityAction,
    },
    /// Phase 0 compatibility: list chat sessions.
    AgentList {
        #[arg(long, default_value_t = 20)]
        limit: usize,
    },
    /// Phase 0 compatibility: provider credential presence.
    CredentialStatus,
    /// Phase 0 compatibility: existing token/cost ledger summary.
    ResourceStatus,
}

#[derive(Subcommand, Debug)]
pub enum AutonomyAction {
    /// Show or update the autonomy ceiling and verification policy.
    Policy {
        #[command(subcommand)]
        action: AutonomyPolicyAction,
    },
    /// Explain how a typed operation is classified by the current policy.
    /// Without --actor, behaves exactly as before Phase 13 (policy/
    /// operation only). With --actor, an Automatic decision additionally
    /// requires that actor to hold an active lease covering the
    /// operation's lease scope -- see `autonomy::evaluate_for_actor`.
    Classify {
        operation: autonomy::Operation,
        #[arg(long)]
        actor: Option<String>,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Manage durable action intents. This layer does not execute commands.
    Queue {
        #[command(subcommand)]
        action: AutonomyQueueAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum AutonomyPolicyAction {
    Show {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Set {
        #[arg(long, action = clap::ArgAction::Set)]
        enabled: bool,
        #[arg(long)]
        max_automatic_level: autonomy::AutonomyLevel,
        #[arg(long, default_value_t = 1)]
        max_attempts: u32,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum AutonomyQueueAction {
    List {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Add {
        operation: autonomy::Operation,
        #[arg(long)]
        summary: String,
        #[arg(long)]
        program: String,
        #[arg(long = "arg")]
        args: Vec<String>,
        #[arg(long)]
        verify_program: Option<String>,
        #[arg(long = "verify-arg")]
        verify_args: Vec<String>,
        #[arg(long)]
        rollback_program: Option<String>,
        #[arg(long = "rollback-arg")]
        rollback_args: Vec<String>,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Approve {
        id: String,
        #[arg(long)]
        approve: bool,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Cancel {
        id: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum IdentityAction {
    /// Scoped, TTL-bounded capability leases (Phase 13). See
    /// `autonomy classify --actor` for the guard a lease actually feeds.
    Lease {
        #[command(subcommand)]
        action: LeaseAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum LeaseAction {
    /// Grant an actor a scoped, TTL-bounded lease. Fails if `scope` is
    /// (case-insensitively) "sovereign" -- a lease can never grant
    /// Sovereign authority.
    Issue {
        actor: String,
        #[arg(long)]
        scope: String,
        #[arg(long)]
        issued_by: String,
        #[arg(long, default_value_t = 3600)]
        ttl_secs: u64,
        #[arg(long)]
        reason: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// List active (unexpired) leases.
    List {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Revoke {
        id: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum AgentAction {
    List {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
        #[arg(long)]
        include_chat_sessions: bool,
        #[arg(long, default_value_t = 20)]
        limit: usize,
    },
    Register {
        name: String,
        #[arg(long)]
        provider: String,
        #[arg(long)]
        model: Option<String>,
        #[arg(long)]
        session_id: Option<String>,
        #[arg(long)]
        owner: Option<String>,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Heartbeat {
        id: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Transition {
        id: String,
        status: state::AgentStatus,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum CredentialAction {
    Status {
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum ResourceAction {
    Show {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Set {
        #[arg(long)]
        max_active_agents: Option<usize>,
        #[arg(long)]
        max_tokens_per_request: Option<u64>,
        #[arg(long)]
        max_daily_cost_usd: Option<f64>,
        #[arg(long, default_value_t = 300)]
        stale_after_secs: u64,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Check {
        #[arg(long, default_value_t = 1)]
        requested_agents: usize,
        #[arg(long, default_value_t = 0)]
        estimated_tokens: u64,
        #[arg(long, default_value_t = 0.0)]
        estimated_cost_usd: f64,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Normalized CPU/memory/accelerator shape of this host (Phase 5).
    Topology {
        #[arg(long)]
        json: bool,
    },
    /// Current CPU/memory/accelerator utilization — separate from
    /// topology (what the host has) and policy (what limits apply).
    Pressure {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Bounded resource reservations for agent/model workloads.
    Reservation {
        #[command(subcommand)]
        action: ReservationAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum ReservationAction {
    List {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Reserve {
        #[arg(long)]
        actor: String,
        #[arg(long)]
        cpu_cores: Option<usize>,
        #[arg(long)]
        memory_bytes: Option<u64>,
        #[arg(long)]
        accelerator_name: Option<String>,
        #[arg(long)]
        ttl_secs: Option<i64>,
        #[arg(long)]
        reason: String,
        #[arg(long)]
        allow_overcommit: bool,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Release {
        id: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum GovernorAction {
    /// Health Map — mechanically checkable signals only (drift-check,
    /// core-lock, manifest counts; --deep adds cargo test + hook suite).
    Status {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
        #[arg(long)]
        deep: bool,
    },
    /// Absorption capacity policy (docs/EVOLUTION_GOVERNOR.md's YAML
    /// example) — how much new work the project can take on right now.
    Capacity {
        #[command(subcommand)]
        action: CapacityAction,
    },
    /// Manage the approved NOW/NEXT/LATER roadmap.
    Roadmap {
        #[command(subcommand)]
        action: RoadmapAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum HostAction {
    /// Full normalized host profile: CPU/memory/accelerator description
    /// and platform capability fingerprint.
    Status {
        #[arg(long)]
        json: bool,
    },
    /// Platform capability fingerprint only (subset of `status`).
    Capabilities {
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum MonitorAction {
    /// Collect and persist one CPU, memory, disk, GPU, and Yana health snapshot.
    Sample {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Show the most recently persisted snapshot without collecting again.
    Show {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Install, inspect, or remove the per-user automatic sampler.
    Service {
        #[command(subcommand)]
        action: MonitorServiceAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum MonitorServiceAction {
    /// Explicitly install and start the native per-user scheduler.
    Install {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        json: bool,
    },
    /// Show whether this project's native sampler definition is installed.
    Status {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Stop and remove this project's native per-user scheduler.
    Uninstall {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum ResidentServiceAction {
    /// Install, register, start, and verify the resident service.
    Install {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        allow_protected_path: bool,
        #[arg(long)]
        json: bool,
    },
    /// Start an installed resident service.
    Start {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        allow_protected_path: bool,
        #[arg(long)]
        json: bool,
    },
    /// Stop the resident process but preserve its installed definition.
    Stop {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        json: bool,
    },
    /// Stop and start the installed resident service.
    Restart {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        allow_protected_path: bool,
        #[arg(long)]
        json: bool,
    },
    /// Report definition, registration, and live running state separately.
    Status {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        json: bool,
    },
    /// Deregister and remove the resident service definition.
    Uninstall {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
        #[arg(long)]
        json: bool,
    },
    /// Internal long-running payload used by launchd/systemd/Task Scheduler.
    Run {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long, default_value_t = 60)]
        interval_secs: u64,
    },
}

#[derive(Subcommand, Debug)]
pub enum SupervisorAction {
    /// Internal hook bridge for shared HALT/quarantine enforcement.
    #[command(hide = true)]
    HookCheck {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
    },
    /// Run one native monitoring and governance heartbeat.
    Tick {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Show the aggregate supervisor dashboard and heartbeat SLO.
    Status {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Run safe synthetic checks without touching the production halt lock.
    SelfTest {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Create the shared cross-engine halt lock.
    Halt {
        #[arg(long)]
        reason: String,
        #[arg(long)]
        actor: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
    },
    /// Human-only unlock ceremony with an auditable reason.
    Unlock {
        #[arg(long)]
        approve: bool,
        #[arg(long)]
        reason: String,
        #[arg(long)]
        actor: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
    },
    /// Apply or clear a reduced-capability safety mode.
    Quarantine {
        #[command(subcommand)]
        action: SupervisorQuarantineAction,
    },
    /// Install, inspect, or remove the periodic one-shot supervisor scheduler.
    #[command(alias = "service")]
    Scheduler {
        #[command(subcommand)]
        action: MonitorServiceAction,
    },
}

#[derive(Subcommand, Debug)]
pub enum SupervisorQuarantineAction {
    Set {
        mode: supervisor::QuarantineMode,
        #[arg(long)]
        reason: String,
        #[arg(long)]
        actor: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Clear {
        #[arg(long)]
        approve: bool,
        #[arg(long)]
        reason: String,
        #[arg(long)]
        actor: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
    },
}

#[derive(Subcommand, Debug)]
pub enum CapacityAction {
    Show {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    Set {
        #[arg(long, default_value = "convergence")]
        mode: String,
        #[arg(long, default_value_t = 2)]
        max_active_programs: usize,
        #[arg(long, default_value_t = 0)]
        max_architecture_changes: usize,
        #[arg(long, default_value_t = 0)]
        max_new_dependencies: usize,
        #[arg(long, default_value_t = 1)]
        max_active_experiments: usize,
        #[arg(long, default_value_t = 70)]
        allocation_consolidation_pct: u8,
        #[arg(long, default_value_t = 20)]
        allocation_onboarding_and_packaging_pct: u8,
        #[arg(long, default_value_t = 10)]
        allocation_experiments_pct: u8,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand, Debug)]
pub enum RoadmapAction {
    /// Show every roadmap tier, ordered by priority.
    List {
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Register a complete proposal at NEXT or LATER.
    Add(Box<RoadmapAddArgs>),
    /// Promote NEXT to NOW with explicit human approval.
    Promote {
        #[arg(long)]
        id: String,
        #[arg(long)]
        approve: bool,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
    /// Move an existing NOW or NEXT item to LATER.
    Demote {
        #[arg(long)]
        id: String,
        #[arg(long, default_value = ".")]
        dir: PathBuf,
        #[arg(long)]
        json: bool,
    },
}

#[derive(clap::Args, Debug)]
pub struct RoadmapAddArgs {
    #[arg(long)]
    tier: roadmap::ProposalTier,
    #[arg(long)]
    action: state::RoadmapItemAction,
    #[arg(long)]
    priority: state::RoadmapPriority,
    #[arg(long)]
    objective: String,
    #[arg(long)]
    evidence: String,
    #[arg(long)]
    scope: String,
    #[arg(long)]
    out_of_scope: String,
    #[arg(long)]
    dependencies: String,
    #[arg(long)]
    risks: String,
    #[arg(long)]
    deliverables: String,
    #[arg(long)]
    owner: String,
    #[arg(long)]
    reviewer: String,
    #[arg(long)]
    acceptance_criteria: String,
    #[arg(long)]
    exit_criteria: String,
    #[arg(long)]
    definition_of_done: String,
    #[arg(long)]
    rollback_path: String,
    #[arg(long, default_value = ".")]
    dir: PathBuf,
    #[arg(long)]
    json: bool,
}
pub fn dispatch(action: OsAction) -> Result<()> {
    match action {
        OsAction::Init { dir, json } => {
            let root = state::project_root(&dir)?;
            let current = state::initialize(&root)?;
            if json {
                println!("{}", serde_json::to_string_pretty(&current)?);
            } else {
                println!(
                    "Initialized Yana OS state at {}",
                    state::state_path(&root).display()
                );
                println!(
                    "Resource policy is unset; preflight remains fail-closed until configured."
                );
            }
        }
        OsAction::Status { dir, json } => {
            let root = state::project_root(&dir)?;
            let unified = status::aggregate(&root)?;
            status::print(&unified, json)?;
        }
        OsAction::Doctor { dir, json } => {
            let root = state::project_root(&dir)?;
            let report = health::inspect(&root);
            health::print(&report, json)?;
            if report.failed() {
                bail!("Yana OS doctor found blocking failures");
            }
        }
        OsAction::Agent { action } => dispatch_agent(action)?,
        OsAction::Credential { action } => match action {
            CredentialAction::Status { json } => credential::status(json)?,
        },
        OsAction::Resource { action } => dispatch_resource(action)?,
        OsAction::Governor { action } => dispatch_governor(action)?,
        OsAction::Monitor { action } => dispatch_monitor(action)?,
        OsAction::Host { action } => dispatch_host(action)?,
        OsAction::Supervisor { action } => dispatch_supervisor(action)?,
        OsAction::Service { action } => dispatch_resident_service(action)?,
        OsAction::Autonomy { action } => dispatch_autonomy(action)?,
        OsAction::Identity { action } => dispatch_identity(action)?,
        OsAction::AgentList { limit } => agent::legacy_list(limit),
        OsAction::CredentialStatus => credential::status(false)?,
        OsAction::ResourceStatus => resource::legacy_status(),
    }
    Ok(())
}

fn dispatch_supervisor(action: SupervisorAction) -> Result<()> {
    match action {
        SupervisorAction::HookCheck { dir } => {
            use std::io::Read;

            let root = state::project_root(&dir)?;
            let mut input = String::new();
            std::io::stdin().read_to_string(&mut input)?;
            let result = supervisor::hook_check(&root, &input);
            if !result.stdout.is_empty() {
                print!("{}", result.stdout);
            }
            if !result.stderr.is_empty() {
                eprint!("{}", result.stderr);
            }
            if result.exit_code != 0 {
                std::process::exit(result.exit_code);
            }
        }
        SupervisorAction::Tick { dir, json } => {
            let root = state::project_root(&dir)?;
            supervisor::print(&supervisor::tick(&root)?, json, "Yana Giám Thị tick")?;
        }
        SupervisorAction::Status { dir, json } => {
            let root = state::project_root(&dir)?;
            supervisor::print(
                &supervisor::dashboard(&root)?,
                json,
                "Yana Giám Thị dashboard",
            )?;
        }
        SupervisorAction::SelfTest { dir, json } => {
            let root = state::project_root(&dir)?;
            let report = supervisor::self_test(&root);
            supervisor::print(&report, json, "Yana Giám Thị self-test")?;
            if !report.passed {
                bail!("Giám Thị self-test found blocking failures");
            }
        }
        SupervisorAction::Halt { reason, actor, dir } => {
            let root = state::project_root(&dir)?;
            supervisor::halt(&root, &reason, &actor)?;
            println!(
                "Giám Thị halted all supported engines for {}",
                root.display()
            );
        }
        SupervisorAction::Unlock {
            approve,
            reason,
            actor,
            dir,
        } => {
            let root = state::project_root(&dir)?;
            supervisor::unlock(&root, approve, &reason, &actor)?;
            println!("Human unlock ceremony completed for {}", root.display());
        }
        SupervisorAction::Quarantine { action } => match action {
            SupervisorQuarantineAction::Set {
                mode,
                reason,
                actor,
                dir,
                json,
            } => {
                let root = state::project_root(&dir)?;
                supervisor::print(
                    &supervisor::set_quarantine(&root, mode, &reason, &actor)?,
                    json,
                    "Yana Giám Thị quarantine",
                )?;
            }
            SupervisorQuarantineAction::Clear {
                approve,
                reason,
                actor,
                dir,
            } => {
                let root = state::project_root(&dir)?;
                supervisor::clear_quarantine(&root, approve, &reason, &actor)?;
                println!("Giám Thị quarantine cleared for {}", root.display());
            }
        },
        SupervisorAction::Scheduler { action } => match action {
            MonitorServiceAction::Install {
                dir,
                interval_secs,
                json,
            } => {
                let root = state::project_root(&dir)?;
                monitor_service::print(&monitor_service::install(&root, interval_secs)?, json)?;
            }
            MonitorServiceAction::Status { dir, json } => {
                let root = state::project_root(&dir)?;
                monitor_service::print(&monitor_service::status(&root)?, json)?;
            }
            MonitorServiceAction::Uninstall { dir, json } => {
                let root = state::project_root(&dir)?;
                monitor_service::print(&monitor_service::uninstall(&root)?, json)?;
            }
        },
    }
    Ok(())
}

fn dispatch_resident_service(action: ResidentServiceAction) -> Result<()> {
    match action {
        ResidentServiceAction::Install {
            dir,
            interval_secs,
            allow_protected_path,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::runtime::preflight(&root, allow_protected_path)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.install()?,
                json,
            )?;
        }
        ResidentServiceAction::Start {
            dir,
            interval_secs,
            allow_protected_path,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::runtime::preflight(&root, allow_protected_path)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.start()?,
                json,
            )?;
        }
        ResidentServiceAction::Stop {
            dir,
            interval_secs,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.stop()?,
                json,
            )?;
        }
        ResidentServiceAction::Restart {
            dir,
            interval_secs,
            allow_protected_path,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::runtime::preflight(&root, allow_protected_path)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.restart()?,
                json,
            )?;
        }
        ResidentServiceAction::Status {
            dir,
            interval_secs,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.status()?,
                json,
            )?;
        }
        ResidentServiceAction::Uninstall {
            dir,
            interval_secs,
            json,
        } => {
            let root = state::project_root(&dir)?;
            service::manager::print(
                &service::runtime::manager(&root, interval_secs)?.uninstall()?,
                json,
            )?;
        }
        ResidentServiceAction::Run { dir, interval_secs } => {
            let root = state::project_root(&dir)?;
            service::runtime::run(&root, interval_secs)?;
        }
    }
    Ok(())
}

fn dispatch_host(action: HostAction) -> Result<()> {
    use platform::contract::TelemetryBackend;

    match action {
        HostAction::Status { json } => {
            let profile = platform::backend().host_profile()?;
            platform::profile::print(&profile, json)?;
        }
        HostAction::Capabilities { json } => {
            let profile = platform::backend().host_profile()?;
            platform::profile::print_capabilities(&profile.capabilities, json)?;
        }
    }
    Ok(())
}

fn dispatch_monitor(action: MonitorAction) -> Result<()> {
    match action {
        MonitorAction::Sample { dir, json } => {
            let root = state::project_root(&dir)?;
            let snapshot = monitor::collect(&root);
            monitor::persist(&root, &snapshot)?;
            monitor::print(&snapshot, json)?;
        }
        MonitorAction::Show { dir, json } => {
            let root = state::project_root(&dir)?;
            monitor::print(&monitor::load(&root)?, json)?;
        }
        MonitorAction::Service { action } => match action {
            MonitorServiceAction::Install {
                dir,
                interval_secs,
                json,
            } => {
                let root = state::project_root(&dir)?;
                let report = monitor_service::install(&root, interval_secs)?;
                monitor_service::print(&report, json)?;
            }
            MonitorServiceAction::Status { dir, json } => {
                let root = state::project_root(&dir)?;
                monitor_service::print(&monitor_service::status(&root)?, json)?;
            }
            MonitorServiceAction::Uninstall { dir, json } => {
                let root = state::project_root(&dir)?;
                monitor_service::print(&monitor_service::uninstall(&root)?, json)?;
            }
        },
    }
    Ok(())
}

fn dispatch_autonomy(action: AutonomyAction) -> Result<()> {
    match action {
        AutonomyAction::Policy { action } => match action {
            AutonomyPolicyAction::Show { dir, json } => {
                let root = state::project_root(&dir)?;
                autonomy::print_json_or_debug(&autonomy::load_policy(&root)?, json)?;
            }
            AutonomyPolicyAction::Set {
                enabled,
                max_automatic_level,
                max_attempts,
                dir,
                json,
            } => {
                let root = state::project_root(&dir)?;
                let policy = autonomy::AutonomyPolicy {
                    enabled,
                    max_automatic_level,
                    max_attempts,
                };
                autonomy::save_policy(&root, &policy)?;
                autonomy::print_json_or_debug(&policy, json)?;
            }
        },
        AutonomyAction::Classify {
            operation,
            actor,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            let policy = autonomy::load_policy(&root)?;
            let decision = match actor {
                None => autonomy::evaluate(&policy, operation),
                Some(actor) => {
                    let actor = identity::ActorId(actor);
                    let leases = identity::active_leases_for_actor(&root, &actor)?;
                    autonomy::evaluate_for_actor(autonomy::ActorEvaluationRequest {
                        policy: &policy,
                        operation,
                        actor: &actor,
                        actor_leases: &leases,
                        now_unix_secs: identity::lease_store::now_unix_secs(),
                    })
                }
            };
            autonomy::print_json_or_debug(&decision, json)?;
        }
        AutonomyAction::Queue { action } => match action {
            AutonomyQueueAction::List { dir, json } => {
                let root = state::project_root(&dir)?;
                autonomy::print_json_or_debug(&autonomy::load_queue(&root)?, json)?;
            }
            AutonomyQueueAction::Add {
                operation,
                summary,
                program,
                args,
                verify_program,
                verify_args,
                rollback_program,
                rollback_args,
                dir,
                json,
            } => {
                if verify_program.is_none() && !verify_args.is_empty() {
                    bail!("--verify-arg requires --verify-program");
                }
                if rollback_program.is_none() && !rollback_args.is_empty() {
                    bail!("--rollback-arg requires --rollback-program");
                }
                let root = state::project_root(&dir)?;
                let action = autonomy::enqueue(
                    &root,
                    autonomy::NewAction {
                        operation,
                        summary,
                        command: autonomy::ActionCommand { program, args },
                        verification: verify_program.map(|program| autonomy::ActionCommand {
                            program,
                            args: verify_args,
                        }),
                        rollback: rollback_program.map(|program| autonomy::ActionCommand {
                            program,
                            args: rollback_args,
                        }),
                    },
                )?;
                autonomy::print_json_or_debug(&action, json)?;
            }
            AutonomyQueueAction::Approve {
                id,
                approve,
                dir,
                json,
            } => {
                let root = state::project_root(&dir)?;
                autonomy::print_json_or_debug(&autonomy::approve(&root, &id, approve)?, json)?;
            }
            AutonomyQueueAction::Cancel { id, dir, json } => {
                let root = state::project_root(&dir)?;
                autonomy::print_json_or_debug(&autonomy::cancel(&root, &id)?, json)?;
            }
        },
    }
    Ok(())
}

fn dispatch_identity(action: IdentityAction) -> Result<()> {
    match action {
        IdentityAction::Lease { action } => match action {
            LeaseAction::Issue {
                actor,
                scope,
                issued_by,
                ttl_secs,
                reason,
                dir,
                json,
            } => {
                let root = state::project_root(&dir)?;
                let issued = identity::issue_lease(
                    &root,
                    identity::lease::GrantRequest {
                        actor: identity::ActorId(actor),
                        scope: identity::LeaseScope(scope),
                        issued_by: identity::ActorId(issued_by),
                        issued_at_unix_secs: identity::lease_store::now_unix_secs(),
                        ttl_secs,
                        reason,
                    },
                )?;
                if json {
                    println!("{}", serde_json::to_string_pretty(&issued)?);
                } else {
                    identity::lease_store::print_list(std::slice::from_ref(&issued), false)?;
                }
            }
            LeaseAction::List { dir, json } => {
                let root = state::project_root(&dir)?;
                identity::lease_store::print_list(&identity::list_leases(&root)?, json)?;
            }
            LeaseAction::Revoke { id, dir, json } => {
                let root = state::project_root(&dir)?;
                identity::revoke_lease(&root, &id)?;
                if json {
                    println!("{}", serde_json::json!({ "revoked": id }));
                } else {
                    println!("Revoked lease {id}");
                }
            }
        },
    }
    Ok(())
}

fn dispatch_governor(action: GovernorAction) -> Result<()> {
    match action {
        GovernorAction::Status { dir, json, deep } => {
            let root = state::project_root(&dir)?;
            let report = governor::status(&root, deep);
            governor::print_status(&report, json)?;
            if report.failed() {
                bail!("Evolution Governor status found blocking failures");
            }
        }
        GovernorAction::Capacity { action } => match action {
            CapacityAction::Show { dir, json } => {
                let root = state::project_root(&dir)?;
                governor::print_capacity(&governor::load_capacity(&root)?, json)?;
            }
            CapacityAction::Set {
                mode,
                max_active_programs,
                max_architecture_changes,
                max_new_dependencies,
                max_active_experiments,
                allocation_consolidation_pct,
                allocation_onboarding_and_packaging_pct,
                allocation_experiments_pct,
                dir,
                json,
            } => {
                let root = state::project_root(&dir)?;
                let capacity = governor::set_capacity(
                    &root,
                    governor::GovernorCapacity {
                        mode,
                        max_active_programs,
                        max_architecture_changes,
                        max_new_dependencies,
                        max_active_experiments,
                        allocation_consolidation_pct,
                        allocation_onboarding_and_packaging_pct,
                        allocation_experiments_pct,
                    },
                )?;
                governor::print_capacity(&capacity, json)?;
            }
        },
        GovernorAction::Roadmap { action } => dispatch_roadmap(action)?,
    }
    Ok(())
}

fn dispatch_roadmap(action: RoadmapAction) -> Result<()> {
    match action {
        RoadmapAction::List { dir, json } => {
            let root = state::project_root(&dir)?;
            roadmap::print_view(&roadmap::list(&root)?, json)?;
        }
        RoadmapAction::Add(args) => {
            let RoadmapAddArgs {
                tier,
                action,
                priority,
                objective,
                evidence,
                scope,
                out_of_scope,
                dependencies,
                risks,
                deliverables,
                owner,
                reviewer,
                acceptance_criteria,
                exit_criteria,
                definition_of_done,
                rollback_path,
                dir,
                json,
            } = *args;
            let root = state::project_root(&dir)?;
            let item = roadmap::add(
                &root,
                roadmap::NewRoadmapItem {
                    tier,
                    action,
                    priority,
                    objective,
                    evidence,
                    scope,
                    out_of_scope,
                    dependencies,
                    risks,
                    deliverables,
                    owner,
                    reviewer,
                    acceptance_criteria,
                    exit_criteria,
                    definition_of_done,
                    rollback_path,
                },
            )?;
            roadmap::print_item(&item, json)?;
        }
        RoadmapAction::Promote {
            id,
            approve,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            roadmap::print_item(&roadmap::promote(&root, &id, approve)?, json)?;
        }
        RoadmapAction::Demote { id, dir, json } => {
            let root = state::project_root(&dir)?;
            roadmap::print_item(&roadmap::demote(&root, &id)?, json)?;
        }
    }
    Ok(())
}

fn dispatch_agent(action: AgentAction) -> Result<()> {
    match action {
        AgentAction::List {
            dir,
            json,
            include_chat_sessions,
            limit,
        } => {
            let root = state::project_root(&dir)?;
            let inventory = agent::inventory(&root, include_chat_sessions, limit)?;
            agent::print_inventory(&inventory, json)?;
        }
        AgentAction::Register {
            name,
            provider,
            model,
            session_id,
            owner,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            let record = agent::register(&root, name, provider, model, session_id, owner)?;
            agent::print_agent(&record, json)?;
        }
        AgentAction::Heartbeat { id, dir, json } => {
            let root = state::project_root(&dir)?;
            agent::print_agent(&agent::heartbeat(&root, &id)?, json)?;
        }
        AgentAction::Transition {
            id,
            status,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            agent::print_agent(&agent::transition(&root, &id, status)?, json)?;
        }
    }
    Ok(())
}

fn dispatch_resource(action: ResourceAction) -> Result<()> {
    match action {
        ResourceAction::Show { dir, json } => {
            let root = state::project_root(&dir)?;
            resource::print_policy(&resource::get_policy(&root)?, json)?;
        }
        ResourceAction::Set {
            max_active_agents,
            max_tokens_per_request,
            max_daily_cost_usd,
            stale_after_secs,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            let policy = resource::set_policy(
                &root,
                state::ResourcePolicy {
                    max_active_agents,
                    max_tokens_per_request,
                    max_daily_cost_usd,
                    stale_after_secs,
                },
            )?;
            resource::print_policy(&policy, json)?;
        }
        ResourceAction::Check {
            requested_agents,
            estimated_tokens,
            estimated_cost_usd,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            let decision = resource::check(
                &root,
                requested_agents,
                estimated_tokens,
                estimated_cost_usd,
            )?;
            resource::print_decision(&decision, json)?;
            if !decision.allowed {
                bail!("resource preflight denied");
            }
        }
        ResourceAction::Topology { json } => {
            resource::topology::print(&resource::topology::collect()?, json)?;
        }
        ResourceAction::Pressure { dir, json } => {
            let root = state::project_root(&dir)?;
            resource::pressure::print(&resource::pressure::collect(&root), json)?;
        }
        ResourceAction::Reservation { action } => dispatch_reservation(action)?,
    }
    Ok(())
}

fn dispatch_reservation(action: ReservationAction) -> Result<()> {
    match action {
        ReservationAction::List { dir, json } => {
            let root = state::project_root(&dir)?;
            resource::reservation::print_list(&resource::reservation::list(&root)?, json)?;
        }
        ReservationAction::Reserve {
            actor,
            cpu_cores,
            memory_bytes,
            accelerator_name,
            ttl_secs,
            reason,
            allow_overcommit,
            dir,
            json,
        } => {
            let root = state::project_root(&dir)?;
            let reservation = resource::reservation::reserve(
                &root,
                resource::reservation::ReserveRequest {
                    actor,
                    cpu_cores,
                    memory_bytes,
                    accelerator_name,
                    ttl_secs,
                    reason,
                    allow_overcommit,
                },
            )?;
            resource::reservation::print_list(&[reservation], json)?;
        }
        ReservationAction::Release { id, dir, json } => {
            let root = state::project_root(&dir)?;
            resource::reservation::release(&root, &id)?;
            if json {
                println!("{}", serde_json::json!({ "released": id }));
            } else {
                println!("Released reservation {id}");
            }
        }
    }
    Ok(())
}

#[cfg(test)]
mod tests {
    use super::*;
    use clap::{error::ErrorKind, Parser};

    #[derive(Debug, Parser)]
    struct RoadmapCli {
        #[command(subcommand)]
        action: RoadmapAction,
    }

    #[test]
    fn add_requires_acceptance_criteria_at_the_cli_boundary() {
        let error = RoadmapCli::try_parse_from([
            "roadmap",
            "add",
            "--tier",
            "next",
            "--action",
            "stabilize",
            "--priority",
            "p1",
            "--objective",
            "fix golden path",
            "--evidence",
            "verified failure",
            "--scope",
            "runtime",
            "--out-of-scope",
            "new providers",
            "--dependencies",
            "capability runtime",
            "--risks",
            "regression",
            "--deliverables",
            "passing tests",
            "--owner",
            "runtime maintainer",
            "--reviewer",
            "anh",
            "--exit-criteria",
            "evidence recorded",
            "--definition-of-done",
            "tests pass",
            "--rollback-path",
            "remove wiring",
        ])
        .unwrap_err();

        assert_eq!(error.kind(), ErrorKind::MissingRequiredArgument);
        assert!(error.to_string().contains("--acceptance-criteria"));
    }
}