scud-cli 1.67.0

Fast, simple task master for AI-driven development
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
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
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
use anyhow::Result;
use colored::Colorize;
use std::fs;
use std::path::PathBuf;

use crate::config::Config;
use crate::storage::Storage;

/// Embedded SCUD command definitions
/// Each command has a filename and content
/// Commands are stored in .claude/commands/scud/<filename>.md
const EMBEDDED_SCUD_COMMANDS: &[(&str, &str)] = &[
    ("stats", include_str!("../../assets/commands/scud/stats.md")),
    ("next", include_str!("../../assets/commands/scud/next.md")),
    ("show", include_str!("../../assets/commands/scud/show.md")),
    ("list", include_str!("../../assets/commands/scud/list.md")),
    ("waves", include_str!("../../assets/commands/scud/waves.md")),
    (
        "status",
        include_str!("../../assets/commands/scud/status.md"),
    ),
];

/// Embedded SCUD skill definitions
/// Skills are stored in .claude/skills/<skill-name>/SKILL.md
const EMBEDDED_SCUD_SKILLS: &[(&str, &str)] = &[
    (
        "scud-tasks",
        include_str!("../../assets/skills/scud-tasks/SKILL.md"),
    ),
    ("scud", include_str!("../../assets/skills/scud/SKILL.md")),
];

/// Embedded SCUD spawn agent definitions
/// Agent definitions for model routing (stored in .scud/agents/<name>.toml)
const EMBEDDED_SPAWN_AGENTS: &[(&str, &str)] = &[
    (
        "builder",
        include_str!("../assets/spawn-agents/builder.toml"),
    ),
    (
        "reviewer",
        include_str!("../assets/spawn-agents/reviewer.toml"),
    ),
    (
        "planner",
        include_str!("../assets/spawn-agents/planner.toml"),
    ),
    (
        "researcher",
        include_str!("../assets/spawn-agents/researcher.toml"),
    ),
    (
        "analyzer",
        include_str!("../assets/spawn-agents/analyzer.toml"),
    ),
    (
        "fast-builder",
        include_str!("../assets/spawn-agents/fast-builder.toml"),
    ),
    (
        "outside-generalist",
        include_str!("../assets/spawn-agents/outside-generalist.toml"),
    ),
    (
        "repairer",
        include_str!("../assets/spawn-agents/repairer.toml"),
    ),
    ("tester", include_str!("../assets/spawn-agents/tester.toml")),
];

/// SCUD agent definitions (legacy - keeping for compatibility)
/// Each agent has a filename, aliases for CLI, and description
/// Agents are stored in .claude/commands/scud/<filename>.md
const SCUD_AGENTS: &[(&str, &[&str], &str)] = &[
    (
        "pm",
        &["pm", "scud-pm"],
        "Product Manager - PRD creation and requirements",
    ),
    (
        "sm",
        &["sm", "scud-sm"],
        "Scrum Master - Task breakdown and planning",
    ),
    (
        "architect",
        &["architect", "scud-architect"],
        "Architect - Technical design",
    ),
    (
        "dev",
        &["dev", "scud-dev"],
        "Developer - Task implementation",
    ),
    (
        "retrospective",
        &["retrospective", "scud-retrospective"],
        "Retrospective - Post-phase analysis",
    ),
    ("status", &["status"], "Status - Workflow status reporting"),
];

/// SCUD skill definitions
/// Each skill is a directory containing SKILL.md and supporting files
/// Skills are stored in .claude/skills/<skill-name>/
const SCUD_SKILLS: &[(&str, &[&str], &str)] = &[
    (
        "scud-tasks",
        &["scud-tasks", "tasks"],
        "Task management - view, update, claim, and track tasks",
    ),
    (
        "scud",
        &["scud", "guide"],
        "SCUD CLI usage guide - list, waves, tags, next, log, etc",
    ),
];

/// OpenCode command definitions
/// These are the same commands but for OpenCode
/// Commands are stored in .opencode/command/
const OPENCODE_COMMANDS: &[&str] = &[
    "task-list",
    "task-next",
    "task-show",
    "task-status",
    "task-claim",
    "task-release",
    "task-waves",
    "task-stats",
    "task-whois",
    "task-tags",
    "task-doctor",
];

/// OpenCode hook definitions
const OPENCODE_HOOKS: &[&str] = &["session-start"];

/// OpenCode tool definitions
const OPENCODE_TOOLS: &[&str] = &["find_skills", "use_skill"];

pub fn show(project_root: Option<PathBuf>) -> Result<()> {
    let storage = Storage::new(project_root);

    if !storage.is_initialized() {
        println!("{}", "✗ SCUD is not initialized".red());
        println!("Run: scud init");
        return Ok(());
    }

    let config = storage.load_config()?;

    println!("{}", "Current Configuration:".blue().bold());
    println!();
    println!("  {}: {}", "Provider".yellow(), config.llm.provider);
    println!("  {}: {}", "Model".yellow(), config.llm.model);
    println!("  {}: {}", "Max Tokens".yellow(), config.llm.max_tokens);
    println!();
    println!("{}", "Environment Variable:".blue().bold());
    println!("  {}: {}", "Required".yellow(), config.api_key_env_var());

    // Check if API key is set
    match std::env::var(config.api_key_env_var()) {
        Ok(key) => {
            let masked = format!(
                "{}...{}",
                &key[..10.min(key.len())],
                &key[key.len().saturating_sub(4)..]
            );
            println!(
                "  {}: {} {}",
                "Status".yellow(),
                "Set".green(),
                masked.dimmed()
            );
        }
        Err(_) => {
            println!(
                "  {}: {} (run: export {}=your-key)",
                "Status".yellow(),
                "Not Set".red(),
                config.api_key_env_var()
            );
        }
    }

    println!();
    println!("{}", "Config File:".blue().bold());
    println!("  {}", storage.config_file().display().to_string().dimmed());

    Ok(())
}

pub fn set_provider(
    project_root: Option<PathBuf>,
    provider: &str,
    model: Option<String>,
) -> Result<()> {
    let storage = Storage::new(project_root);

    if !storage.is_initialized() {
        anyhow::bail!("SCUD is not initialized. Run: scud init");
    }

    // Validate provider
    let provider = provider.to_lowercase();
    if !matches!(
        provider.as_str(),
        "xai" | "anthropic" | "openai" | "openrouter" | "claude-cli"
    ) {
        anyhow::bail!(
            "Invalid provider: {}. Valid options: xai, anthropic, openai, openrouter, claude-cli",
            provider
        );
    }

    let mut config = storage.load_config()?;
    config.llm.provider = provider.clone();

    // Set model - use provided or default for provider
    config.llm.model =
        model.unwrap_or_else(|| Config::default_model_for_provider(&provider).to_string());

    // Save config
    config.save(&storage.config_file())?;

    println!("{}", "✅ Configuration updated!".green().bold());
    println!();
    println!("  {}: {}", "Provider".yellow(), config.llm.provider);
    println!("  {}: {}", "Model".yellow(), config.llm.model);
    println!();

    if config.requires_api_key() {
        println!("{}", "Remember to set your API key:".blue());
        println!(
            "  export {}=your-api-key",
            config.api_key_env_var().yellow()
        );
    } else {
        println!("{}", "Using Claude CLI (no API key required)".green());
        println!(
            "{}",
            "Make sure 'claude' command is available in your PATH".blue()
        );
    }

    Ok(())
}

/// Normalize agent name - accepts aliases like scud-pm, pm, architect, etc.
fn normalize_agent_name(name: &str) -> Option<&'static str> {
    let name_lower = name.to_lowercase();
    for (filename, aliases, _) in SCUD_AGENTS {
        for alias in *aliases {
            if name_lower == *alias {
                return Some(filename);
            }
        }
    }
    None
}

/// Normalize skill name - accepts aliases like scud-tasks, tasks, etc.
fn normalize_skill_name(name: &str) -> Option<&'static str> {
    let name_lower = name.to_lowercase();
    for (dirname, aliases, _) in SCUD_SKILLS {
        for alias in *aliases {
            if name_lower == *alias {
                return Some(dirname);
            }
        }
    }
    None
}

/// Get the scud commands directory path (.claude/commands/scud/)
fn get_scud_commands_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".claude").join("commands").join("scud")
}

/// Get the skills directory path (.claude/skills/)
fn get_skills_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".claude").join("skills")
}

/// Get the OpenCode command directory path (.opencode/command/)
fn get_opencode_command_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".opencode").join("command")
}

/// Get the OpenCode hook directory path (.opencode/hook/)
fn get_opencode_hook_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".opencode").join("hook")
}

/// Get the OpenCode tool directory path (.opencode/tool/)
fn get_opencode_tool_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".opencode").join("tool")
}

/// Get the OpenCode skills directory path (.opencode/skills/)
fn get_opencode_skills_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".opencode").join("skills")
}

// Package directory functions removed - now using embedded files

/// List installed SCUD agents
pub fn agents_list(project_root: Option<PathBuf>) -> Result<()> {
    let scud_dir = get_scud_commands_dir(project_root.clone());
    let skills_dir = get_skills_dir(project_root.clone());

    // Agents section
    println!("{}", "SCUD Workflow Agents".blue().bold());
    println!("{}", "Location: .claude/commands/scud/".dimmed());
    println!();

    let mut agents_installed = 0;
    let mut agents_not_installed = 0;

    for (filename, aliases, description) in SCUD_AGENTS {
        let agent_file = scud_dir.join(format!("{}.md", filename));
        let installed = agent_file.exists();
        let alias_str = aliases.join(", ");

        if installed {
            agents_installed += 1;
            println!(
                "  {} {} ({}) - {}",
                "".green(),
                filename.green(),
                alias_str.dimmed(),
                description
            );
        } else {
            agents_not_installed += 1;
            println!(
                "  {} {} ({}) - {}",
                "".red(),
                filename.dimmed(),
                alias_str.dimmed(),
                description
            );
        }
    }

    println!();
    println!(
        "{} installed, {} not installed",
        agents_installed.to_string().green(),
        agents_not_installed.to_string().yellow()
    );

    // Skills section
    println!();
    println!("{}", "SCUD Skills".blue().bold());
    println!("{}", "Location: .claude/skills/".dimmed());
    println!();

    let mut skills_installed = 0;
    let mut skills_not_installed = 0;

    for (dirname, aliases, description) in SCUD_SKILLS {
        let skill_dir = skills_dir.join(dirname);
        let skill_file = skill_dir.join("SKILL.md");
        let installed = skill_file.exists();
        let alias_str = aliases.join(", ");

        if installed {
            skills_installed += 1;
            println!(
                "  {} {} ({}) - {}",
                "".green(),
                dirname.green(),
                alias_str.dimmed(),
                description
            );
        } else {
            skills_not_installed += 1;
            println!(
                "  {} {} ({}) - {}",
                "".red(),
                dirname.dimmed(),
                alias_str.dimmed(),
                description
            );
        }
    }

    println!();
    println!(
        "{} installed, {} not installed",
        skills_installed.to_string().green(),
        skills_not_installed.to_string().yellow()
    );

    // OpenCode section
    println!();
    println!("{}", "OpenCode Integration".blue().bold());
    println!("{}", "Location: .opencode/".dimmed());
    println!();

    let opencode_cmd_dir = get_opencode_command_dir(project_root.clone());
    let opencode_hook_dir = get_opencode_hook_dir(project_root.clone());
    let opencode_tool_dir = get_opencode_tool_dir(project_root);

    let mut opencode_installed = 0;

    // Check commands
    for cmd in OPENCODE_COMMANDS {
        let cmd_file = opencode_cmd_dir.join(format!("{}.md", cmd));
        if cmd_file.exists() {
            opencode_installed += 1;
        }
    }

    // Check hooks
    for hook in OPENCODE_HOOKS {
        let hook_file = opencode_hook_dir.join(format!("{}.md", hook));
        if hook_file.exists() {
            opencode_installed += 1;
        }
    }

    // Check tools
    for tool in OPENCODE_TOOLS {
        let tool_file = opencode_tool_dir.join(format!("{}.json", tool));
        if tool_file.exists() {
            opencode_installed += 1;
        }
    }

    if opencode_installed > 0 {
        println!(
            "  {} {} commands, {} hooks, {} tools installed",
            "".green(),
            OPENCODE_COMMANDS
                .iter()
                .filter(|c| opencode_cmd_dir.join(format!("{}.md", c)).exists())
                .count(),
            OPENCODE_HOOKS
                .iter()
                .filter(|h| opencode_hook_dir.join(format!("{}.md", h)).exists())
                .count(),
            OPENCODE_TOOLS
                .iter()
                .filter(|t| opencode_tool_dir.join(format!("{}.json", t)).exists())
                .count(),
        );
    } else {
        println!("  {} Not installed", "".red());
    }

    println!();
    println!("{}", "Usage:".blue().bold());
    println!("  scud config agents add <name>     Add an agent or skill");
    println!("  scud config agents add --all      Add all agents, skills, and OpenCode support");
    println!("  scud config agents remove <name>  Remove an agent or skill");
    println!("  scud config agents remove --all   Remove all agents, skills, and OpenCode support");

    Ok(())
}

/// Add SCUD agent(s), skill(s), and OpenCode integration
pub fn agents_add(project_root: Option<PathBuf>, name: Option<String>, all: bool) -> Result<()> {
    if !all && name.is_none() {
        anyhow::bail!("Please specify an agent/skill name or use --all to add all");
    }

    // No longer need package directories - using embedded files
    let scud_dir = get_scud_commands_dir(project_root.clone());
    let skills_dir = get_skills_dir(project_root.clone());
    let opencode_cmd_dir = get_opencode_command_dir(project_root.clone());
    let opencode_hook_dir = get_opencode_hook_dir(project_root.clone());
    let opencode_tool_dir = get_opencode_tool_dir(project_root.clone());
    let opencode_skills_dir = get_opencode_skills_dir(project_root);

    // Ensure directories exist
    fs::create_dir_all(&scud_dir)?;
    fs::create_dir_all(&skills_dir)?;

    let mut agents_added = 0;
    let mut agents_already_exist = 0;
    let mut skills_added = 0;
    let mut skills_already_exist = 0;
    let mut opencode_added = 0;
    let mut opencode_already_exist = 0;

    // Determine what to add
    let (agents_to_add, skills_to_add): (Vec<&str>, Vec<&str>) = if all {
        (
            EMBEDDED_SCUD_COMMANDS
                .iter()
                .map(|(name, _)| *name)
                .collect(),
            EMBEDDED_SCUD_SKILLS.iter().map(|(name, _)| *name).collect(),
        )
    } else {
        let name_ref = name.as_ref().unwrap();
        // Try agent first, then skill
        if EMBEDDED_SCUD_COMMANDS.iter().any(|(n, _)| *n == name_ref) {
            (vec![name_ref], vec![])
        } else if EMBEDDED_SCUD_SKILLS.iter().any(|(n, _)| *n == name_ref) {
            (vec![], vec![name_ref])
        } else {
            anyhow::bail!(
                "Unknown agent/skill: '{}'. Valid agents: {}. Valid skills: {}",
                name_ref,
                EMBEDDED_SCUD_COMMANDS
                    .iter()
                    .map(|(n, _)| *n)
                    .collect::<Vec<_>>()
                    .join(", "),
                EMBEDDED_SCUD_SKILLS
                    .iter()
                    .map(|(n, _)| *n)
                    .collect::<Vec<_>>()
                    .join(", ")
            );
        }
    };

    // Add agents (using embedded content)
    if !agents_to_add.is_empty() {
        println!("{}", "Agents:".blue().bold());
        for agent_name in &agents_to_add {
            let dest = scud_dir.join(format!("{}.md", agent_name));

            if dest.exists() {
                agents_already_exist += 1;
                println!("  {} {} (already installed)", "·".yellow(), agent_name);
                continue;
            }

            // Find embedded content
            if let Some((_, content)) = EMBEDDED_SCUD_COMMANDS
                .iter()
                .find(|(n, _)| *n == *agent_name)
            {
                fs::write(&dest, content)?;
                agents_added += 1;
                println!("  {} {}", "".green(), agent_name.green());
            } else {
                println!(
                    "  {} {} (embedded content not found)",
                    "".red(),
                    agent_name
                );
            }
        }
    }

    // Add skills (using embedded content)
    if !skills_to_add.is_empty() {
        println!("{}", "Skills:".blue().bold());
        for skill_name in &skills_to_add {
            let dest = skills_dir.join(skill_name);
            let skill_file = dest.join("SKILL.md");

            if skill_file.exists() {
                skills_already_exist += 1;
                println!("  {} {} (already installed)", "·".yellow(), skill_name);
                continue;
            }

            // Find embedded content
            if let Some((_, content)) = EMBEDDED_SCUD_SKILLS.iter().find(|(n, _)| *n == *skill_name)
            {
                fs::create_dir_all(&dest)?;
                fs::write(&skill_file, content)?;
                skills_added += 1;
                println!("  {} {}", "".green(), skill_name.green());

                // Also copy skill to OpenCode skills directory
                let opencode_dest = opencode_skills_dir.join(skill_name);
                let opencode_skill_file = opencode_dest.join("SKILL.md");
                if !opencode_skill_file.exists() {
                    fs::create_dir_all(&opencode_dest)?;
                    fs::write(&opencode_skill_file, content)?;
                }
            } else {
                println!(
                    "  {} {} (embedded content not found)",
                    "".red(),
                    skill_name
                );
            }
        }
    }

    // Add OpenCode integration (only when --all) - using embedded SCUD commands
    if all {
        println!("{}", "OpenCode:".blue().bold());

        // Ensure OpenCode directories exist
        fs::create_dir_all(&opencode_cmd_dir)?;
        fs::create_dir_all(&opencode_hook_dir)?;
        fs::create_dir_all(&opencode_tool_dir)?;

        // Add commands (using embedded SCUD commands)
        for cmd in OPENCODE_COMMANDS {
            let dest = opencode_cmd_dir.join(format!("{}.md", cmd));

            if dest.exists() {
                opencode_already_exist += 1;
                continue;
            }

            // Map OpenCode command names to embedded SCUD commands
            let embedded_name = match *cmd {
                "task-list" => "list",
                "task-next" => "next",
                "task-show" => "show",
                "task-status" => "status",
                "task-claim" => "status",   // closest match
                "task-release" => "status", // closest match
                "task-waves" => "waves",
                "task-stats" => "stats",
                "task-whois" => "status",  // closest match
                "task-tags" => "status",   // closest match
                "task-doctor" => "status", // closest match
                _ => continue,
            };

            if let Some((_, content)) = EMBEDDED_SCUD_COMMANDS
                .iter()
                .find(|(n, _)| *n == embedded_name)
            {
                fs::write(&dest, content)?;
                opencode_added += 1;
            }
        }

        // Add hooks (simplified - just create empty hook files for now)
        for hook in OPENCODE_HOOKS {
            let dest = opencode_hook_dir.join(format!("{}.md", hook));

            if dest.exists() {
                opencode_already_exist += 1;
                continue;
            }

            // Create basic hook content
            let hook_content = "# Session Start Hook\n\nThis hook runs when an OpenCode session starts.\n\n```bash\nscud warmup\n```".to_string();
            fs::write(&dest, hook_content)?;
            opencode_added += 1;
        }

        // Add tools (create basic tool definitions)
        for tool in OPENCODE_TOOLS {
            let dest = opencode_tool_dir.join(format!("{}.json", tool));

            if dest.exists() {
                opencode_already_exist += 1;
                continue;
            }

            // Create basic tool definitions
            let tool_content = match *tool {
                "find_skills" => {
                    r#"{
  "name": "find_skills",
  "description": "Find available skills in the codebase",
  "inputSchema": {
    "type": "object",
    "properties": {
      "query": {
        "type": "string",
        "description": "Search query for skills"
      }
    }
  }
}"#
                }
                "use_skill" => {
                    r#"{
  "name": "use_skill",
  "description": "Use a specific skill",
  "inputSchema": {
    "type": "object",
    "properties": {
      "skill_name": {
        "type": "string",
        "description": "Name of the skill to use"
      },
      "parameters": {
        "type": "object",
        "description": "Parameters for the skill"
      }
    }
  }
}"#
                }
                _ => continue,
            };

            fs::write(&dest, tool_content)?;
            opencode_added += 1;
        }

        if opencode_added > 0 {
            println!("  {} {} files installed", "".green(), opencode_added);
        }
        if opencode_already_exist > 0 {
            println!(
                "  {} {} files already installed",
                "·".yellow(),
                opencode_already_exist
            );
        }
    }

    println!();
    let total_added = agents_added + skills_added + opencode_added;
    let total_existing = agents_already_exist + skills_already_exist + opencode_already_exist;

    if total_added > 0 {
        println!(
            "{}",
            format!("✅ Added {} item(s)", total_added).green().bold()
        );
    }
    if total_existing > 0 {
        println!(
            "{}",
            format!("{} item(s) already installed", total_existing).yellow()
        );
    }

    Ok(())
}

/// Recursively remove a directory
fn remove_dir_recursive(path: &PathBuf) -> Result<()> {
    if path.exists() {
        fs::remove_dir_all(path)?;
    }
    Ok(())
}

/// Remove SCUD agent(s), skill(s), and OpenCode integration
pub fn agents_remove(project_root: Option<PathBuf>, name: Option<String>, all: bool) -> Result<()> {
    if !all && name.is_none() {
        anyhow::bail!("Please specify an agent/skill name or use --all to remove all");
    }

    let scud_dir = get_scud_commands_dir(project_root.clone());
    let skills_dir = get_skills_dir(project_root.clone());
    let opencode_cmd_dir = get_opencode_command_dir(project_root.clone());
    let opencode_hook_dir = get_opencode_hook_dir(project_root.clone());
    let opencode_tool_dir = get_opencode_tool_dir(project_root.clone());
    let opencode_skills_dir = get_opencode_skills_dir(project_root);

    let mut agents_removed = 0;
    let mut agents_not_found = 0;
    let mut skills_removed = 0;
    let mut skills_not_found = 0;
    let mut opencode_removed = 0;

    // Determine what to remove
    let (agents_to_remove, skills_to_remove): (Vec<&str>, Vec<&str>) = if all {
        (
            SCUD_AGENTS
                .iter()
                .map(|(filename, _, _)| *filename)
                .collect(),
            SCUD_SKILLS.iter().map(|(dirname, _, _)| *dirname).collect(),
        )
    } else {
        let name_ref = name.as_ref().unwrap();
        // Try agent first, then skill
        if let Some(agent) = normalize_agent_name(name_ref) {
            (vec![agent], vec![])
        } else if let Some(skill) = normalize_skill_name(name_ref) {
            (vec![], vec![skill])
        } else {
            anyhow::bail!(
                "Unknown agent/skill: '{}'. Valid agents: pm, sm, architect, dev, retrospective, status. Valid skills: scud-tasks",
                name_ref
            );
        }
    };

    // Remove agents
    if !agents_to_remove.is_empty() {
        println!("{}", "Agents:".blue().bold());
        for agent_name in &agents_to_remove {
            let agent_file = scud_dir.join(format!("{}.md", agent_name));

            if !agent_file.exists() {
                agents_not_found += 1;
                println!("  {} {} (not installed)", "·".yellow(), agent_name);
                continue;
            }

            fs::remove_file(&agent_file)?;
            agents_removed += 1;
            println!("  {} {}", "".green(), agent_name);
        }
    }

    // Remove skills
    if !skills_to_remove.is_empty() {
        println!("{}", "Skills:".blue().bold());
        for skill_name in &skills_to_remove {
            let skill_dir = skills_dir.join(skill_name);

            if !skill_dir.exists() {
                skills_not_found += 1;
                println!("  {} {} (not installed)", "·".yellow(), skill_name);
                continue;
            }

            remove_dir_recursive(&skill_dir)?;
            skills_removed += 1;
            println!("  {} {}", "".green(), skill_name);

            // Also remove from OpenCode skills directory
            let opencode_skill = opencode_skills_dir.join(skill_name);
            if opencode_skill.exists() {
                remove_dir_recursive(&opencode_skill)?;
            }
        }
    }

    // Remove OpenCode integration (only when --all)
    if all {
        println!("{}", "OpenCode:".blue().bold());

        // Remove commands
        for cmd in OPENCODE_COMMANDS {
            let cmd_file = opencode_cmd_dir.join(format!("{}.md", cmd));
            if cmd_file.exists() {
                fs::remove_file(&cmd_file)?;
                opencode_removed += 1;
            }
        }

        // Remove hooks
        for hook in OPENCODE_HOOKS {
            let hook_file = opencode_hook_dir.join(format!("{}.md", hook));
            if hook_file.exists() {
                fs::remove_file(&hook_file)?;
                opencode_removed += 1;
            }
        }

        // Remove tools
        for tool in OPENCODE_TOOLS {
            let tool_file = opencode_tool_dir.join(format!("{}.json", tool));
            if tool_file.exists() {
                fs::remove_file(&tool_file)?;
                opencode_removed += 1;
            }
        }

        if opencode_removed > 0 {
            println!("  {} {} files removed", "".green(), opencode_removed);
        } else {
            println!("  {} Not installed", "·".yellow());
        }
    }

    println!();
    let total_removed = agents_removed + skills_removed + opencode_removed;
    let total_not_found = agents_not_found + skills_not_found;

    if total_removed > 0 {
        println!(
            "{}",
            format!("✅ Removed {} item(s)", total_removed)
                .green()
                .bold()
        );
    }
    if total_not_found > 0 {
        println!(
            "{}",
            format!("{} item(s) were not installed", total_not_found).yellow()
        );
    }

    Ok(())
}

/// Configure backpressure validation commands
pub fn backpressure(
    project_root: Option<PathBuf>,
    commands: Vec<String>,
    add: Option<String>,
    remove: Option<String>,
    list: bool,
    clear: bool,
) -> Result<()> {
    let storage = Storage::new(project_root);

    if !storage.is_initialized() {
        anyhow::bail!("SCUD is not initialized. Run: scud init");
    }

    let config_path = storage.config_file();

    // Load existing config
    let content = fs::read_to_string(&config_path).unwrap_or_default();
    let mut config: toml::Value =
        toml::from_str(&content).unwrap_or(toml::Value::Table(toml::map::Map::new()));

    // Get or create swarm.backpressure section
    let bp_commands = get_backpressure_commands(&config);

    if list {
        // List current configuration
        println!("{}", "Backpressure Configuration".blue().bold());
        println!();

        if bp_commands.is_empty() {
            println!(
                "  {} No commands configured (using auto-detect)",
                "·".yellow()
            );
            println!();

            // Show what would be auto-detected
            let auto = crate::backpressure::BackpressureConfig::load(Some(
                &storage.project_root().to_path_buf(),
            ))?;
            if !auto.commands.is_empty() {
                println!("{}", "Auto-detected commands:".dimmed());
                for cmd in &auto.commands {
                    println!("  {} {}", "·".dimmed(), cmd.dimmed());
                }
            }
        } else {
            println!("{}", "Commands (in order):".blue());
            for (i, cmd) in bp_commands.iter().enumerate() {
                println!("  {}. {}", i + 1, cmd.green());
            }
        }

        println!();
        println!("{}", "Usage:".blue().bold());
        println!("  scud config backpressure \"cmd1\" \"cmd2\"   Set commands");
        println!("  scud config backpressure --add \"cmd\"     Add a command");
        println!("  scud config backpressure --remove \"cmd\"  Remove a command");
        println!("  scud config backpressure --clear         Clear (use auto-detect)");

        return Ok(());
    }

    if clear {
        // Remove backpressure section entirely
        if let Some(swarm) = config.get_mut("swarm") {
            if let Some(table) = swarm.as_table_mut() {
                table.remove("backpressure");
            }
        }
        save_config(&config_path, &config)?;
        println!(
            "{}",
            "✓ Backpressure config cleared (will use auto-detect)".green()
        );
        return Ok(());
    }

    let mut new_commands = bp_commands.clone();

    if let Some(cmd) = add {
        if !new_commands.contains(&cmd) {
            new_commands.push(cmd.clone());
            println!("{}", format!("✓ Added: {}", cmd).green());
        } else {
            println!("{}", format!("· Already exists: {}", cmd).yellow());
        }
    } else if let Some(cmd) = remove {
        if let Some(pos) = new_commands.iter().position(|c| c == &cmd) {
            new_commands.remove(pos);
            println!("{}", format!("✓ Removed: {}", cmd).green());
        } else {
            println!("{}", format!("· Not found: {}", cmd).yellow());
        }
    } else if !commands.is_empty() {
        // Set commands directly
        new_commands = commands;
        println!("{}", "✓ Backpressure commands set:".green());
        for cmd in &new_commands {
            println!("  · {}", cmd);
        }
    } else {
        // No args - show list
        return backpressure(
            Some(storage.project_root().to_path_buf()),
            vec![],
            None,
            None,
            true,
            false,
        );
    }

    // Save updated config
    set_backpressure_commands(&mut config, &new_commands);
    save_config(&config_path, &config)?;

    Ok(())
}

/// Get backpressure commands from config
fn get_backpressure_commands(config: &toml::Value) -> Vec<String> {
    config
        .get("swarm")
        .and_then(|s| s.get("backpressure"))
        .and_then(|b| b.get("commands"))
        .and_then(|c| c.as_array())
        .map(|arr| {
            arr.iter()
                .filter_map(|v| v.as_str().map(String::from))
                .collect()
        })
        .unwrap_or_default()
}

/// Set backpressure commands in config
fn set_backpressure_commands(config: &mut toml::Value, commands: &[String]) {
    let table = config.as_table_mut().expect("Config must be a table");

    // Ensure swarm section exists
    if !table.contains_key("swarm") {
        table.insert(
            "swarm".to_string(),
            toml::Value::Table(toml::map::Map::new()),
        );
    }

    let swarm = table.get_mut("swarm").unwrap().as_table_mut().unwrap();

    // Ensure backpressure section exists
    if !swarm.contains_key("backpressure") {
        swarm.insert(
            "backpressure".to_string(),
            toml::Value::Table(toml::map::Map::new()),
        );
    }

    let bp = swarm
        .get_mut("backpressure")
        .unwrap()
        .as_table_mut()
        .unwrap();

    // Set commands array
    let cmd_array: Vec<toml::Value> = commands
        .iter()
        .map(|s| toml::Value::String(s.clone()))
        .collect();
    bp.insert("commands".to_string(), toml::Value::Array(cmd_array));

    // Ensure defaults exist
    if !bp.contains_key("stop_on_failure") {
        bp.insert("stop_on_failure".to_string(), toml::Value::Boolean(true));
    }
    if !bp.contains_key("timeout_secs") {
        bp.insert("timeout_secs".to_string(), toml::Value::Integer(300));
    }
}

/// Save config to file
fn save_config(path: &PathBuf, config: &toml::Value) -> Result<()> {
    let content = toml::to_string_pretty(config)?;
    fs::write(path, content)?;
    Ok(())
}

/// Get the .scud/agents directory for spawn agent definitions
fn get_spawn_agents_dir(project_root: Option<PathBuf>) -> PathBuf {
    let base = project_root.unwrap_or_else(|| std::env::current_dir().unwrap_or_default());
    base.join(".scud").join("agents")
}

/// Install spawn agent definitions to .scud/agents/
/// These define harness/model routing for different agent types
pub fn spawn_agents_add(
    project_root: Option<PathBuf>,
    name: Option<String>,
    all: bool,
    interactive: bool,
) -> Result<()> {
    let agents_dir = get_spawn_agents_dir(project_root);
    fs::create_dir_all(&agents_dir)?;

    let agents_to_add: Vec<&str> = if all {
        EMBEDDED_SPAWN_AGENTS.iter().map(|(n, _)| *n).collect()
    } else if let Some(ref name) = name {
        if EMBEDDED_SPAWN_AGENTS
            .iter()
            .any(|(n, _)| *n == name.as_str())
        {
            vec![name.as_str()]
        } else {
            anyhow::bail!(
                "Unknown spawn agent: '{}'. Available: {}",
                name,
                EMBEDDED_SPAWN_AGENTS
                    .iter()
                    .map(|(n, _)| *n)
                    .collect::<Vec<_>>()
                    .join(", ")
            );
        }
    } else if interactive {
        // Interactive selection
        use dialoguer::MultiSelect;

        let items: Vec<String> = EMBEDDED_SPAWN_AGENTS
            .iter()
            .map(|(name, content)| {
                // Extract description from toml
                let desc = content
                    .lines()
                    .find(|l| l.starts_with("description"))
                    .and_then(|l| l.split('=').nth(1))
                    .map(|s| s.trim().trim_matches('"'))
                    .unwrap_or("");
                format!("{} - {}", name, desc)
            })
            .collect();

        let selections = MultiSelect::new()
            .with_prompt("Select spawn agents to install (space to toggle)")
            .items(&items)
            .defaults(&vec![true; items.len()])
            .interact()?;

        selections
            .iter()
            .map(|&i| EMBEDDED_SPAWN_AGENTS[i].0)
            .collect()
    } else {
        anyhow::bail!("Please specify an agent name, use --all, or run interactively");
    };

    if agents_to_add.is_empty() {
        println!("{}", "No agents selected.".yellow());
        return Ok(());
    }

    println!("{}", "Spawn Agents:".blue().bold());
    let mut added = 0;
    let mut existing = 0;

    for agent_name in agents_to_add {
        let dest = agents_dir.join(format!("{}.toml", agent_name));

        if let Some((_, content)) = EMBEDDED_SPAWN_AGENTS.iter().find(|(n, _)| *n == agent_name) {
            if dest.exists() {
                // Check if installed version matches embedded version
                let installed = fs::read_to_string(&dest).unwrap_or_default();
                if installed.trim() == content.trim() {
                    existing += 1;
                    println!("  {} {} (already installed)", "·".yellow(), agent_name);
                    continue;
                }
                // Stale — update to latest embedded version
                fs::write(&dest, content)?;
                added += 1;
                println!("  {} {} (updated)", "".green(), agent_name.green());
            } else {
                fs::write(&dest, content)?;
                added += 1;
                println!("  {} {}", "".green(), agent_name.green());
            }
        }
    }

    println!();
    if added > 0 {
        println!(
            "{}",
            format!("✅ Installed {} spawn agent(s)", added)
                .green()
                .bold()
        );
        println!(
            "{}",
            "Agents are used via @agents section in .scg files".dimmed()
        );
    }
    if existing > 0 {
        println!(
            "{}",
            format!("{} agent(s) already installed", existing).yellow()
        );
    }

    Ok(())
}

/// List available spawn agents
pub fn spawn_agents_list(project_root: Option<PathBuf>) -> Result<()> {
    let agents_dir = get_spawn_agents_dir(project_root);

    println!("{}", "Available Spawn Agents:".blue().bold());
    println!();

    for (name, content) in EMBEDDED_SPAWN_AGENTS {
        let installed = agents_dir.join(format!("{}.toml", name)).exists();
        let status = if installed {
            "".green()
        } else {
            "·".dimmed()
        };

        // Extract description and model info from toml
        let desc = content
            .lines()
            .find(|l| l.starts_with("description"))
            .and_then(|l| l.split('=').nth(1))
            .map(|s| s.trim().trim_matches('"'))
            .unwrap_or("");

        let harness = content
            .lines()
            .find(|l| l.starts_with("harness"))
            .and_then(|l| l.split('=').nth(1))
            .map(|s| s.trim().trim_matches('"'))
            .unwrap_or("?");

        let model = content
            .lines()
            .find(|l| l.trim().starts_with("model") && !l.contains('['))
            .and_then(|l| l.split('=').nth(1))
            .map(|s| s.trim().trim_matches('"'))
            .unwrap_or("default");

        println!(
            "  {} {:<14} [{}:{}] {}",
            status,
            name.cyan(),
            harness,
            model,
            desc.dimmed()
        );
    }

    println!();
    println!("Install: {}", "scud config spawn-agents add --all".cyan());

    Ok(())
}

/// Remove spawn agent definitions
pub fn spawn_agents_remove(
    project_root: Option<PathBuf>,
    name: Option<String>,
    all: bool,
) -> Result<()> {
    let agents_dir = get_spawn_agents_dir(project_root);

    let agents_to_remove: Vec<&str> = if all {
        EMBEDDED_SPAWN_AGENTS.iter().map(|(n, _)| *n).collect()
    } else if let Some(ref name) = name {
        vec![name.as_str()]
    } else {
        anyhow::bail!("Please specify an agent name or use --all");
    };

    println!("{}", "Removing Spawn Agents:".blue().bold());
    let mut removed = 0;
    let mut not_found = 0;

    for agent_name in agents_to_remove {
        let path = agents_dir.join(format!("{}.toml", agent_name));

        if !path.exists() {
            not_found += 1;
            println!("  {} {} (not installed)", "·".yellow(), agent_name);
            continue;
        }

        fs::remove_file(&path)?;
        removed += 1;
        println!("  {} {}", "".green(), agent_name);
    }

    println!();
    if removed > 0 {
        println!(
            "{}",
            format!("✅ Removed {} spawn agent(s)", removed)
                .green()
                .bold()
        );
    }
    if not_found > 0 {
        println!(
            "{}",
            format!("{} agent(s) were not installed", not_found).yellow()
        );
    }

    Ok(())
}

/// Interactively configure agent harness and model settings
pub fn spawn_agents_configure(project_root: Option<PathBuf>, name: Option<String>) -> Result<()> {
    use dialoguer::{Input, Select};

    let agents_dir = get_spawn_agents_dir(project_root);

    // Get list of installed agents
    let installed: Vec<String> = EMBEDDED_SPAWN_AGENTS
        .iter()
        .filter(|(n, _)| agents_dir.join(format!("{}.toml", n)).exists())
        .map(|(n, _)| n.to_string())
        .collect();

    if installed.is_empty() {
        println!(
            "{}",
            "No agents installed. Run: scud config spawn-agents add --all".yellow()
        );
        return Ok(());
    }

    // Select agent to configure (or use provided name)
    let agent_name = match name {
        Some(n) => {
            if !installed.contains(&n) {
                anyhow::bail!(
                    "Agent '{}' not installed. Installed: {}",
                    n,
                    installed.join(", ")
                );
            }
            n
        }
        None => {
            let selection = Select::new()
                .with_prompt("Select agent to configure")
                .items(&installed)
                .default(0)
                .interact()?;
            installed[selection].clone()
        }
    };

    // Load current config
    let agent_path = agents_dir.join(format!("{}.toml", agent_name));
    let content = fs::read_to_string(&agent_path)?;

    // Parse TOML manually to preserve structure
    let mut doc: toml::Value = toml::from_str(&content)?;

    // Extract current values
    let current_harness = doc
        .get("model")
        .and_then(|m| m.get("harness"))
        .and_then(|h| h.as_str())
        .unwrap_or("rho");
    let current_model = doc
        .get("model")
        .and_then(|m| m.get("model"))
        .and_then(|m| m.as_str())
        .unwrap_or("default");

    println!("\n{} {}", "Configuring:".blue().bold(), agent_name.cyan());
    println!("  Current harness: {}", current_harness.yellow());
    println!("  Current model: {}", current_model.yellow());
    println!();

    // Select harness
    let harnesses = ["rho", "claude", "opencode", "cursor"];
    let current_harness_idx = harnesses
        .iter()
        .position(|h| *h == current_harness)
        .unwrap_or(0);
    let harness_selection = Select::new()
        .with_prompt("Select harness")
        .items(&harnesses)
        .default(current_harness_idx)
        .interact()?;
    let new_harness = harnesses[harness_selection];

    // Select model based on harness
    let models: Vec<&str> = match new_harness {
        "rho" => vec![
            "claude-opus",
            "claude-sonnet",
            "claude-haiku",
            "xai/grok-code-fast-1",
            "xai/grok-4-1-fast",
            "xai/grok-4.20-experimental-beta-0304-reasoning",
            "xai/grok-4.20-experimental-beta-0304-non-reasoning",
            "xai/grok-4.20-multi-agent-experimental-beta-0304",
            "custom...",
        ],
        "claude" => vec!["opus", "sonnet", "haiku", "custom..."],
        "opencode" => vec![
            "xai/grok-code-fast-1",
            "xai/grok-4-1-fast",
            "xai/grok-4.20-experimental-beta-0304-reasoning",
            "xai/grok-4.20-experimental-beta-0304-non-reasoning",
            "gpt-5.1",
            "o3-mini",
            "custom...",
        ],
        "cursor" => vec!["claude-4-opus", "claude-4-sonnet", "gpt-5", "custom..."],
        _ => vec!["default", "custom..."],
    };

    let current_model_idx = models.iter().position(|m| *m == current_model).unwrap_or(0);
    let model_selection = Select::new()
        .with_prompt("Select model")
        .items(&models)
        .default(current_model_idx)
        .interact()?;

    let new_model = if models[model_selection] == "custom..." {
        Input::<String>::new()
            .with_prompt("Enter custom model name")
            .default(current_model.to_string())
            .interact_text()?
    } else {
        models[model_selection].to_string()
    };

    // Update TOML
    if let Some(model_table) = doc.get_mut("model").and_then(|m| m.as_table_mut()) {
        model_table.insert(
            "harness".to_string(),
            toml::Value::String(new_harness.to_string()),
        );
        model_table.insert("model".to_string(), toml::Value::String(new_model.clone()));
    }

    // Save updated config
    let new_content = toml::to_string_pretty(&doc)?;
    fs::write(&agent_path, new_content)?;

    println!();
    println!("{}", "✅ Agent configuration saved!".green().bold());
    println!("  Harness: {}", new_harness.cyan());
    println!("  Model: {}", new_model.cyan());

    Ok(())
}

/// Update installed spawn agents to match the configured providers/models
/// This ensures that when users choose xai/opencode during init, all agents use it
pub fn spawn_agents_update_from_config(project_root: Option<PathBuf>) -> Result<()> {
    let agents_dir = get_spawn_agents_dir(project_root.clone());
    let storage = Storage::new(project_root);
    let config = storage.load_config()?;

    if !agents_dir.exists() {
        return Ok(()); // No agents installed yet
    }

    // Categorize agents by complexity level
    let smart_agents = [
        "analyzer",
        "planner",
        "researcher",
        "reviewer",
        "outside-generalist",
    ];
    let fast_agents = ["builder", "fast-builder", "repairer"];

    println!(
        "{}",
        "Updating spawn agents to match configuration...".blue()
    );

    let mut updated = 0;

    // Update smart agents to use smart provider/model
    for agent_name in &smart_agents {
        let agent_file = agents_dir.join(format!("{}.toml", agent_name));
        if agent_file.exists() {
            update_agent_config(&agent_file, &config.smart_provider(), &config.smart_model())?;
            updated += 1;
            println!("  {} {} (smart model)", "".green(), agent_name);
        }
    }

    // Update fast agents to use fast provider/model
    for agent_name in &fast_agents {
        let agent_file = agents_dir.join(format!("{}.toml", agent_name));
        if agent_file.exists() {
            update_agent_config(&agent_file, &config.fast_provider(), &config.fast_model())?;
            updated += 1;
            println!("  {} {} (fast model)", "".green(), agent_name);
        }
    }

    if updated > 0 {
        println!(
            "\n{}",
            format!(
                "✅ Updated {} spawn agent(s) to match your configuration",
                updated
            )
            .green()
            .bold()
        );
    }

    Ok(())
}

/// Update a single agent config file with new harness and model
fn update_agent_config(agent_path: &PathBuf, harness: &str, model: &str) -> Result<()> {
    let content = fs::read_to_string(agent_path)?;
    let mut lines: Vec<String> = content.lines().map(|s| s.to_string()).collect();

    // Find and update the harness and model lines
    for line in &mut lines {
        if line.trim().starts_with("harness = ") {
            *line = format!("harness = \"{}\"", harness);
        } else if line.trim().starts_with("model = ") {
            *line = format!("model = \"{}\"", model);
        }
    }

    // Write back the updated content
    let new_content = lines.join("\n") + "\n";
    fs::write(agent_path, new_content)?;

    Ok(())
}