ccboard 0.21.0

Unified Claude Code Management Dashboard - TUI + Web
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
//! ccboard - Unified Claude Code Management Dashboard

mod cli;
mod hook;
mod setup;

use anyhow::{Context, Result};
use ccboard_core::DataStore;
use clap::{Parser, Subcommand};
use indicatif::{ProgressBar, ProgressStyle};
use std::path::PathBuf;
use std::sync::Arc;

#[derive(Parser)]
#[command(
    name = "ccboard",
    version,
    about = "Unified Claude Code Management Dashboard",
    long_about = "A comprehensive TUI and web dashboard for managing Claude Code data.\n\
                  \n\
                  Visualizes sessions, statistics, configuration, hooks, agents, costs, and history\n\
                  from ~/.claude directories with real-time updates and file editing capabilities.\n\
                  \n\
                  Features:\n\
                    • 7 interactive tabs (Dashboard, Sessions, Config, Hooks, Agents, Costs, History)\n\
                    • File editing with $EDITOR integration (press 'e')\n\
                    • MCP server management and visualization\n\
                    • Real-time cost tracking and analytics\n\
                    • Session search and exploration\n\
                  \n\
                  Examples:\n\
                    ccboard                          # Run TUI (default)\n\
                    ccboard web                      # Run web (API + frontend if built)\n\
                    ccboard web --port 8080          # Custom port\n\
                    ccboard both                     # Run both TUI and web server\n\
                    ccboard stats                    # Print stats summary\n\
                    ccboard search \"query\"           # Search sessions\n\
                    ccboard recent 10                # Show 10 most recent sessions\n\
                    \n\
                  Web Frontend Workflow:\n\
                    # Option 1: Production (single command)\n\
                    trunk build --release            # Compile frontend once\n\
                    ccboard web                      # Serves API + static frontend\n\
                    \n\
                    # Option 2: Development (hot reload)\n\
                    ccboard web --port 8080          # Terminal 1: API server\n\
                    trunk serve --port 3333          # Terminal 2: Frontend dev server\n\
                  \n\
                  Environment Variables:\n\
                    CCBOARD_CLAUDE_HOME              # Override Claude home directory\n\
                    CCBOARD_NON_INTERACTIVE          # Disable interactive prompts (CI/CD)\n\
                    CCBOARD_FORMAT                   # Force output format: json|table\n\
                    CCBOARD_NO_COLOR                 # Disable ANSI colors (log-friendly)"
)]
struct Cli {
    #[command(subcommand)]
    mode: Option<Mode>,

    /// Path to Claude home directory (default: ~/.claude)
    #[arg(long, env = "CCBOARD_CLAUDE_HOME")]
    claude_home: Option<PathBuf>,

    /// Focus on specific project directory
    #[arg(long)]
    project: Option<PathBuf>,

    /// Disable interactive prompts (CI/CD mode)
    #[arg(long, env = "CCBOARD_NON_INTERACTIVE")]
    non_interactive: bool,

    /// Force output format (json|table)
    #[arg(long, env = "CCBOARD_FORMAT", value_parser = ["json", "table"])]
    format: Option<String>,

    /// Disable ANSI colors (log-friendly)
    #[arg(long, env = "CCBOARD_NO_COLOR")]
    no_color: bool,
}

#[derive(Subcommand)]
enum Mode {
    /// Run TUI interface (default)
    Tui,
    /// Run web interface
    Web {
        /// Port for web server
        #[arg(long, default_value = "3333")]
        port: u16,
    },
    /// Run both TUI and web interfaces
    Both {
        /// Port for web server
        #[arg(long, default_value = "3333")]
        port: u16,
    },
    /// Print stats to terminal and exit
    Stats,
    /// Clear session metadata cache and exit
    ClearCache,
    /// Search sessions by query
    Search {
        /// Query string (searches ID, project, message, branch)
        query: String,
        /// Date filter: 7d, 30d, 3m, 1y, YYYY-MM-DD
        #[arg(long, short = 'd')]
        since: Option<String>,
        /// Max results
        #[arg(long, short = 'n', default_value = "20")]
        limit: usize,
        /// Output as JSON
        #[arg(long)]
        json: bool,
    },
    /// Show recent sessions
    Recent {
        /// Number of sessions
        #[arg(default_value = "10")]
        count: usize,
        /// Date filter: 7d, 30d, 3m, 1y, YYYY-MM-DD
        #[arg(long, short = 'd')]
        since: Option<String>,
        /// Output as JSON
        #[arg(long)]
        json: bool,
    },
    /// Show detailed session info
    Info {
        /// Session ID or prefix (min 8 chars)
        session_id: String,
        /// Output as JSON
        #[arg(long)]
        json: bool,
    },
    /// Resume session in Claude CLI
    Resume {
        /// Session ID or prefix (min 8 chars)
        session_id: String,
    },
    /// Generate and cache an LLM summary for a session
    Summarize {
        /// Session ID or prefix (min 8 chars)
        session_id: String,
        /// Claude model for summarisation (default: system default)
        #[arg(long, default_value = "")]
        model: String,
        /// Regenerate even if a cached summary exists
        #[arg(long)]
        force: bool,
    },
    /// Export data to files (sessions, stats, billing, or a single conversation)
    Export {
        #[command(subcommand)]
        command: ExportCommand,
    },
    /// Pricing management
    Pricing {
        #[command(subcommand)]
        command: PricingCommand,
    },
    /// Handle a Claude Code hook event (called by Claude Code hooks)
    Hook {
        /// Hook event name (PreToolUse, PostToolUse, UserPromptSubmit, Notification, Stop)
        event: String,
    },
    /// Inject ccboard hooks into Claude Code settings.json
    Setup {
        /// Show what would be changed without writing files
        #[arg(long)]
        dry_run: bool,
    },
    /// Analyze session history to suggest skills, commands, and CLAUDE.md rules
    Discover {
        /// Time window: 7d, 30d, 90d, or YYYY-MM-DD (default: 90d)
        #[arg(long, default_value = "90d")]
        since: String,

        /// Minimum occurrences to surface a pattern (default: 3)
        #[arg(long, default_value = "3")]
        min_count: usize,

        /// Maximum suggestions to show (default: 20)
        #[arg(long, default_value = "20")]
        top: usize,

        /// Use claude --print for semantic analysis
        #[arg(long)]
        llm: bool,

        /// Claude model for --llm mode
        #[arg(long, default_value = "")]
        model: String,

        /// Search all projects (default: current project only)
        #[arg(long)]
        all: bool,

        /// Output as JSON
        #[arg(long)]
        json: bool,
    },
}

#[derive(Subcommand)]
enum ExportCommand {
    /// Export a single conversation to file (markdown, json, or html)
    Conversation {
        /// Session ID or prefix (min 8 chars)
        session_id: String,
        /// Output file path
        #[arg(short = 'o', long)]
        output: PathBuf,
        /// Export format: markdown, json, html
        #[arg(short = 'f', long, default_value = "markdown", value_parser = ["markdown", "json", "html"])]
        format: String,
    },
    /// Export sessions list to file (csv, json, or md)
    Sessions {
        /// Output file path
        #[arg(short = 'o', long)]
        output: PathBuf,
        /// Export format: csv, json, md
        #[arg(short = 'f', long, default_value = "csv", value_parser = ["csv", "json", "md"])]
        format: String,
        /// Date filter: 7d, 30d, 3m, 1y, YYYY-MM-DD
        #[arg(long, short = 'd')]
        since: Option<String>,
    },
    /// Export usage statistics to file (csv, json, or md)
    Stats {
        /// Output file path
        #[arg(short = 'o', long)]
        output: PathBuf,
        /// Export format: csv, json, md
        #[arg(short = 'f', long, default_value = "csv", value_parser = ["csv", "json", "md"])]
        format: String,
    },
    /// Export billing blocks to file (csv, json, or md)
    Billing {
        /// Output file path
        #[arg(short = 'o', long)]
        output: PathBuf,
        /// Export format: csv, json, md
        #[arg(short = 'f', long, default_value = "csv", value_parser = ["csv", "json", "md"])]
        format: String,
    },
}

#[derive(Subcommand)]
enum PricingCommand {
    /// Update pricing from LiteLLM API
    Update,
    /// Clear cached pricing data
    Clear,
}

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

    let claude_home = cli
        .claude_home
        .or_else(|| dirs::home_dir().map(|h: PathBuf| h.join(".claude")))
        .context("Could not determine Claude home directory")?;

    // Auto-detect project: if no --project specified, try current directory
    let project = cli.project.or_else(|| {
        let current_dir = std::env::current_dir().ok()?;
        // Check if current directory has a .claude/ subdirectory
        if current_dir.join(".claude").exists() {
            Some(current_dir)
        } else {
            None
        }
    });

    // Extract flags for command handlers
    let no_color = cli.no_color;

    match cli.mode.unwrap_or(Mode::Tui) {
        Mode::Tui => {
            run_tui(claude_home, project).await?;
        }
        Mode::Web { port } => {
            run_web(claude_home, project, port).await?;
        }
        Mode::Both { port } => {
            run_both(claude_home, project, port).await?;
        }
        Mode::Stats => {
            run_stats(claude_home, project).await?;
        }
        Mode::ClearCache => {
            run_clear_cache(claude_home).await?;
        }
        Mode::Search {
            query,
            since,
            limit,
            json,
        } => {
            run_search(claude_home, project, query, since, limit, json, no_color).await?;
        }
        Mode::Recent { count, since, json } => {
            run_recent(claude_home, project, count, since, json, no_color).await?;
        }
        Mode::Info { session_id, json } => {
            run_info(claude_home, project, session_id, json, no_color).await?;
        }
        Mode::Resume { session_id } => {
            run_resume(claude_home, project, session_id).await?;
        }
        Mode::Summarize {
            session_id,
            model,
            force,
        } => {
            run_summarize(claude_home, project, session_id, model, force, no_color).await?;
        }
        Mode::Export { command } => match command {
            ExportCommand::Conversation {
                session_id,
                output,
                format,
            } => {
                run_export_conversation(claude_home, project, session_id, output, format, no_color)
                    .await?;
            }
            ExportCommand::Sessions {
                output,
                format,
                since,
            } => {
                run_export_sessions(claude_home, project, output, format, since, no_color).await?;
            }
            ExportCommand::Stats { output, format } => {
                run_export_stats(claude_home, project, output, format, no_color).await?;
            }
            ExportCommand::Billing { output, format } => {
                run_export_billing(claude_home, project, output, format, no_color).await?;
            }
        },
        Mode::Pricing { command } => match command {
            PricingCommand::Update => {
                run_pricing_update(no_color).await?;
            }
            PricingCommand::Clear => {
                run_pricing_clear(no_color).await?;
            }
        },
        Mode::Hook { event } => {
            // Sync dispatch — no tokio overhead for this fast path (<20ms)
            tokio::task::block_in_place(|| hook::run_hook(event))?;
        }
        Mode::Setup { dry_run } => {
            setup::run_setup(dry_run, claude_home).await?;
        }
        Mode::Discover {
            since,
            min_count,
            top,
            llm,
            model,
            all,
            json,
        } => {
            run_discover(
                claude_home,
                project,
                since,
                min_count,
                top,
                llm,
                model,
                all,
                json,
            )
            .await?;
        }
    }

    Ok(())
}

async fn run_tui(claude_home: PathBuf, project: Option<PathBuf>) -> Result<()> {
    // Initialize data store (without loading data yet - TUI will handle that)
    let store = Arc::new(DataStore::with_defaults(
        claude_home.clone(),
        project.clone(),
    ));

    // Start file watcher for live updates
    let _watcher = ccboard_core::FileWatcher::start(
        claude_home.clone(),
        project.clone(),
        Arc::clone(&store),
        Default::default(),
    )
    .await
    .context("Failed to start file watcher")?;

    // Run TUI (will show loading spinner and load data in background)
    ccboard_tui::run(store, claude_home, project).await
}

/// Create a consistent CLI spinner (cyan, 80ms tick).
fn create_spinner() -> ProgressBar {
    let spinner = ProgressBar::new_spinner();
    spinner.set_style(
        ProgressStyle::default_spinner()
            .template("{spinner:.cyan} {msg}")
            .unwrap()
            .tick_chars("⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏"),
    );
    spinner.enable_steady_tick(std::time::Duration::from_millis(80));
    spinner
}

/// Parse an optional `--since` string into a `DateFilter`.
fn parse_date_filter(since: Option<&str>) -> Result<Option<cli::DateFilter>> {
    since
        .map(|s| cli::DateFilter::parse(s).context("Invalid date filter"))
        .transpose()
}

/// Print fatal load errors and return `true` if any were found.
fn report_fatal_errors(spinner: &ProgressBar, report: &ccboard_core::LoadReport) -> bool {
    if report.has_fatal_errors() {
        spinner.finish_and_clear();
        eprintln!("Fatal errors during data load:");
        for error in &report.errors {
            eprintln!("  - {}: {}", error.source, error.message);
        }
        true
    } else {
        false
    }
}

async fn run_web(claude_home: PathBuf, project: Option<PathBuf>, port: u16) -> Result<()> {
    use std::time::Instant;

    let start = Instant::now();
    let spinner = create_spinner();

    // Initialize data store
    spinner.set_message("Initializing data store...");
    let store = Arc::new(DataStore::with_defaults(
        claude_home.clone(),
        project.clone(),
    ));

    // Load initial data
    spinner.set_message("Loading sessions and statistics...");
    let report = store.initial_load().await;

    if report_fatal_errors(&spinner, &report) {
        return Ok(());
    }

    // Compute invocation statistics and billing blocks in background (can take minutes for 1000+ sessions)
    spinner.set_message("Starting background analytics computation...");
    let store_clone = Arc::clone(&store);
    tokio::spawn(async move {
        store_clone.compute_invocations().await;
        store_clone.compute_billing_blocks().await;
    });

    // Start file watcher for live updates
    spinner.set_message("Starting file watcher...");
    let _watcher = ccboard_core::FileWatcher::start(
        claude_home.clone(),
        project.clone(),
        Arc::clone(&store),
        Default::default(),
    )
    .await
    .context("Failed to start file watcher")?;

    let elapsed = start.elapsed();
    spinner.finish_with_message(format!(
        "✓ Ready in {:.2}s ({} sessions loaded)",
        elapsed.as_secs_f64(),
        report.sessions_scanned
    ));

    if ccboard_web::has_real_frontend() {
        println!("\n🌐 Backend API + Frontend: http://localhost:{}", port);
        println!("   API endpoints:          http://localhost:{}/api/*", port);
    } else {
        println!("\n🌐 http://localhost:{}", port);
        println!("   API: http://localhost:{}/api/*", port);
        println!("   ⚠️  Frontend not embedded — use a pre-built binary from GitHub Releases");
        println!("      or run `trunk build` in crates/ccboard-web/ then rebuild.");
    }

    ccboard_web::run(store, port).await
}

async fn run_both(claude_home: PathBuf, project: Option<PathBuf>, port: u16) -> Result<()> {
    use std::time::Instant;

    let start = Instant::now();
    let spinner = create_spinner();

    // Initialize data store
    spinner.set_message("Initializing data store...");
    let store = Arc::new(DataStore::with_defaults(
        claude_home.clone(),
        project.clone(),
    ));

    // Load initial data
    spinner.set_message("Loading sessions and statistics...");
    let report = store.initial_load().await;

    if report_fatal_errors(&spinner, &report) {
        return Ok(());
    }

    // Compute invocation statistics (agents/commands/skills usage)
    spinner.set_message("Computing invocation statistics...");
    store.compute_invocations().await;

    // Compute billing blocks (5h usage tracking)
    spinner.set_message("Computing billing blocks...");
    store.compute_billing_blocks().await;

    // Start file watcher for live updates (shared by TUI and web)
    spinner.set_message("Starting file watcher...");
    let _watcher = ccboard_core::FileWatcher::start(
        claude_home.clone(),
        project.clone(),
        Arc::clone(&store),
        Default::default(),
    )
    .await
    .context("Failed to start file watcher")?;

    let elapsed = start.elapsed();
    spinner.finish_with_message(format!(
        "✓ Ready in {:.2}s ({} sessions loaded)",
        elapsed.as_secs_f64(),
        report.sessions_scanned
    ));

    if ccboard_web::has_real_frontend() {
        println!("🌐 Backend API + Frontend: http://localhost:{}", port);
    } else {
        println!(
            "🌐 http://localhost:{} (API only — frontend not embedded)",
            port
        );
    }

    // Start web server in background
    let web_store = Arc::clone(&store);
    let web_handle = tokio::spawn(async move {
        if let Err(e) = ccboard_web::run(web_store, port).await {
            eprintln!("Web server error: {}", e);
        }
    });

    // Run TUI in foreground
    let tui_result = ccboard_tui::run(store, claude_home, project).await;

    // Clean up web server
    web_handle.abort();

    tui_result
}

async fn run_stats(claude_home: PathBuf, project: Option<PathBuf>) -> Result<()> {
    // Initialize data store
    let store = DataStore::with_defaults(claude_home, project);

    // Load initial data
    let report = store.initial_load().await;

    // Print stats summary
    println!("ccboard - Claude Code Statistics");
    println!("================================");
    println!();

    if let Some(stats) = store.stats() {
        println!("Total Tokens:     {}", format_number(stats.total_tokens()));
        println!(
            "  Input:          {}",
            format_number(stats.total_input_tokens())
        );
        println!(
            "  Output:         {}",
            format_number(stats.total_output_tokens())
        );
        println!(
            "  Cache Read:     {}",
            format_number(stats.total_cache_read_tokens())
        );
        println!(
            "  Cache Write:    {}",
            format_number(stats.total_cache_write_tokens())
        );
        println!();
        println!("Sessions:         {}", stats.session_count());
        println!("Messages:         {}", stats.message_count());
        println!("Cache Hit Ratio:  {:.1}%", stats.cache_ratio() * 100.0);
        println!();

        if !stats.model_usage.is_empty() {
            println!("Models:");
            for (name, usage) in stats.top_models(5) {
                println!(
                    "  {}: {} tokens (in: {}, out: {})",
                    name,
                    format_number(usage.total_tokens()),
                    format_number(usage.input_tokens),
                    format_number(usage.output_tokens)
                );
            }
        }
    } else {
        println!("No stats available");
    }

    println!();
    println!("Sessions indexed: {}", store.session_count());

    if report.has_errors() {
        println!();
        println!("Warnings:");
        for error in report.warnings() {
            println!("  - {}: {}", error.source, error.message);
        }
    }

    Ok(())
}

async fn run_clear_cache(claude_home: PathBuf) -> Result<()> {
    let cache_dir = claude_home.join("cache");
    let cache_path = cache_dir.join("session-metadata.db");

    if !cache_path.exists() {
        println!("❌ Cache not found at: {}", cache_path.display());
        println!("   Nothing to clear.");
        return Ok(());
    }

    // Get file size before deletion
    let size_bytes = std::fs::metadata(&cache_path)
        .with_context(|| format!("Failed to read cache metadata: {}", cache_path.display()))?
        .len();

    // Delete cache file
    std::fs::remove_file(&cache_path)
        .with_context(|| format!("Failed to delete cache: {}", cache_path.display()))?;

    // Delete WAL files if they exist
    let wal_path = cache_dir.join("session-metadata.db-wal");
    let shm_path = cache_dir.join("session-metadata.db-shm");

    if wal_path.exists() {
        let _ = std::fs::remove_file(&wal_path);
    }
    if shm_path.exists() {
        let _ = std::fs::remove_file(&shm_path);
    }

    println!("✅ Cache cleared successfully");
    println!("   Location: {}", cache_path.display());
    println!("   Freed: {}", format_size(size_bytes));
    println!();
    println!("💡 Next run will rebuild cache with fresh metadata.");

    Ok(())
}

fn format_size(bytes: u64) -> String {
    if bytes >= 1_048_576 {
        format!("{:.1}MB", bytes as f64 / 1_048_576.0)
    } else if bytes >= 1_024 {
        format!("{:.1}KB", bytes as f64 / 1_024.0)
    } else {
        format!("{}B", bytes)
    }
}

fn format_number(n: u64) -> String {
    if n >= 1_000_000_000 {
        format!("{:.2}B", n as f64 / 1_000_000_000.0)
    } else if n >= 1_000_000 {
        format!("{:.2}M", n as f64 / 1_000_000.0)
    } else if n >= 1_000 {
        format!("{:.2}K", n as f64 / 1_000.0)
    } else {
        n.to_string()
    }
}

// ============================================================================
// CLI Command Handlers
// ============================================================================

async fn run_search(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    query: String,
    since: Option<String>,
    limit: usize,
    json: bool,
    no_color: bool,
) -> Result<()> {
    let store = DataStore::with_defaults(claude_home, project);

    // Show progress
    if !json {
        eprint!("Scanning sessions... ");
    }

    let report = store.initial_load().await;

    if !json && report.sessions_scanned > 0 {
        eprintln!("{} sessions", report.sessions_scanned);
    }

    // Parse date filter
    let date_filter = parse_date_filter(since.as_deref())?;

    // Search
    let all = store.recent_sessions(usize::MAX);
    let results = cli::search_sessions(&all, &query, date_filter.as_ref(), limit);

    if results.is_empty() {
        return Err(cli::CliError::NoResults {
            query,
            scanned: all.len(),
        }
        .into());
    }

    println!("{}", cli::format_session_table(&results, json, no_color));

    if !json {
        eprintln!("\n{} results from {} sessions", results.len(), all.len());
    }

    Ok(())
}

async fn run_recent(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    count: usize,
    since: Option<String>,
    json: bool,
    no_color: bool,
) -> Result<()> {
    let store = DataStore::with_defaults(claude_home, project);

    if !json {
        eprint!("Loading sessions... ");
    }

    let report = store.initial_load().await;

    if !json && report.sessions_scanned > 0 {
        eprintln!("{} sessions", report.sessions_scanned);
    }

    // Parse date filter
    let date_filter = parse_date_filter(since.as_deref())?;

    // Get recent sessions
    let mut all = store.recent_sessions(usize::MAX);

    // Apply date filter if specified
    if let Some(filter) = date_filter {
        all.retain(|s| {
            s.first_timestamp
                .map(|ts| filter.matches(&ts))
                .unwrap_or(false)
        });
    }

    let results: Vec<_> = all.into_iter().take(count).collect();

    if results.is_empty() {
        if !json {
            println!("No sessions found.");
        }
        return Ok(());
    }

    println!("{}", cli::format_session_table(&results, json, no_color));

    if !json {
        eprintln!(
            "\nShowing {} of {} sessions",
            results.len(),
            report.sessions_scanned
        );
    }

    Ok(())
}

async fn run_info(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    session_id: String,
    json: bool,
    _no_color: bool,
) -> Result<()> {
    let store = DataStore::with_defaults(claude_home, project);

    if !json {
        eprint!("Loading sessions... ");
    }

    store.initial_load().await;

    if !json {
        eprintln!("");
    }

    let all = store.recent_sessions(usize::MAX);
    let session = cli::find_by_id_or_prefix(&all, &session_id)?;

    println!("{}", cli::format_session_info(&session, json));

    Ok(())
}

async fn run_resume(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    session_id: String,
) -> Result<()> {
    let store = DataStore::with_defaults(claude_home, project);

    eprint!("Loading sessions... ");
    store.initial_load().await;
    eprintln!("");

    let all = store.recent_sessions(usize::MAX);
    let session = cli::find_by_id_or_prefix(&all, &session_id)?;

    eprintln!(
        "Resuming session {} in {}",
        &session.id[..8],
        session.project_path
    );

    // Unix: use exec() to replace process (no need to wait)
    #[cfg(unix)]
    {
        use std::os::unix::process::CommandExt;
        let err = std::process::Command::new("claude")
            .args(["--resume", &session.id])
            .exec();
        anyhow::bail!("Failed to exec claude: {}", err);
    }

    // Windows: spawn and exit with same code
    #[cfg(not(unix))]
    {
        let status = std::process::Command::new("claude")
            .args(["--resume", &session.id])
            .status()
            .context("Failed to spawn claude (is 'claude' in PATH?)")?;
        std::process::exit(status.code().unwrap_or(1));
    }
}

async fn run_summarize(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    session_id: String,
    model: String,
    force: bool,
    no_color: bool,
) -> Result<()> {
    let ccboard_dir = dirs::home_dir()
        .context("Cannot determine home directory")?
        .join(".ccboard");

    let store = DataStore::with_defaults(claude_home, project);
    eprint!("Loading sessions... ");
    store.initial_load().await;
    eprintln!("done");

    let all = store.recent_sessions(usize::MAX);
    let session = cli::find_by_id_or_prefix(&all, &session_id)?;

    let summary_store = ccboard_core::summaries::SummaryStore::new(&ccboard_dir);

    // Return cached summary unless --force
    if !force && summary_store.has_summary(&session.id) {
        let summary = summary_store.load(&session.id).unwrap_or_default();
        let meta = summary_store.load_meta(&session.id);
        eprintln!(
            "Cached summary for {} ({})",
            &session.id[..8.min(session.id.len())],
            meta.map(|m| m.generated_at.format("%Y-%m-%d").to_string())
                .unwrap_or_else(|| "unknown date".to_string())
        );
        println!("{}", summary);
        return Ok(());
    }

    // Load full session content
    eprint!("Loading session content... ");
    let lines =
        ccboard_core::parsers::SessionContentParser::parse_session_lines(&session.file_path)
            .await
            .with_context(|| format!("Failed to read session {}", session.id))?;

    // Build a plain-text transcript for the summarisation prompt
    let mut transcript = String::new();
    let mut msg_count = 0usize;
    for line in &lines {
        if let Some(ref msg) = line.message {
            let role = msg.role.as_deref().unwrap_or("unknown");
            let text = extract_text_from_content(msg.content.as_ref());
            if !text.is_empty() {
                transcript.push_str(role);
                transcript.push_str(": ");
                transcript.push_str(&text);
                transcript.push_str("\n\n");
                msg_count += 1;
            }
        }
    }
    eprintln!("done ({} messages, {} chars)", msg_count, transcript.len());

    eprintln!(
        "Calling claude --print{}...",
        if model.is_empty() {
            String::new()
        } else {
            format!(" ({})", model)
        }
    );

    let summary = ccboard_core::summaries::call_claude_summarize(&transcript, &model)
        .context("claude --print failed")?;

    summary_store
        .save(&session.id, &summary, &model)
        .context("Failed to cache summary")?;

    let _ = no_color; // reserved for future coloured output
    println!("{}", summary);
    eprintln!(
        "Summary cached to ~/.ccboard/summaries/{}.md",
        &session.id[..8.min(session.id.len())]
    );

    Ok(())
}

/// Extract plain text from a JSON content value (string or content-block array)
fn extract_text_from_content(content: Option<&serde_json::Value>) -> String {
    match content {
        None => String::new(),
        Some(serde_json::Value::String(s)) => s.clone(),
        Some(serde_json::Value::Array(blocks)) => blocks
            .iter()
            .filter_map(|b| {
                if b.get("type").and_then(|t| t.as_str()) == Some("text") {
                    b.get("text")
                        .and_then(|t| t.as_str())
                        .map(|s| s.to_string())
                } else {
                    None
                }
            })
            .collect::<Vec<_>>()
            .join(" "),
        _ => String::new(),
    }
}

async fn run_export_conversation(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    session_id: String,
    output: PathBuf,
    format: String,
    no_color: bool,
) -> Result<()> {
    use ccboard_core::export::{
        export_conversation_to_html, export_conversation_to_json, export_conversation_to_markdown,
    };

    let store = Arc::new(DataStore::with_defaults(claude_home, project));

    // Show progress
    if !no_color {
        eprint!("Loading sessions... ");
    }

    store.initial_load().await;

    if !no_color {
        eprintln!("");
    }

    // Find session
    let all = store.recent_sessions(usize::MAX);
    let session = cli::find_by_id_or_prefix(&all, &session_id)?;

    // Load conversation content
    if !no_color {
        eprint!("Loading conversation... ");
    }

    let messages = store
        .load_session_content(&session.id)
        .await
        .context("Failed to load session content")?;

    if !no_color {
        eprintln!("{} messages", messages.len());
    }

    // Export based on format
    if !no_color {
        eprint!("Exporting to {}... ", output.display());
    }

    match format.as_str() {
        "markdown" | "md" => {
            export_conversation_to_markdown(&messages, &session, &output)
                .context("Failed to export to Markdown")?;
        }
        "json" => {
            export_conversation_to_json(&messages, &session, &output)
                .context("Failed to export to JSON")?;
        }
        "html" => {
            export_conversation_to_html(&messages, &session, &output)
                .context("Failed to export to HTML")?;
        }
        _ => {
            anyhow::bail!("Invalid format: {}. Use markdown, json, or html", format);
        }
    }

    if !no_color {
        eprintln!("");
        println!("✅ Exported to {}", output.display());
        println!("   Session: {}", session.id);
        println!("   Messages: {}", messages.len());
        println!("   Format: {}", format);
    } else {
        println!("{}", output.display());
    }

    Ok(())
}

async fn run_export_sessions(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    output: PathBuf,
    format: String,
    since: Option<String>,
    no_color: bool,
) -> Result<()> {
    use ccboard_core::{
        export_sessions_to_csv, export_sessions_to_json, export_sessions_to_markdown,
    };

    let store = DataStore::with_defaults(claude_home, project);

    if !no_color {
        eprint!("Loading sessions... ");
    }

    let report = store.initial_load().await;

    if !no_color {
        eprintln!("{} sessions", report.sessions_scanned);
    }

    // Parse and apply date filter
    let date_filter = parse_date_filter(since.as_deref())?;

    let mut sessions = store.recent_sessions(usize::MAX);
    if let Some(filter) = date_filter {
        sessions.retain(|s| {
            s.first_timestamp
                .map(|ts| filter.matches(&ts))
                .unwrap_or(false)
        });
    }

    if !no_color {
        eprint!(
            "Exporting {} sessions to {}... ",
            sessions.len(),
            output.display()
        );
    }

    match format.as_str() {
        "csv" => {
            export_sessions_to_csv(&sessions, &output)
                .context("Failed to export sessions to CSV")?;
        }
        "json" => {
            export_sessions_to_json(&sessions, &output)
                .context("Failed to export sessions to JSON")?;
        }
        "md" | "markdown" => {
            export_sessions_to_markdown(&sessions, &output)
                .context("Failed to export sessions to Markdown")?;
        }
        _ => {
            anyhow::bail!("Invalid format: {}. Use csv, json, or md", format);
        }
    }

    if !no_color {
        eprintln!("");
        println!("✅ Exported to {}", output.display());
        println!("   Sessions: {}", sessions.len());
        println!("   Format: {}", format);
    } else {
        println!("{}", output.display());
    }

    Ok(())
}

async fn run_export_stats(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    output: PathBuf,
    format: String,
    no_color: bool,
) -> Result<()> {
    use ccboard_core::{export_stats_to_csv, export_stats_to_json, export_stats_to_markdown};

    let store = DataStore::with_defaults(claude_home, project);

    if !no_color {
        eprint!("Loading statistics... ");
    }

    store.initial_load().await;

    if !no_color {
        eprintln!("");
    }

    let stats = store
        .stats()
        .ok_or_else(|| anyhow::anyhow!("No stats available (stats-cache.json not found)"))?;

    if !no_color {
        eprint!("Exporting stats to {}... ", output.display());
    }

    match format.as_str() {
        "csv" => {
            export_stats_to_csv(&stats, &output).context("Failed to export stats to CSV")?;
        }
        "json" => {
            export_stats_to_json(&stats, &output).context("Failed to export stats to JSON")?;
        }
        "md" | "markdown" => {
            export_stats_to_markdown(&stats, &output)
                .context("Failed to export stats to Markdown")?;
        }
        _ => {
            anyhow::bail!("Invalid format: {}. Use csv, json, or md", format);
        }
    }

    if !no_color {
        eprintln!("");
        println!("✅ Exported to {}", output.display());
        println!("   Sessions: {}", stats.total_sessions);
        println!("   Messages: {}", stats.total_messages);
        println!("   Format: {}", format);
    } else {
        println!("{}", output.display());
    }

    Ok(())
}

async fn run_export_billing(
    claude_home: PathBuf,
    project: Option<PathBuf>,
    output: PathBuf,
    format: String,
    no_color: bool,
) -> Result<()> {
    use ccboard_core::{
        export_billing_blocks_to_csv, export_billing_blocks_to_json,
        export_billing_blocks_to_markdown,
    };

    let store = DataStore::with_defaults(claude_home, project);

    if !no_color {
        eprint!("Loading billing data... ");
    }

    store.initial_load().await;
    store.compute_billing_blocks().await;

    if !no_color {
        eprintln!("");
    }

    let manager = store.billing_blocks();
    let block_count = manager.get_all_blocks().len();

    if !no_color {
        eprint!(
            "Exporting {} blocks to {}... ",
            block_count,
            output.display()
        );
    }

    match format.as_str() {
        "csv" => {
            export_billing_blocks_to_csv(&manager, &output)
                .context("Failed to export billing to CSV")?;
        }
        "json" => {
            export_billing_blocks_to_json(&manager, &output)
                .context("Failed to export billing to JSON")?;
        }
        "md" | "markdown" => {
            export_billing_blocks_to_markdown(&manager, &output)
                .context("Failed to export billing to Markdown")?;
        }
        _ => {
            anyhow::bail!("Invalid format: {}. Use csv, json, or md", format);
        }
    }

    if !no_color {
        eprintln!("");
        println!("✅ Exported to {}", output.display());
        println!("   Blocks: {}", block_count);
        println!("   Format: {}", format);
    } else {
        println!("{}", output.display());
    }

    Ok(())
}

async fn run_pricing_update(_no_color: bool) -> Result<()> {
    let spinner = create_spinner();
    spinner.set_message("Fetching pricing from LiteLLM...");

    match ccboard_core::pricing::update_pricing_from_litellm().await {
        Ok(count) => {
            spinner.finish_and_clear();
            println!("✓ Updated {} model prices from LiteLLM", count);
            println!("  Cache: ~/.cache/ccboard/pricing.json (TTL: 7 days)");
            Ok(())
        }
        Err(e) => {
            spinner.finish_and_clear();
            eprintln!("✗ Failed to update pricing: {}", e);
            eprintln!("  Using embedded pricing as fallback");
            Ok(())
        }
    }
}

async fn run_pricing_clear(_no_color: bool) -> Result<()> {
    match ccboard_core::pricing::clear_cache() {
        Ok(()) => {
            println!("✓ Cleared pricing cache");
            println!("  File: ~/.cache/ccboard/pricing.json");
            Ok(())
        }
        Err(e) => {
            eprintln!("✗ Failed to clear cache: {}", e);
            Err(e)
        }
    }
}

// ─────────────────────────────────────────────────────────────────────────────
// Discover handler
// ─────────────────────────────────────────────────────────────────────────────

#[allow(clippy::too_many_arguments)]
async fn run_discover(
    claude_home: std::path::PathBuf,
    project: Option<std::path::PathBuf>,
    since: String,
    min_count: usize,
    top: usize,
    llm: bool,
    model: String,
    all: bool,
    json: bool,
) -> Result<()> {
    use ccboard_core::{DiscoverConfig, SuggestionCategory};

    // Parse time window
    let since_days = parse_since_to_days(&since)?;

    // Determine project filter: if --all or no current project, scan everything
    let filter_project: Option<&str> = if all {
        None
    } else {
        project
            .as_ref()
            .and_then(|p| p.file_name())
            .and_then(|n| n.to_str())
    };

    let config = DiscoverConfig {
        since_days,
        min_count,
        top,
        all_projects: all,
    };

    if llm {
        // LLM mode: collect messages, call claude --print
        let projects_dir = claude_home.join("projects");
        let sessions_data =
            ccboard_core::discover_collect_sessions(&projects_dir, since_days, filter_project)
                .await;

        if sessions_data.is_empty() {
            eprintln!("No sessions found in the given time range.");
            return Ok(());
        }

        let total_sessions = sessions_data.len();
        let total_projects: std::collections::HashSet<&str> =
            sessions_data.iter().map(|s| s.project.as_str()).collect();
        let total_projects_count = total_projects.len();

        let suggestions = ccboard_core::discover_call_llm(&sessions_data, &model)
            .context("LLM discovery failed")?;

        let suggestions = &suggestions[..suggestions.len().min(top)];

        if json {
            println!("{}", serde_json::to_string_pretty(suggestions)?);
            return Ok(());
        }

        // Human-readable LLM output
        println!();
        println!(
            "  ccboard discover --llm — {} sessions · {} project(s) · {}",
            total_sessions,
            total_projects_count,
            if model.is_empty() { "claude" } else { &model }
        );
        println!();

        use std::collections::HashMap;
        let mut by_category: HashMap<String, Vec<&ccboard_core::LlmSuggestion>> = HashMap::new();
        for s in suggestions {
            by_category.entry(s.category.clone()).or_default().push(s);
        }

        let category_order = ["CLAUDE.md rule", "skill", "command"];
        let icons = [("CLAUDE.md rule", "📋"), ("skill", "🧩"), ("command", "")];

        for (cat, icon) in &icons {
            let items = match by_category.get(*cat) {
                Some(v) if !v.is_empty() => v,
                _ => continue,
            };
            println!("{}  {}", icon, cat.to_uppercase());
            println!("  {}", "".repeat(60));
            for item in items.iter() {
                println!("  {}", item.pattern);
                if let Some(ref rationale) = item.rationale {
                    println!("    {}", rationale);
                }
                if let Some(ref name) = item.suggested_name {
                    println!("    name: {}", name);
                }
                println!();
            }
            println!();
        }

        // Items not matching standard categories
        let known: std::collections::HashSet<&str> = category_order.iter().copied().collect();
        for (cat, items) in &by_category {
            if known.contains(cat.as_str()) {
                continue;
            }
            println!("  {}", cat.to_uppercase());
            println!("  {}", "".repeat(60));
            for item in items {
                println!("  {}", item.pattern);
                println!();
            }
        }

        println!("  Run with --json to pipe to jq for further processing.");
        println!();
        return Ok(());
    }

    // Statistical mode
    let (suggestions, total_sessions, total_projects) =
        ccboard_core::run_discover(&claude_home, &config, filter_project)
            .await
            .context("Discover failed")?;

    if suggestions.is_empty() {
        eprintln!("No recurring patterns found (try --min-count 2 or --since 180d).");
        return Ok(());
    }

    if json {
        println!("{}", serde_json::to_string_pretty(&suggestions)?);
        return Ok(());
    }

    // Human-readable output
    println!();
    println!(
        "  ccboard discover — {} sessions · {} project(s) · since {}",
        total_sessions, total_projects, since
    );
    println!();

    let category_order = [
        SuggestionCategory::ClaudeMdRule,
        SuggestionCategory::Skill,
        SuggestionCategory::Command,
    ];

    for cat in &category_order {
        let items: Vec<_> = suggestions.iter().filter(|s| &s.category == cat).collect();

        if items.is_empty() {
            continue;
        }

        println!("{}  {}", cat.icon(), cat.as_str());
        println!("  {}", "".repeat(60));

        for item in items {
            let tag = if item.cross_project {
                "  [cross-project]"
            } else {
                ""
            };
            let pct = item.session_count as f64 / total_sessions as f64 * 100.0;
            println!("  {}{}", item.pattern, tag);
            println!(
                "    {} sessions ({:.0}%) · {} occurrences · score {:.3}",
                item.session_count, pct, item.count, item.score
            );
            for ex in &item.example_sessions {
                println!("{}", &ex[..ex.len().min(36)]);
            }
            println!();
        }

        println!();
    }

    println!("  Run with --json to pipe to jq for further processing.");
    println!();

    Ok(())
}

/// Parse a `--since` string like "7d", "30d", "90d", or "YYYY-MM-DD" into days.
fn parse_since_to_days(since: &str) -> Result<u32> {
    // Try "Nd" format
    if let Some(n_str) = since.strip_suffix('d') {
        return n_str.parse::<u32>().map_err(|_| {
            anyhow::anyhow!(
                "Invalid --since value '{}'. Use 7d, 30d, 90d, or YYYY-MM-DD",
                since
            )
        });
    }

    // Try YYYY-MM-DD format
    if let Ok(date) = chrono::NaiveDate::parse_from_str(since, "%Y-%m-%d") {
        let today = chrono::Utc::now().date_naive();
        let diff = today.signed_duration_since(date).num_days();
        if diff < 0 {
            anyhow::bail!("--since date '{}' is in the future", since);
        }
        return Ok(diff as u32);
    }

    anyhow::bail!(
        "Invalid --since value '{}'. Use formats like 7d, 30d, 90d, or YYYY-MM-DD",
        since
    )
}