apiforge 0.2.6

Production-grade API release automation CLI. From merged code to healthy pods in production — one command.
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
use apiforge::cli::{Cli, Commands};
use apiforge::config::Config;
use clap::Parser;
use std::path::PathBuf;

#[tokio::main]
async fn main() -> anyhow::Result<()> {
    let cli = Cli::parse();

    tracing_subscriber::fmt()
        .with_env_filter(
            tracing_subscriber::EnvFilter::try_from_default_env().unwrap_or_else(|_| {
                if cli.debug {
                    "apiforge=debug".into()
                } else {
                    "apiforge=info".into()
                }
            }),
        )
        .without_time()
        .init();

    match cli.command {
        Commands::Init(args) => cmd_init(args).await,
        Commands::Doctor => cmd_doctor(&cli.config).await,
        Commands::Release(args) => cmd_release(&cli.config, args).await,
        Commands::Rollback(args) => cmd_rollback(&cli.config, args).await,
        Commands::History(args) => cmd_history(args).await,
        Commands::Status => cmd_status(&cli.config).await,
        Commands::Config(args) => cmd_config(&cli.config, args).await,
    }
}

async fn cmd_init(args: apiforge::cli::InitArgs) -> anyhow::Result<()> {
    let name = args.name.unwrap_or_else(|| {
        std::env::current_dir()
            .ok()
            .and_then(|p| p.file_name().map(|n| n.to_string_lossy().to_string()))
            .unwrap_or_else(|| "my-project".to_string())
    });

    let config_path = PathBuf::from("apiforge.toml");
    if config_path.exists() && !args.force {
        anyhow::bail!("apiforge.toml already exists. Use --force to overwrite.");
    }

    // Generate a default config
    let default_config = format!(
        r#"[project]
name = "{name}"
language = "rust"

[git]
main_branch = "main"
tag_format = "v{{version}}"
changelog = true
commit_message = "chore: release v{{{{ version }}}}"
remote = "origin"
require_clean = true
require_main_branch = true
fetch_timeout_secs = 60
push_timeout_secs = 120
operation_timeout_secs = 30

[docker]
registry = "aws_ecr"
repository = "{name}"
dockerfile = "Dockerfile"
context = "."
tags = ["{{version}}", "latest"]

[kubernetes]
context = "production"
namespace = "default"
deployment = "{name}"
manifest_path = "k8s/deployment.yaml"
image_field = ".spec.template.spec.containers[0].image"
rollout_timeout = 300
min_ready_percent = 100

[aws]
region = "us-east-1"

# Optional: GitHub release configuration
# [github]
# repository = "owner/repo"
# token = "${{GITHUB_TOKEN}}"
# create_release = true
# prerelease = false
# draft = false

# Optional: Notifications
# [notifications.slack]
# webhook_url = "${{SLACK_WEBHOOK_URL}}"
# message = "{{{{ status_emoji }}}} Release {{{{ version }}}} of {{{{ project }}}}: {{{{ status }}}}"
# notify_on = "both"

# Optional: Health check
# [health_check]
# url = "https://api.example.com/health"
# expected_status = 200
# timeout = 60
# interval = 5
"#,
        name = name
    );

    std::fs::write(&config_path, default_config)?;

    println!("✓ Initialized apiforge for '{}'", name);
    println!("  Created apiforge.toml — edit it to match your project setup.");
    println!("\nNext steps:");
    println!("  1. Edit apiforge.toml with your project settings");
    println!("  2. Run 'apiforge doctor' to validate your environment");
    println!("  3. Run 'apiforge release patch --dry-run' to preview a release");

    Ok(())
}

async fn cmd_doctor(config_path: &str) -> anyhow::Result<()> {
    use colored::Colorize;

    println!("\n{}", "▸ Environment checks".bold().cyan());

    type ToolCheck = (&'static str, fn() -> bool, &'static str);
    let checks: Vec<ToolCheck> = vec![
        ("git", || which::which("git").is_ok(), "Version control"),
        (
            "docker",
            || which::which("docker").is_ok(),
            "Container builds",
        ),
        (
            "kubectl",
            || which::which("kubectl").is_ok(),
            "Kubernetes deployment",
        ),
        ("aws", || which::which("aws").is_ok(), "AWS CLI (ECR auth)"),
    ];

    let mut all_ok = true;
    for (name, check, purpose) in &checks {
        let (status, color) = if check() {
            ("OK", "green")
        } else {
            all_ok = false;
            ("MISSING", "yellow")
        };
        let status_colored = match color {
            "green" => status.green(),
            "yellow" => status.yellow(),
            _ => status.normal(),
        };
        println!(
            "  {} {} ... {} ({})",
            "".dimmed(),
            name.bold(),
            status_colored,
            purpose.dimmed()
        );
    }

    println!("\n{}", "▸ Configuration".bold().cyan());

    let path = PathBuf::from(config_path);
    if path.exists() {
        match Config::from_file(&path) {
            Ok(config) => {
                println!("  {} config ... {}", "".dimmed(), "OK".green());
                println!("    Project: {}", config.project.name);
                println!("    Language: {:?}", config.project.language);
                println!("    Registry: {:?}", config.docker.registry);
            }
            Err(e) => {
                all_ok = false;
                println!("  {} config ... {} ({})", "".dimmed(), "INVALID".red(), e);
            }
        }
    } else {
        all_ok = false;
        println!(
            "  {} config ... {} (run `apiforge init`)",
            "".dimmed(),
            "NOT FOUND".yellow()
        );
    }

    println!("\n{}", "▸ Git repository".bold().cyan());

    match apiforge::integrations::git::GitRepo::open() {
        Ok(repo) => {
            println!("  {} repository ... {}", "".dimmed(), "OK".green());
            if let Ok(branch) = repo.current_branch() {
                println!("    Branch: {}", branch);
            }
            if let Ok(Some(tag)) = repo.get_latest_tag("v*") {
                println!("    Latest tag: {}", tag);
            }
            if let Ok(clean) = repo.is_working_tree_clean() {
                let status = if clean {
                    "clean".green()
                } else {
                    "dirty".yellow()
                };
                println!("    Working tree: {}", status);
            }
        }
        Err(_) => {
            all_ok = false;
            println!("  {} repository ... {}", "".dimmed(), "NOT FOUND".red());
        }
    }

    println!();
    if all_ok {
        println!("{}", "  ✓ All checks passed!".green().bold());
    } else {
        println!(
            "{}",
            "  ⚠ Some checks failed. Fix the issues above before releasing.".yellow()
        );
    }

    Ok(())
}

async fn cmd_release(config_path: &str, args: apiforge::cli::ReleaseArgs) -> anyhow::Result<()> {
    use colored::Colorize;
    use dialoguer::Confirm;

    let path = PathBuf::from(config_path);
    let config = Config::from_file(&path)?;

    let bump_type = args.bump.parse::<apiforge::utils::BumpType>()?;

    let repo = apiforge::integrations::git::GitRepo::open()?;
    let version_file = config.project.language.version_file();
    let version_path = repo.root_path().join(version_file);

    let current_version = apiforge::utils::read_version(config.project.language, &version_path)?;

    let new_version = apiforge::utils::bump_version(&current_version, bump_type)?;
    let new_version_str = new_version.to_string();

    let previous_tag = repo.get_latest_tag(&config.git.tag_format.replace("{version}", "*"))?;

    // Show release plan
    println!("\n{}", "▸ Release Plan".bold().cyan());
    println!("  Project:     {}", config.project.name.bold());
    println!(
        "  Version:     {}{}",
        current_version.dimmed(),
        new_version_str.green().bold()
    );
    println!("  Bump type:   {}", args.bump);
    if let Some(ref tag) = previous_tag {
        println!("  Previous:    {}", tag.dimmed());
    }
    println!();

    // Show what will happen
    println!("{}", "  Steps to execute:".dimmed());
    println!("  1. Validate git repository state");
    println!("  2. Bump version in {}", version_file);
    if config.git.changelog && !args.no_changelog {
        println!("  3. Generate changelog");
    }
    println!("  4. Commit and tag");
    println!("  5. Push to remote");

    if !args.skip_docker {
        println!("  6. Build Docker image");
        println!("  7. Push to {:?}", config.docker.registry);
    }

    if !args.skip_k8s {
        println!("  8. Update Kubernetes deployment");
        println!("  9. Wait for rollout");
    }

    if !args.skip_github && config.github.is_some() {
        println!("  10. Create GitHub release");
    }

    if config.health_check.is_some() {
        println!("  11. Verify service health");
    }

    println!();

    // Confirmation prompt (unless --yes or --dry-run)
    if !args.dry_run && !args.yes {
        let confirmed = Confirm::new()
            .with_prompt("Proceed with release?")
            .default(false)
            .interact()?;

        if !confirmed {
            println!("Release cancelled.");
            return Ok(());
        }
    }

    // Build the orchestrator with all steps
    let mut orchestrator =
        apiforge::orchestrator::ReleaseOrchestrator::new(config.clone(), args.dry_run);

    // Git steps
    orchestrator.add_step(Box::new(apiforge::steps::git::GitPreflightStep::new()));
    orchestrator.add_step(Box::new(apiforge::steps::git::VersionBumpStep::new(
        bump_type,
    )));

    if config.git.changelog && !args.no_changelog {
        orchestrator.add_step(Box::new(apiforge::steps::git::ChangelogStep::new(
            new_version_str.clone(),
            previous_tag.clone(),
        )));
    }

    orchestrator.add_step(Box::new(apiforge::steps::git::GitCommitStep::new(
        new_version_str.clone(),
    )));
    orchestrator.add_step(Box::new(apiforge::steps::git::GitTagStep::new(
        new_version.clone(),
    )));
    orchestrator.add_step(Box::new(apiforge::steps::git::GitPushStep::new(
        new_version.clone(),
    )));

    // Docker steps
    if !args.skip_docker {
        orchestrator.add_step(Box::new(apiforge::steps::docker::DockerBuildStep::new(
            new_version.clone(),
        )));
        orchestrator.add_step(Box::new(apiforge::steps::docker::DockerPushStep::new(
            new_version.clone(),
        )));
    }

    // Kubernetes steps
    if !args.skip_k8s {
        orchestrator.add_step(Box::new(apiforge::steps::kubernetes::K8sUpdateStep::new(
            new_version.clone(),
        )));
        orchestrator.add_step(Box::new(apiforge::steps::kubernetes::K8sRolloutStep::new()));
    }

    // GitHub release
    if !args.skip_github && config.github.is_some() {
        orchestrator.add_step(Box::new(
            apiforge::steps::github::GitHubReleaseStep::new(new_version.clone())
                .with_previous_tag(previous_tag.clone()),
        ));
    }

    // Health check
    if config.health_check.is_some() {
        orchestrator.add_step(Box::new(apiforge::steps::health::HealthCheckStep::new(
            new_version.clone(),
        )));
    }

    // Run the pipeline
    let outputs = orchestrator.run().await?;

    // Success notification
    if !args.skip_notify && config.notifications.is_some() {
        let notify_result = send_success_notification(&config, &new_version).await;
        if let Err(e) = notify_result {
            tracing::warn!("Failed to send notification: {}", e);
        }
    }

    // Record in audit log
    let audit_dir = std::path::Path::new(".apiforge/audit");
    {
        // Scope ensures AuditStore is dropped and flushed before process exits
        if let Ok(store) = apiforge::audit::AuditStore::open(audit_dir) {
            let record = apiforge::audit::AuditStore::new_record(
                &new_version_str,
                &bump_type.to_string(),
                args.dry_run,
            );
            if let Err(e) = store.record(&record) {
                tracing::warn!("Failed to write audit record: {}", e);
            }
            // Explicit flush to ensure data is persisted
            if let Err(e) = store.flush() {
                tracing::warn!("Failed to flush audit database: {}", e);
            }
        } else {
            tracing::warn!("Failed to open audit database at {:?}", audit_dir);
        }
        // AuditStore is dropped here, triggering the Drop impl
    }

    // Output results
    if args.output == "json" {
        let result = serde_json::json!({
            "success": true,
            "version": new_version_str,
            "bump_type": bump_type.to_string(),
            "dry_run": args.dry_run,
            "steps": outputs.iter().map(|o| serde_json::json!({
                "status": o.status.to_string(),
                "message": o.message,
                "duration_ms": o.duration_ms
            })).collect::<Vec<_>>()
        });
        println!("{}", serde_json::to_string_pretty(&result)?);
    } else {
        println!(
            "\n{}",
            format!("✨ Release {} complete!", new_version)
                .green()
                .bold()
        );
        println!("   {} steps executed successfully", outputs.len());
    }

    Ok(())
}

async fn send_success_notification(
    config: &Config,
    version: &semver::Version,
) -> anyhow::Result<()> {
    // This would use the notification steps, simplified here
    if let Some(ref notifications) = config.notifications {
        if let Some(ref slack) = notifications.slack {
            let client = reqwest::Client::new();
            let message = slack
                .message
                .replace("{{ version }}", &version.to_string())
                .replace("{{ project }}", &config.project.name)
                .replace("{{ status }}", "success")
                .replace("{{ status_emoji }}", "");

            let payload = serde_json::json!({
                "text": message
            });

            client
                .post(&slack.webhook_url)
                .json(&payload)
                .send()
                .await?;
        }
    }
    Ok(())
}

async fn cmd_rollback(config_path: &str, args: apiforge::cli::RollbackArgs) -> anyhow::Result<()> {
    use colored::Colorize;

    let path = PathBuf::from(config_path);
    let config = Config::from_file(&path)?;

    let repo = apiforge::integrations::git::GitRepo::open()?;

    // Get the target version
    let target_version = if let Some(ref to_version) = args.to {
        to_version.clone()
    } else {
        // Get previous tag
        let _tags = repo.get_latest_tag("v*")?;
        // Would need to get second-to-last tag
        anyhow::bail!("Automatic rollback target detection not yet implemented. Please specify --to <version>");
    };

    println!("\n{}", "▸ Rollback Plan".bold().cyan());
    println!("  Target version: {}", target_version.bold());

    if args.dry_run {
        println!("\n{}", "[dry-run] Would perform the following:".yellow());
        println!("  1. Update Kubernetes deployment to {}", target_version);
        println!("  2. Wait for rollout");
        println!("  3. Verify health check");
        return Ok(());
    }

    // Perform Kubernetes rollback
    let k8s =
        apiforge::integrations::kubernetes::K8sClient::new(&config.kubernetes.context).await?;

    // Build the full image name with target version
    let image_base = match config.docker.registry {
        apiforge::config::DockerRegistry::AwsEcr => {
            let aws = apiforge::integrations::aws::AwsClient::new(&config.aws.region).await?;
            let (account_id, _) = aws.get_caller_identity().await?;
            let registry_url = aws.get_ecr_registry_url(&account_id);
            format!("{}/{}", registry_url, config.docker.repository)
        }
        _ => config.docker.repository.clone(),
    };

    let target_image = format!("{}:{}", image_base, target_version.trim_start_matches('v'));

    println!("  Rolling back to: {}", target_image);

    k8s.update_deployment_image(
        &config.kubernetes.namespace,
        &config.kubernetes.deployment,
        &config.kubernetes.image_field,
        &target_image,
    )
    .await?;

    println!("  Waiting for rollout...");

    k8s.wait_for_rollout(
        &config.kubernetes.namespace,
        &config.kubernetes.deployment,
        config.kubernetes.rollout_timeout,
        |status| {
            println!(
                "    {}/{} replicas ready",
                status.ready_replicas, status.desired_replicas
            );
        },
    )
    .await?;

    println!(
        "\n{}",
        format!("✓ Rollback to {} complete!", target_version)
            .green()
            .bold()
    );

    Ok(())
}

async fn cmd_history(args: apiforge::cli::HistoryArgs) -> anyhow::Result<()> {
    use colored::Colorize;
    use comfy_table::{ContentArrangement, Table};

    let store = apiforge::audit::AuditStore::open(std::path::Path::new(".apiforge/audit"))?;
    let records = store.list(args.limit)?;
    // store will be dropped at end of scope, triggering flush

    if records.is_empty() {
        println!("No release history found.");
        println!("Run 'apiforge release patch' to create your first release.");
        return Ok(());
    }

    if args.output == "json" {
        let json = serde_json::to_string_pretty(&records)?;
        println!("{}", json);
        return Ok(());
    }

    let mut table = Table::new();
    table.set_content_arrangement(ContentArrangement::Dynamic);
    table.set_header(vec!["Timestamp", "Version", "Type", "Status", "Duration"]);

    for record in records {
        let status_display = match record.status {
            apiforge::audit::ReleaseStatus::Success => "✓ success".green().to_string(),
            apiforge::audit::ReleaseStatus::Failed => "✗ failed".red().to_string(),
            apiforge::audit::ReleaseStatus::RolledBack => "⟲ rolled back".yellow().to_string(),
        };

        // Filter by status if requested
        if let Some(ref filter) = args.filter {
            let matches = match filter.as_str() {
                "success" => record.status == apiforge::audit::ReleaseStatus::Success,
                "failed" => record.status == apiforge::audit::ReleaseStatus::Failed,
                _ => true,
            };
            if !matches {
                continue;
            }
        }

        let dry_run_marker = if record.dry_run { " (dry-run)" } else { "" };

        table.add_row(vec![
            record.timestamp,
            format!("{}{}", record.version, dry_run_marker),
            record.bump_type,
            status_display,
            format!("{}ms", record.duration_ms),
        ]);
    }

    println!("\n{}", "▸ Release History".bold().cyan());
    println!("{table}");

    Ok(())
}

async fn cmd_status(config_path: &str) -> anyhow::Result<()> {
    use colored::Colorize;

    let path = PathBuf::from(config_path);
    if !path.exists() {
        anyhow::bail!("No apiforge.toml found. Run `apiforge init` first.");
    }

    let config = Config::from_file(&path)?;

    println!("\n{}", "▸ Project Status".bold().cyan());
    println!("  Project:  {}", config.project.name.bold());
    println!("  Language: {:?}", config.project.language);

    if let Ok(repo) = apiforge::integrations::git::GitRepo::open() {
        println!("\n{}", "▸ Git".bold().cyan());
        if let Ok(branch) = repo.current_branch() {
            println!("  Branch:      {}", branch);
        }
        if let Ok(Some(tag)) = repo.get_latest_tag("v*") {
            println!("  Latest tag:  {}", tag.green());
        }
        if let Ok(sha) = repo.current_commit_sha() {
            println!("  HEAD:        {}", &sha[..8].dimmed());
        }
    }

    // Try to get current deployed version from Kubernetes
    println!("\n{}", "▸ Kubernetes".bold().cyan());
    match apiforge::integrations::kubernetes::K8sClient::new(&config.kubernetes.context).await {
        Ok(k8s) => {
            println!("  Context:    {}", config.kubernetes.context);
            println!("  Namespace:  {}", config.kubernetes.namespace);

            match k8s
                .get_deployment(&config.kubernetes.namespace, &config.kubernetes.deployment)
                .await
            {
                Ok(deployment) => {
                    let image = deployment
                        .spec
                        .as_ref()
                        .and_then(|s| s.template.spec.as_ref())
                        .and_then(|s| s.containers.first())
                        .map(|c| c.image.as_deref().unwrap_or("unknown"))
                        .unwrap_or("unknown");

                    println!(
                        "  Deployment: {} ({})",
                        config.kubernetes.deployment,
                        "running".green()
                    );
                    println!("  Image:      {}", image);

                    if let Ok(status) = k8s
                        .get_rollout_status(
                            &config.kubernetes.namespace,
                            &config.kubernetes.deployment,
                        )
                        .await
                    {
                        let ready_status = if status.ready {
                            format!(
                                "{}/{} ready",
                                status.ready_replicas, status.desired_replicas
                            )
                            .green()
                        } else {
                            format!(
                                "{}/{} ready",
                                status.ready_replicas, status.desired_replicas
                            )
                            .yellow()
                        };
                        println!("  Replicas:   {}", ready_status);
                    }
                }
                Err(_) => {
                    println!(
                        "  Deployment: {} ({})",
                        config.kubernetes.deployment,
                        "not found".red()
                    );
                }
            }
        }
        Err(_) => {
            println!("  {} Unable to connect to cluster", "".yellow());
        }
    }

    Ok(())
}

async fn cmd_config(config_path: &str, args: apiforge::cli::ConfigArgs) -> anyhow::Result<()> {
    use apiforge::cli::ConfigCommands;

    match args.command {
        ConfigCommands::Validate(validate_args) => {
            cmd_config_validate(config_path, validate_args).await
        }
    }
}

async fn cmd_config_validate(
    config_path: &str,
    args: apiforge::cli::ConfigValidateArgs,
) -> anyhow::Result<()> {
    use colored::Colorize;

    let path = PathBuf::from(config_path);

    // Structure to hold validation results
    let mut checks: Vec<(String, bool, Option<String>)> = Vec::new();
    let mut all_ok = true;

    // Check 1: File exists
    let file_exists = path.exists();
    checks.push((
        "Configuration file exists".to_string(),
        file_exists,
        if file_exists {
            None
        } else {
            Some(format!("File not found: {}", path.display()))
        },
    ));

    if !file_exists {
        all_ok = false;
    } else {
        // Check 2: File readable
        let content_result = std::fs::read_to_string(&path);
        let readable = content_result.is_ok();
        let content_error_msg = content_result.as_ref().err().map(|e| e.to_string());
        checks.push((
            "Configuration file readable".to_string(),
            readable,
            content_error_msg,
        ));

        if let Ok(content) = content_result {
            // Check 3: Valid TOML
            let toml_result: Result<toml::Value, _> = toml::from_str(&content);
            let valid_toml = toml_result.is_ok();
            let toml_error_msg = toml_result.as_ref().err().map(|e| e.to_string());
            checks.push(("Valid TOML syntax".to_string(), valid_toml, toml_error_msg));

            if toml_result.is_ok() {
                // Check 4: Schema validation (Config struct)
                let config_result = Config::from_file(&path);
                let valid_schema = config_result.is_ok();
                let config_error_msg = config_result.as_ref().err().map(|e| e.to_string());
                checks.push((
                    "Valid configuration schema".to_string(),
                    valid_schema,
                    config_error_msg,
                ));

                if let Ok(config) = config_result {
                    // Check 5: Project configuration
                    checks.push((
                        "Project name specified".to_string(),
                        !config.project.name.is_empty(),
                        if config.project.name.is_empty() {
                            Some("Project name is empty".to_string())
                        } else {
                            None
                        },
                    ));

                    // Check 6: Git configuration
                    let tag_format_valid = config.git.tag_format.contains("{version}");
                    checks.push((
                        "Git tag format contains {version}".to_string(),
                        tag_format_valid,
                        if tag_format_valid {
                            None
                        } else {
                            Some(format!(
                                "tag_format '{}' must contain {{version}} placeholder",
                                config.git.tag_format
                            ))
                        },
                    ));

                    // Check 7: Docker configuration
                    checks.push((
                        "Docker repository specified".to_string(),
                        !config.docker.repository.is_empty(),
                        if config.docker.repository.is_empty() {
                            Some("Docker repository is empty".to_string())
                        } else {
                            None
                        },
                    ));

                    let has_docker_tags = !config.docker.tags.is_empty();
                    checks.push((
                        "Docker tags specified".to_string(),
                        has_docker_tags,
                        if has_docker_tags {
                            None
                        } else {
                            Some("At least one Docker tag is required".to_string())
                        },
                    ));

                    // Check 8: Kubernetes configuration
                    checks.push((
                        "Kubernetes namespace specified".to_string(),
                        !config.kubernetes.namespace.is_empty(),
                        None,
                    ));
                    checks.push((
                        "Kubernetes deployment specified".to_string(),
                        !config.kubernetes.deployment.is_empty(),
                        None,
                    ));
                    checks.push((
                        "Kubernetes context specified".to_string(),
                        !config.kubernetes.context.is_empty(),
                        None,
                    ));

                    // Check 9: AWS configuration (if ECR)
                    let ecr_check = if matches!(
                        config.docker.registry,
                        apiforge::config::DockerRegistry::AwsEcr
                    ) {
                        let has_region = !config.aws.region.is_empty();
                        (
                            "AWS region specified (for ECR)".to_string(),
                            has_region,
                            if has_region {
                                None
                            } else {
                                Some("AWS region is required when using ECR".to_string())
                            },
                        )
                    } else {
                        (
                            "AWS region (not required for non-ECR)".to_string(),
                            true,
                            None,
                        )
                    };
                    checks.push(ecr_check);

                    // Check 10: GitHub configuration (if present)
                    if let Some(ref github) = config.github {
                        let repo_valid =
                            !github.repository.is_empty() && github.repository.contains('/');
                        checks.push((
                            "GitHub repository format valid".to_string(),
                            repo_valid,
                            if repo_valid {
                                None
                            } else {
                                Some(format!(
                                    "GitHub repository '{}' must be in 'owner/repo' format",
                                    github.repository
                                ))
                            },
                        ));
                    }

                    // Check 11: Health check configuration (if present)
                    if let Some(ref hc) = config.health_check {
                        let url_valid = !hc.url.is_empty()
                            && (hc.url.starts_with("http://") || hc.url.starts_with("https://"));
                        checks.push((
                            "Health check URL valid".to_string(),
                            url_valid,
                            if url_valid {
                                None
                            } else {
                                Some(format!(
                                    "Health check URL '{}' must start with http:// or https://",
                                    hc.url
                                ))
                            },
                        ));

                        let interval_valid = hc.interval > 0;
                        checks.push((
                            "Health check interval > 0".to_string(),
                            interval_valid,
                            if interval_valid {
                                None
                            } else {
                                Some("Health check interval must be greater than 0".to_string())
                            },
                        ));

                        let timeout_valid = hc.timeout > 0;
                        checks.push((
                            "Health check timeout > 0".to_string(),
                            timeout_valid,
                            if timeout_valid {
                                None
                            } else {
                                Some("Health check timeout must be greater than 0".to_string())
                            },
                        ));
                    }

                    // Check 12: Notifications configuration (if present)
                    if let Some(ref notifications) = config.notifications {
                        if let Some(ref slack) = notifications.slack {
                            let webhook_valid = !slack.webhook_url.is_empty()
                                && slack.webhook_url.starts_with("https://hooks.slack.com");
                            checks.push((
                                "Slack webhook URL format valid".to_string(),
                                webhook_valid,
                                if webhook_valid {
                                    None
                                } else {
                                    Some(format!(
                                        "Slack webhook URL should start with https://hooks.slack.com (got: {})",
                                        &slack.webhook_url[..slack.webhook_url.len().min(30)]
                                    ))
                                },
                            ));
                        }
                    }

                    // Verbose mode: Additional informational checks
                    if args.verbose {
                        checks.push((
                            format!("Language: {:?}", config.project.language),
                            true,
                            None,
                        ));
                        checks.push((
                            format!("Registry: {:?}", config.docker.registry),
                            true,
                            None,
                        ));
                        checks.push((
                            format!("Main branch: {}", config.git.main_branch),
                            true,
                            None,
                        ));
                        checks.push((
                            format!(
                                "Timeout settings: fetch={}s push={}s op={}s",
                                config.git.fetch_timeout_secs,
                                config.git.push_timeout_secs,
                                config.git.operation_timeout_secs
                            ),
                            true,
                            None,
                        ));
                    }
                } else {
                    all_ok = false;
                }
            } else {
                all_ok = false;
            }
        } else {
            all_ok = false;
        }
    }

    // Count failures
    let failures: Vec<_> = checks.iter().filter(|(_, ok, _)| !ok).collect();
    if !failures.is_empty() {
        all_ok = false;
    }

    // Output results
    if args.output == "json" {
        let result = serde_json::json!({
            "valid": all_ok,
            "file": config_path,
            "checks": checks.iter().map(|(name, ok, error)| {
                serde_json::json!({
                    "name": name,
                    "passed": *ok,
                    "error": error
                })
            }).collect::<Vec<_>>()
        });
        println!("{}", serde_json::to_string_pretty(&result)?);
    } else {
        println!("\n{}", "▸ Configuration Validation".bold().cyan());
        println!("  File: {}\n", path.display().to_string().dimmed());

        for (name, ok, error) in &checks {
            let status = if *ok { "".green() } else { "".red() };
            println!("  {} {}", status, name);
            if let Some(ref err) = error {
                println!("    {} {}", "".dimmed(), err.dimmed());
            }
        }

        println!();
        if all_ok {
            println!("{}", "  ✓ Configuration is valid!".green().bold());
        } else {
            println!("{}", "  ✗ Configuration has errors".red().bold());
        }
    }

    if all_ok {
        Ok(())
    } else {
        anyhow::bail!("Configuration validation failed");
    }
}