decapod 0.47.21

Decapod is the daemonless, local-first control plane that agents call on demand to align intent, enforce boundaries, and produce proof-backed completion across concurrent multi-agent work. 🦀
Documentation
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
//! Gatling regression tests — exercises every CLI code path.
//!
//! Converted from `dev/gatling_test.sh` (v2). Each subsystem is tested
//! in an isolated temp directory with a git repo + `decapod init`.

use std::path::PathBuf;
use std::process::Command;
use tempfile::TempDir;

// ---------------------------------------------------------------------------
// Helpers
// ---------------------------------------------------------------------------

/// Create a temp dir with git init + decapod init --force.
fn setup_workspace() -> (TempDir, PathBuf) {
    let tmp = TempDir::new().expect("tempdir");
    let dir = tmp.path().to_path_buf();

    // git init
    Command::new("git")
        .args(["init", "-q"])
        .current_dir(&dir)
        .output()
        .expect("git init");
    Command::new("git")
        .args(["config", "user.email", "test@test.com"])
        .current_dir(&dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["config", "user.name", "Test"])
        .current_dir(&dir)
        .output()
        .unwrap();
    std::fs::write(dir.join("README.md"), "# test\n").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-q", "-m", "init"])
        .current_dir(&dir)
        .output()
        .unwrap();

    // decapod init --force
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["init", "--force"])
        .current_dir(&dir)
        .output()
        .expect("decapod init");
    assert!(out.status.success(), "decapod init --force failed");

    let session = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["session", "acquire"])
        .current_dir(&dir)
        .output()
        .expect("decapod session acquire");
    assert!(
        session.status.success(),
        "decapod session acquire failed:\n{}\n{}",
        String::from_utf8_lossy(&session.stdout),
        String::from_utf8_lossy(&session.stderr)
    );

    (tmp, dir)
}

/// Run decapod with given args. Returns (success, stdout+stderr).
fn run(dir: &PathBuf, args: &[&str]) -> (bool, String) {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(args)
        .current_dir(dir)
        .env("DECAPOD_VALIDATE_SKIP_GIT_GATES", "1")
        .output()
        .expect("failed to run decapod");
    let combined = format!(
        "{}\n{}",
        String::from_utf8_lossy(&out.stdout),
        String::from_utf8_lossy(&out.stderr)
    );
    (out.status.success(), combined)
}

/// Assert command succeeds.
fn ok(dir: &PathBuf, args: &[&str]) {
    let (success, output) = run(dir, args);
    assert!(
        success,
        "expected success for `decapod {}` but got failure:\n{}",
        args.join(" "),
        output
    );
}

/// Assert command fails.
fn fail(dir: &PathBuf, args: &[&str]) {
    let (success, output) = run(dir, args);
    assert!(
        !success,
        "expected failure for `decapod {}` but got success:\n{}",
        args.join(" "),
        output
    );
}

/// Extract first task ID from `todo --format json list` output.
fn extract_task_id(dir: &PathBuf) -> String {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .args(["todo", "--format", "json", "list"])
        .current_dir(dir)
        .output()
        .expect("failed to run decapod");
    let stdout = String::from_utf8_lossy(&out.stdout);
    // Parse stdout-only (no stderr contamination) as JSON.
    if let Ok(v) = serde_json::from_str::<serde_json::Value>(stdout.trim())
        && let Some(items) = v.get("items").and_then(|i| i.as_array())
        && let Some(first) = items.first()
        && let Some(id) = first.get("id").and_then(|i| i.as_str())
    {
        return id.to_string();
    }
    // Fallback: extract ULID-style ID with regex from anywhere in the output
    let re = regex::Regex::new(r"R_[0-9A-Z]{26}").unwrap();
    if let Some(m) = re.find(&stdout) {
        return m.as_str().to_string();
    }
    let stderr = String::from_utf8_lossy(&out.stderr);
    panic!(
        "could not extract task ID.\nstdout:\n{}\nstderr:\n{}",
        stdout, stderr
    );
}

// ---------------------------------------------------------------------------
// 1. Top-Level
// ---------------------------------------------------------------------------

#[test]
fn t001_version() {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .arg("--version")
        .output()
        .unwrap();
    assert!(
        !out.status.success(),
        "--version flag should be rejected; use `decapod version`"
    );
    let s = String::from_utf8_lossy(&out.stderr);
    assert!(
        s.contains("unexpected argument '--version'") || s.contains("Usage: decapod <COMMAND>"),
        "expected clap argument rejection for --version, got:\n{}",
        s
    );
}

#[test]
fn t002_help() {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .arg("--help")
        .output()
        .unwrap();
    assert!(out.status.success());
}

#[test]
fn t003_no_args_errors() {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .output()
        .unwrap();
    assert!(!out.status.success());
}

#[test]
fn t004_version_command_works() {
    let (_tmp, dir) = setup_workspace();

    let (success, output) = run(&dir, &["version"]);
    assert!(success, "version command should succeed, got:\n{}", output);
    // Output contains the version number (e.g., "0.12.1")
    assert!(
        output.contains(env!("CARGO_PKG_VERSION")),
        "expected version string in output:\n{}",
        output
    );
}

// ---------------------------------------------------------------------------
// 2. Init
// ---------------------------------------------------------------------------

#[test]
fn t010_init_lifecycle() {
    let tmp = TempDir::new().unwrap();
    let dir = tmp.path().to_path_buf();

    // git init
    Command::new("git")
        .args(["init", "-q"])
        .current_dir(&dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["config", "user.email", "t@t"])
        .current_dir(&dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["config", "user.name", "t"])
        .current_dir(&dir)
        .output()
        .unwrap();
    std::fs::write(dir.join("README.md"), "# t\n").unwrap();
    Command::new("git")
        .args(["add", "."])
        .current_dir(&dir)
        .output()
        .unwrap();
    Command::new("git")
        .args(["commit", "-q", "-m", "init"])
        .current_dir(&dir)
        .output()
        .unwrap();

    // T010: basic init
    ok(&dir, &["init"]);
    // T011: init --force (re-init)
    ok(&dir, &["init", "--force"]);
    // T012: init --dry-run
    ok(&dir, &["init", "--dry-run"]);
    // T013: init --all
    ok(&dir, &["init", "--all"]);
    // T014: init --claude
    ok(&dir, &["init", "--claude"]);
    // T015: init --gemini
    ok(&dir, &["init", "--gemini"]);
    // T016: init --agents
    ok(&dir, &["init", "--agents"]);
    // T017: init clean
    ok(&dir, &["init", "clean"]);
    // Re-init after clean
    ok(&dir, &["init", "--force"]);
    // T018: alias `i`
    ok(&dir, &["i"]);
}

// ---------------------------------------------------------------------------
// 3. Setup
// ---------------------------------------------------------------------------

#[test]
fn t020_setup_hooks() {
    let (_tmp, dir) = setup_workspace();
    // T020
    ok(&dir, &["setup", "hook", "--commit-msg"]);
    // T021
    ok(&dir, &["setup", "hook", "--pre-commit"]);
    // T022
    ok(&dir, &["setup", "hook", "--uninstall"]);
    // T023
    ok(&dir, &["setup", "--help"]);
}

// ---------------------------------------------------------------------------
// 4. Docs
// ---------------------------------------------------------------------------

#[test]
fn t030_docs() {
    let (_tmp, dir) = setup_workspace();
    // T030
    ok(&dir, &["docs", "show", "core/DECAPOD.md"]);
    // T031
    ok(&dir, &["docs", "show", "specs/INTENT.md"]);
    // T032
    ok(&dir, &["docs", "show", "plugins/TODO.md"]);
    // T033
    ok(&dir, &["docs", "ingest"]);
    // T034
    ok(&dir, &["docs", "override"]);
    // T035
    ok(&dir, &["docs", "--help"]);
    // T036: alias
    ok(&dir, &["d", "show", "core/DECAPOD.md"]);
    // T037: nonexistent doc → error
    fail(&dir, &["docs", "show", "nonexistent.md"]);
}

// ---------------------------------------------------------------------------
// 5. Todo
// ---------------------------------------------------------------------------

#[test]
fn t040_todo_lifecycle() {
    let (_tmp, dir) = setup_workspace();

    // T040: add basic
    ok(
        &dir,
        &["todo", "add", "Test task 1", "--description", "A test task"],
    );
    // T041: add minimal
    ok(&dir, &["todo", "add", "Test task 2"]);
    // T042: list
    ok(&dir, &["todo", "list"]);
    // T043: json list
    ok(&dir, &["todo", "--format", "json", "list"]);
    // T044: text list
    ok(&dir, &["todo", "--format", "text", "list"]);

    // Extract task ID for CRUD
    let id = extract_task_id(&dir);

    // T045: get
    ok(&dir, &["todo", "get", "--id", &id]);
    // T046: claim
    ok(
        &dir,
        &["todo", "claim", "--id", &id, "--agent", "test-agent"],
    );
    // T047: comment
    ok(
        &dir,
        &["todo", "comment", "--id", &id, "--comment", "Test comment"],
    );
    // T047A: add owner
    ok(
        &dir,
        &[
            "todo",
            "add-owner",
            "--id",
            &id,
            "--agent",
            "test-reviewer",
            "--claim-type",
            "secondary",
        ],
    );
    // T047B: list owners
    ok(&dir, &["todo", "list-owners", "--id", &id]);
    // T047C: remove owner
    ok(
        &dir,
        &[
            "todo",
            "remove-owner",
            "--id",
            &id,
            "--agent",
            "test-reviewer",
        ],
    );
    // T048: edit
    ok(
        &dir,
        &["todo", "edit", "--id", &id, "--title", "Updated title"],
    );
    // T049: release
    ok(&dir, &["todo", "release", "--id", &id]);
    // T050: done
    ok(&dir, &["todo", "done", "--id", &id]);
    // T052: categories
    ok(&dir, &["todo", "categories"]);
    // T055: alias
    ok(&dir, &["t", "list"]);
    // T056: help
    ok(&dir, &["todo", "--help"]);
}

#[test]
fn t057_todo_add_all_opts() {
    let (_tmp, dir) = setup_workspace();
    ok(
        &dir,
        &[
            "todo",
            "add",
            "Full task",
            "--description",
            "desc",
            "--priority",
            "high",
            "--tags",
            "bug,ux",
            "--owner",
            "dev1",
        ],
    );
}

#[test]
fn t058_todo_get_nonexistent() {
    let (_tmp, dir) = setup_workspace();
    // Getting a nonexistent task — the CLI currently returns exit 0
    let (_, _) = run(&dir, &["todo", "get", "--id", "NONEXISTENT_ID_12345"]);
}

#[test]
fn t059_todo_add_relationships() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["todo", "add", "Parent task"]);
    let parent_id = extract_task_id(&dir);

    // T059: --ref
    ok(&dir, &["todo", "add", "Ref task", "--ref", "issue#42"]);
    // T05A: --parent
    ok(&dir, &["todo", "add", "Child task", "--parent", &parent_id]);
    // T05B: --depends-on
    ok(
        &dir,
        &["todo", "add", "Dep task", "--depends-on", &parent_id],
    );
    // T05C: --blocks
    ok(&dir, &["todo", "add", "Block task", "--blocks", &parent_id]);
}

#[test]
fn t051_todo_done_validated() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["todo", "add", "Validated task"]);
    let id = extract_task_id(&dir);
    ok(&dir, &["todo", "done", "--id", &id, "--validated"]);
}

#[test]
#[ignore] // BUG-1: rebuild doesn't handle task.edit/task.claim/task.release events
fn t053_todo_rebuild() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["todo", "add", "Rebuild test"]);
    let id = extract_task_id(&dir);
    // Perform operations that emit events which rebuild must handle
    ok(&dir, &["todo", "edit", "--id", &id, "--title", "Edited"]);
    ok(&dir, &["todo", "claim", "--id", &id, "--agent", "a"]);
    ok(&dir, &["todo", "release", "--id", &id]);
    ok(&dir, &["todo", "rebuild"]);
}

// ---------------------------------------------------------------------------
// 6. Validate
// ---------------------------------------------------------------------------

#[test]
fn t060_validate() {
    let (_tmp, dir) = setup_workspace();
    // T060: default validate
    ok(&dir, &["validate"]);
    // T061: --store user
    ok(&dir, &["validate", "--store", "user"]);
    // T062: --store repo
    ok(&dir, &["validate", "--store", "repo"]);
    // T063: --format json
    ok(&dir, &["validate", "--format", "json"]);
    // T064: --format text
    ok(&dir, &["validate", "--format", "text"]);
    // T065: alias v
    ok(&dir, &["v"]);
}

#[test]
fn t066_validate_errors() {
    let (_tmp, dir) = setup_workspace();
    // T066: invalid store falls through to repo (not an error)
    ok(&dir, &["validate", "--store", "invalid"]);
    // T067: invalid format falls through to text (not an error)
    ok(&dir, &["validate", "--format", "invalid"]);
}

// ---------------------------------------------------------------------------
// 7. Govern > Policy
// ---------------------------------------------------------------------------

#[test]
fn t070_policy() {
    let (_tmp, dir) = setup_workspace();
    // T070
    ok(
        &dir,
        &[
            "govern",
            "policy",
            "eval",
            "--command",
            "rm -rf /",
            "--path",
            "/tmp/test",
        ],
    );
    // T071
    ok(
        &dir,
        &["govern", "policy", "eval", "--command", "ls", "--path", "."],
    );
    // T072
    ok(&dir, &["govern", "policy", "riskmap", "init"]);
    // T073
    ok(&dir, &["govern", "policy", "riskmap", "verify"]);
    // T074
    ok(&dir, &["govern", "policy", "--help"]);
    // T075
    ok(
        &dir,
        &["govern", "policy", "approve", "--id", "TEST_APPROVAL_123"],
    );
}

// ---------------------------------------------------------------------------
// 8. Govern > Health
// ---------------------------------------------------------------------------

#[test]
fn t080_health() {
    let (_tmp, dir) = setup_workspace();
    // T080
    ok(
        &dir,
        &[
            "govern",
            "health",
            "claim",
            "--id",
            "test-claim-1",
            "--subject",
            "System is healthy",
            "--kind",
            "assertion",
        ],
    );
    // T081
    ok(
        &dir,
        &[
            "govern",
            "health",
            "proof",
            "--claim-id",
            "test-claim-1",
            "--surface",
            "manual check",
            "--result",
            "pass",
        ],
    );
    // T082
    ok(&dir, &["govern", "health", "get", "--id", "test-claim-1"]);
    // T083
    ok(&dir, &["govern", "health", "summary"]);
    // T084
    ok(&dir, &["govern", "health", "autonomy"]);
    // T085
    ok(&dir, &["govern", "health", "--help"]);
    // T086: claim with provenance
    ok(
        &dir,
        &[
            "govern",
            "health",
            "claim",
            "--id",
            "test-claim-2",
            "--subject",
            "Has tests",
            "--kind",
            "proof",
            "--provenance",
            "test suite",
        ],
    );
}

// ---------------------------------------------------------------------------
// 9. Govern > Proof
// ---------------------------------------------------------------------------

#[test]
fn t090_proof() {
    let (_tmp, dir) = setup_workspace();
    // T090
    ok(&dir, &["govern", "proof", "run"]);
    // T091: proof test is a stub — expect failure
    fail(&dir, &["govern", "proof", "test", "--name", "schema-check"]);
    // T092
    ok(&dir, &["govern", "proof", "list"]);
    // T093
    ok(&dir, &["govern", "proof", "--help"]);
}

// ---------------------------------------------------------------------------
// 10. Govern > Watcher
// ---------------------------------------------------------------------------

#[test]
fn t100_watcher() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["govern", "watcher", "run"]);
    ok(&dir, &["govern", "watcher", "--help"]);
}

// ---------------------------------------------------------------------------
// 11. Govern > Feedback
// ---------------------------------------------------------------------------

#[test]
fn t110_feedback() {
    let (_tmp, dir) = setup_workspace();
    // T110
    ok(
        &dir,
        &[
            "govern",
            "feedback",
            "add",
            "--source",
            "test-agent",
            "--text",
            "Test feedback",
        ],
    );
    // T111
    ok(
        &dir,
        &[
            "govern",
            "feedback",
            "add",
            "--source",
            "test-agent",
            "--text",
            "Feedback with link",
            "--links",
            "specs/INTENT.md",
        ],
    );
    // T112
    ok(&dir, &["govern", "feedback", "propose"]);
    // T113
    ok(&dir, &["govern", "feedback", "--help"]);
}

// ---------------------------------------------------------------------------
// 12. Data > Archive
// ---------------------------------------------------------------------------

#[test]
fn t120_archive() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["data", "archive", "list"]);
    ok(&dir, &["data", "archive", "verify"]);
    ok(&dir, &["data", "archive", "--help"]);
}

// ---------------------------------------------------------------------------
// 13. Data > Knowledge
// ---------------------------------------------------------------------------

#[test]
fn t130_knowledge() {
    let (_tmp, dir) = setup_workspace();
    // T130: provenance needs scheme prefix
    ok(
        &dir,
        &[
            "data",
            "knowledge",
            "add",
            "--id",
            "kb-001",
            "--title",
            "Test entry",
            "--text",
            "Some knowledge text",
            "--provenance",
            "cmd:manual-entry",
        ],
    );
    // T131: with claim-id
    ok(
        &dir,
        &[
            "data",
            "knowledge",
            "add",
            "--id",
            "kb-002",
            "--title",
            "Linked entry",
            "--text",
            "Knowledge with claim",
            "--provenance",
            "cmd:manual-entry",
            "--claim-id",
            "test-claim-1",
        ],
    );
    // T132
    ok(&dir, &["data", "knowledge", "search", "--query", "test"]);
    // T133
    ok(&dir, &["data", "knowledge", "--help"]);
}

// ---------------------------------------------------------------------------
// 14. Data > Context
// ---------------------------------------------------------------------------

#[test]
fn t140_context() {
    let (_tmp, dir) = setup_workspace();
    let test_file = dir.join("test_file.txt");
    std::fs::write(&test_file, "some content\n").unwrap();
    let test_file_str = test_file.to_str().unwrap();

    // T140
    ok(
        &dir,
        &[
            "data",
            "context",
            "audit",
            "--profile",
            "main",
            "--files",
            test_file_str,
        ],
    );
    // T141
    ok(
        &dir,
        &[
            "data",
            "context",
            "pack",
            "--path",
            test_file_str,
            "--summary",
            "Test context pack",
        ],
    );
    // T142: restore with fake archive → expect error
    fail(
        &dir,
        &[
            "data",
            "context",
            "restore",
            "--id",
            "ctx-001",
            "--profile",
            "main",
            "--current-files",
            test_file_str,
        ],
    );
    // T143
    ok(&dir, &["data", "context", "--help"]);
}

// ---------------------------------------------------------------------------
// 15. Data > Schema
// ---------------------------------------------------------------------------

#[test]
fn t150_schema() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["data", "schema"]);
    ok(&dir, &["data", "schema", "--format", "json"]);
    ok(&dir, &["data", "schema", "--format", "md"]);
    ok(&dir, &["data", "schema", "--deterministic"]);
    ok(&dir, &["data", "schema", "--subsystem", "todo"]);
    ok(&dir, &["data", "schema", "--subsystem", "health"]);
    ok(&dir, &["data", "schema", "--subsystem", "policy"]);
    // Invalid subsystem returns gracefully (exit 0 with error in JSON)
    ok(&dir, &["data", "schema", "--subsystem", "nonexistent"]);
}

// ---------------------------------------------------------------------------
// 16. Data > Repo
// ---------------------------------------------------------------------------

#[test]
fn t160_repo() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["data", "repo", "map"]);
    ok(&dir, &["data", "repo", "graph"]);
    ok(&dir, &["data", "repo", "--help"]);
}

// ---------------------------------------------------------------------------
// 17. Data > Broker
// ---------------------------------------------------------------------------

#[test]
fn t170_broker() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["data", "broker", "audit"]);
    ok(&dir, &["data", "broker", "--help"]);
}

// ---------------------------------------------------------------------------
// 18. Data > Aptitude
// ---------------------------------------------------------------------------

#[test]
fn t180_aptitude() {
    let (_tmp, dir) = setup_workspace();
    // T180
    ok(
        &dir,
        &[
            "data",
            "aptitude",
            "add",
            "--category",
            "style",
            "--key",
            "theme",
            "--value",
            "dark mode",
        ],
    );
    // T181
    ok(
        &dir,
        &[
            "data",
            "aptitude",
            "add",
            "--category",
            "workflow",
            "--key",
            "editor",
            "--value",
            "neovim",
            "--context",
            "coding sessions",
            "--source",
            "user_request",
        ],
    );
    // T182
    ok(&dir, &["data", "aptitude", "list"]);
    // T183
    ok(
        &dir,
        &[
            "data",
            "aptitude",
            "get",
            "--category",
            "style",
            "--key",
            "theme",
        ],
    );
    // T184
    ok(
        &dir,
        &[
            "data",
            "aptitude",
            "observe",
            "--content",
            "User prefers concise responses",
        ],
    );
    // T185
    ok(
        &dir,
        &[
            "data",
            "aptitude",
            "observe",
            "--content",
            "Always uses dark mode",
            "--category",
            "style",
        ],
    );
    // T186
    ok(&dir, &["data", "aptitude", "prompt"]);
    // T187
    ok(
        &dir,
        &["data", "aptitude", "prompt", "--context", "code review"],
    );
    // T188
    ok(&dir, &["data", "aptitude", "prompt", "--format", "json"]);
    // T189
    ok(&dir, &["data", "aptitude", "--help"]);
}

// ---------------------------------------------------------------------------
// 19. Auto > Cron
// ---------------------------------------------------------------------------

#[test]
fn t190_cron() {
    let (_tmp, dir) = setup_workspace();
    // T190
    ok(
        &dir,
        &[
            "auto",
            "cron",
            "add",
            "--name",
            "test-cron",
            "--schedule",
            "0 * * * *",
            "--command",
            "echo hello",
        ],
    );
    // T191
    ok(
        &dir,
        &[
            "auto",
            "cron",
            "add",
            "--name",
            "full-cron",
            "--schedule",
            "*/5 * * * *",
            "--command",
            "echo world",
            "--description",
            "A test cron",
            "--tags",
            "test,dev",
        ],
    );
    // T192
    ok(&dir, &["auto", "cron", "list"]);

    // Extract cron ID from list output
    let (_, out) = run(&dir, &["auto", "cron", "list"]);
    let cron_id = extract_ulid_from(&out);

    // T193
    ok(&dir, &["auto", "cron", "get", "--id", &cron_id]);
    // T194
    ok(
        &dir,
        &[
            "auto",
            "cron",
            "update",
            "--id",
            &cron_id,
            "--schedule",
            "*/10 * * * *",
        ],
    );
    // T195
    ok(&dir, &["auto", "cron", "list", "--status", "active"]);
    // T196
    ok(&dir, &["auto", "cron", "list", "--name-search", "test"]);
    // T197
    ok(&dir, &["auto", "cron", "delete", "--id", &cron_id]);
    // T198
    ok(&dir, &["auto", "cron", "--help"]);
}

// ---------------------------------------------------------------------------
// 20. Auto > Reflex
// ---------------------------------------------------------------------------

#[test]
fn t200_reflex() {
    let (_tmp, dir) = setup_workspace();
    // T200
    ok(
        &dir,
        &[
            "auto",
            "reflex",
            "add",
            "--name",
            "test-reflex",
            "--trigger-type",
            "event",
            "--action-type",
            "command",
            "--action-config",
            "echo done",
        ],
    );
    // T201
    ok(
        &dir,
        &[
            "auto",
            "reflex",
            "add",
            "--name",
            "full-reflex",
            "--trigger-type",
            "event",
            "--action-type",
            "command",
            "--action-config",
            "echo world",
            "--description",
            "A test reflex",
            "--tags",
            "test",
        ],
    );
    // T202
    ok(&dir, &["auto", "reflex", "list"]);

    let (_, out) = run(&dir, &["auto", "reflex", "list"]);
    let reflex_id = extract_ulid_from(&out);

    // T203
    ok(&dir, &["auto", "reflex", "get", "--id", &reflex_id]);
    // T204
    ok(
        &dir,
        &[
            "auto",
            "reflex",
            "update",
            "--id",
            &reflex_id,
            "--name",
            "updated-reflex",
        ],
    );
    // T205
    ok(&dir, &["auto", "reflex", "list", "--status", "active"]);
    // T206
    ok(&dir, &["auto", "reflex", "delete", "--id", &reflex_id]);
    // T207
    ok(&dir, &["auto", "reflex", "--help"]);
}

// ---------------------------------------------------------------------------
// 21. QA > Verify
// ---------------------------------------------------------------------------

#[test]
fn t208_container_surface() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["auto", "container", "--help"]);
    ok(&dir, &["auto", "container", "run", "--help"]);
    ok(&dir, &["data", "schema", "--subsystem", "container"]);
}

#[test]
fn t210_verify() {
    let (_tmp, dir) = setup_workspace();
    ok(
        &dir,
        &[
            "todo",
            "add",
            "Verify test task",
            "--description",
            "For QA verify",
        ],
    );
    let id = extract_task_id(&dir);

    // T210
    ok(&dir, &["qa", "verify", "todo", &id]);
    // T211
    ok(&dir, &["qa", "verify", "--stale"]);
    // T212
    ok(&dir, &["qa", "verify", "--json"]);
    // T213
    ok(&dir, &["qa", "verify", "--help"]);
}

// ---------------------------------------------------------------------------
// 22. QA > Check (env-dependent — skip crate-description in temp dir)
// ---------------------------------------------------------------------------

#[test]
fn t220_check() {
    let (_tmp, dir) = setup_workspace();
    // T220: no flags
    ok(&dir, &["qa", "check"]);
    // T223
    ok(&dir, &["qa", "check", "--help"]);
}

// ---------------------------------------------------------------------------
// 23-24. Group Help & Aliases
// ---------------------------------------------------------------------------

#[test]
fn t240_group_help() {
    let (_tmp, dir) = setup_workspace();
    ok(&dir, &["govern", "--help"]);
    ok(&dir, &["g", "--help"]);
    ok(&dir, &["data", "--help"]);
    ok(&dir, &["auto", "--help"]);
    ok(&dir, &["a", "--help"]);
    ok(&dir, &["qa", "--help"]);
    ok(&dir, &["q", "--help"]);
}

// ---------------------------------------------------------------------------
// 25. Edge Cases & Error Paths
// ---------------------------------------------------------------------------

#[test]
fn t280_invalid_subcommand() {
    let out = Command::new(env!("CARGO_BIN_EXE_decapod"))
        .arg("notacommand")
        .output()
        .unwrap();
    assert!(!out.status.success());
}

#[test]
fn t281_todo_add_empty_string() {
    let (_tmp, dir) = setup_workspace();
    // Currently succeeds — noted as EDGE-1 in audit
    ok(&dir, &["todo", "add", ""]);
}

#[test]
fn t282_todo_get_missing_id() {
    let (_tmp, dir) = setup_workspace();
    fail(&dir, &["todo", "get"]);
}

#[test]
fn t283_docs_show_empty_path() {
    let (_tmp, dir) = setup_workspace();
    fail(&dir, &["docs", "show", ""]);
}

#[test]
fn t284_knowledge_add_missing_fields() {
    let (_tmp, dir) = setup_workspace();
    fail(&dir, &["data", "knowledge", "add", "--id", "kb-only"]);
}

#[test]
fn t285_cron_add_missing_schedule() {
    let (_tmp, dir) = setup_workspace();
    fail(
        &dir,
        &["auto", "cron", "add", "--name", "bad", "--command", "echo"],
    );
}

#[test]
fn t286_reflex_add_missing_trigger() {
    let (_tmp, dir) = setup_workspace();
    fail(
        &dir,
        &[
            "auto",
            "reflex",
            "add",
            "--name",
            "bad",
            "--action-type",
            "command",
            "--action-config",
            "echo",
        ],
    );
}

#[test]
fn t287_aptitude_get_missing_key() {
    let (_tmp, dir) = setup_workspace();
    fail(&dir, &["data", "aptitude", "get", "--category", "style"]);
}

#[test]
fn t288_health_claim_missing_fields() {
    let (_tmp, dir) = setup_workspace();
    fail(&dir, &["govern", "health", "claim", "--id", "only-id"]);
}

// ---------------------------------------------------------------------------
// 14. Decide
// ---------------------------------------------------------------------------

#[test]
fn t290_decide_trees() {
    let (_tmp, dir) = setup_workspace();
    let (success, output) = run(&dir, &["decide", "trees"]);
    assert!(success, "decide trees failed:\n{}", output);
    assert!(output.contains("web-app"));
    assert!(output.contains("microservice"));
    assert!(output.contains("cli-tool"));
    assert!(output.contains("library"));
}

#[test]
fn t291_decide_suggest() {
    let (_tmp, dir) = setup_workspace();
    let (success, output) = run(
        &dir,
        &["decide", "suggest", "--prompt", "build a web application"],
    );
    assert!(success, "decide suggest failed:\n{}", output);
    assert!(output.contains("web-app"));
}

#[test]
fn t292_decide_session_lifecycle() {
    let (_tmp, dir) = setup_workspace();

    // Start a session
    let (success, output) = run(
        &dir,
        &[
            "decide",
            "start",
            "--tree",
            "cli-tool",
            "--title",
            "Gatling CLI Test",
        ],
    );
    assert!(success, "decide start failed:\n{}", output);
    assert!(output.contains("DS_"));

    // Extract session ID
    let re = regex::Regex::new(r"DS_[0-9A-Z]{26}").unwrap();
    let session_id = re
        .find(&output)
        .map(|m| m.as_str().to_string())
        .expect("no session ID found");

    // Next question
    let (success, output) = run(&dir, &["decide", "next", "--session", &session_id]);
    assert!(success, "decide next failed:\n{}", output);
    assert!(output.contains("language"));

    // Record a decision
    let (success, output) = run(
        &dir,
        &[
            "decide",
            "record",
            "--session",
            &session_id,
            "--question",
            "language",
            "--value",
            "rust",
        ],
    );
    assert!(success, "decide record failed:\n{}", output);
    assert!(output.contains("DD_"));
    assert!(output.contains("Rust"));

    // List decisions
    let (success, output) = run(&dir, &["decide", "list", "--session", &session_id]);
    assert!(success, "decide list failed:\n{}", output);
    assert!(output.contains("rust"));

    // Session list
    let (success, output) = run(&dir, &["decide", "session", "list"]);
    assert!(success, "decide session list failed:\n{}", output);
    assert!(output.contains(&session_id));

    // Session get
    let (success, output) = run(&dir, &["decide", "session", "get", "--id", &session_id]);
    assert!(success, "decide session get failed:\n{}", output);
    assert!(output.contains("Gatling CLI Test"));

    // Complete
    let (success, output) = run(&dir, &["decide", "complete", "--session", &session_id]);
    assert!(success, "decide complete failed:\n{}", output);
    assert!(output.contains("completed"));
}

#[test]
fn t293_decide_invalid_tree() {
    let (_tmp, dir) = setup_workspace();
    fail(
        &dir,
        &["decide", "start", "--tree", "nonexistent", "--title", "Bad"],
    );
}

#[test]
fn t294_decide_invalid_option() {
    let (_tmp, dir) = setup_workspace();

    // Start session
    let (success, output) = run(
        &dir,
        &[
            "decide",
            "start",
            "--tree",
            "cli-tool",
            "--title",
            "Bad Option Test",
        ],
    );
    assert!(success);
    let re = regex::Regex::new(r"DS_[0-9A-Z]{26}").unwrap();
    let session_id = re.find(&output).unwrap().as_str();

    // Invalid option value
    fail(
        &dir,
        &[
            "decide",
            "record",
            "--session",
            session_id,
            "--question",
            "language",
            "--value",
            "cobol",
        ],
    );
}

#[test]
fn t295_decide_schema() {
    let (_tmp, dir) = setup_workspace();
    let (success, output) = run(&dir, &["decide", "schema"]);
    assert!(success, "decide schema failed:\n{}", output);
    assert!(output.contains("decide"));
    assert!(output.contains("decisions.db"));
}

#[test]
fn t296_decide_init() {
    let (_tmp, dir) = setup_workspace();
    let (success, output) = run(&dir, &["decide", "init"]);
    assert!(success, "decide init failed:\n{}", output);
    assert!(output.contains("initialized"));
}

// ---------------------------------------------------------------------------
// Helper: extract a ULID from text output (26-char uppercase alphanumeric)
// ---------------------------------------------------------------------------

fn extract_ulid_from(text: &str) -> String {
    let re = regex::Regex::new(r"[0-9A-Z]{26}").unwrap();
    re.find(text)
        .map(|m| m.as_str().to_string())
        .unwrap_or_else(|| panic!("no ULID found in output:\n{}", text))
}