lean-ctx 3.7.1

Context Runtime for AI Agents with CCP. 63 MCP tools, 10 read modes, 60+ compression patterns, cross-session memory (CCP), persistent AI knowledge with temporal facts + contradiction detection, multi-agent context sharing, LITM-aware positioning, AAAK compact format, adaptive compression with Thompson Sampling bandits. Supports 24+ AI tools. Reduces LLM token consumption by up to 99%.
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
use crate::{dashboard, tui};

pub(super) fn cmd_team(rest: &[String]) {
    let sub = rest.first().map_or("help", std::string::String::as_str);
    match sub {
        "serve" => {
            #[cfg(feature = "team-server")]
            {
                let cfg_path = rest
                    .iter()
                    .enumerate()
                    .find_map(|(i, a)| {
                        if let Some(v) = a.strip_prefix("--config=") {
                            return Some(v.to_string());
                        }
                        if a == "--config" {
                            return rest.get(i + 1).cloned();
                        }
                        None
                    })
                    .unwrap_or_default();

                if cfg_path.trim().is_empty() {
                    eprintln!("Usage: lean-ctx team serve --config <path>");
                    std::process::exit(1);
                }

                let cfg = crate::http_server::team::TeamServerConfig::load(std::path::Path::new(
                    &cfg_path,
                ))
                .unwrap_or_else(|e| {
                    eprintln!("Invalid team config: {e}");
                    std::process::exit(1);
                });

                if let Err(e) = super::run_async(crate::http_server::team::serve_team(cfg)) {
                    tracing::error!("Team server error: {e}");
                    std::process::exit(1);
                }
            }
            #[cfg(not(feature = "team-server"))]
            {
                eprintln!("lean-ctx team serve is not available in this build");
                std::process::exit(1);
            }
        }
        "token" => {
            let action = rest.get(1).map_or("help", std::string::String::as_str);
            if action == "create" {
                #[cfg(feature = "team-server")]
                {
                    let args = &rest[2..];
                    let cfg_path = args
                        .iter()
                        .enumerate()
                        .find_map(|(i, a)| {
                            if let Some(v) = a.strip_prefix("--config=") {
                                return Some(v.to_string());
                            }
                            if a == "--config" {
                                return args.get(i + 1).cloned();
                            }
                            None
                        })
                        .unwrap_or_default();
                    let token_id = args
                        .iter()
                        .enumerate()
                        .find_map(|(i, a)| {
                            if let Some(v) = a.strip_prefix("--id=") {
                                return Some(v.to_string());
                            }
                            if a == "--id" {
                                return args.get(i + 1).cloned();
                            }
                            None
                        })
                        .unwrap_or_default();
                    let scopes_csv = args
                        .iter()
                        .enumerate()
                        .find_map(|(i, a)| {
                            if let Some(v) = a.strip_prefix("--scopes=") {
                                return Some(v.to_string());
                            }
                            if let Some(v) = a.strip_prefix("--scope=") {
                                return Some(v.to_string());
                            }
                            if a == "--scopes" || a == "--scope" {
                                return args.get(i + 1).cloned();
                            }
                            None
                        })
                        .unwrap_or_default();

                    if cfg_path.trim().is_empty()
                        || token_id.trim().is_empty()
                        || scopes_csv.trim().is_empty()
                    {
                        eprintln!(
                            "Usage: lean-ctx team token create --config <path> --id <id> --scopes <csv>"
                        );
                        std::process::exit(1);
                    }

                    let cfg_p = std::path::PathBuf::from(&cfg_path);
                    let mut cfg = crate::http_server::team::TeamServerConfig::load(cfg_p.as_path())
                        .unwrap_or_else(|e| {
                            eprintln!("Invalid team config: {e}");
                            std::process::exit(1);
                        });

                    let mut scopes = Vec::new();
                    for part in scopes_csv.split(',') {
                        let p = part.trim().to_ascii_lowercase();
                        if p.is_empty() {
                            continue;
                        }
                        let scope = match p.as_str() {
                            "search" => crate::http_server::team::TeamScope::Search,
                            "graph" => crate::http_server::team::TeamScope::Graph,
                            "artifacts" => crate::http_server::team::TeamScope::Artifacts,
                            "index" => crate::http_server::team::TeamScope::Index,
                            "events" => crate::http_server::team::TeamScope::Events,
                            "sessionmutations" | "session_mutations" => {
                                crate::http_server::team::TeamScope::SessionMutations
                            }
                            "knowledge" => crate::http_server::team::TeamScope::Knowledge,
                            "audit" => crate::http_server::team::TeamScope::Audit,
                            _ => {
                                eprintln!("Unknown scope: {p}. Valid: search, graph, artifacts, index, events, sessionmutations, knowledge, audit");
                                std::process::exit(1);
                            }
                        };
                        if !scopes.contains(&scope) {
                            scopes.push(scope);
                        }
                    }
                    if scopes.is_empty() {
                        eprintln!("At least 1 scope is required");
                        std::process::exit(1);
                    }

                    let (token, hash) =
                        crate::http_server::team::create_token().unwrap_or_else(|e| {
                            eprintln!("Token generation failed: {e}");
                            std::process::exit(1);
                        });

                    cfg.tokens.push(crate::http_server::team::TeamTokenConfig {
                        id: token_id,
                        sha256_hex: hash,
                        scopes,
                    });

                    cfg.save(cfg_p.as_path()).unwrap_or_else(|e| {
                        eprintln!("Failed to write config: {e}");
                        std::process::exit(1);
                    });

                    println!("{token}");
                    return;
                }

                #[cfg(not(feature = "team-server"))]
                {
                    eprintln!("lean-ctx team token is not available in this build");
                    std::process::exit(1);
                }
            }
            eprintln!("Usage: lean-ctx team token create --config <path> --id <id> --scopes <csv>");
            std::process::exit(1);
        }
        "sync" => {
            #[cfg(feature = "team-server")]
            {
                let args = &rest[1..];
                let cfg_path = args
                    .iter()
                    .enumerate()
                    .find_map(|(i, a)| {
                        if let Some(v) = a.strip_prefix("--config=") {
                            return Some(v.to_string());
                        }
                        if a == "--config" {
                            return args.get(i + 1).cloned();
                        }
                        None
                    })
                    .unwrap_or_default();
                if cfg_path.trim().is_empty() {
                    eprintln!("Usage: lean-ctx team sync --config <path> [--workspace <id>]");
                    std::process::exit(1);
                }
                let only_ws = args.iter().enumerate().find_map(|(i, a)| {
                    if let Some(v) = a.strip_prefix("--workspace=") {
                        return Some(v.to_string());
                    }
                    if let Some(v) = a.strip_prefix("--workspace-id=") {
                        return Some(v.to_string());
                    }
                    if a == "--workspace" || a == "--workspace-id" {
                        return args.get(i + 1).cloned();
                    }
                    None
                });

                let cfg = crate::http_server::team::TeamServerConfig::load(std::path::Path::new(
                    &cfg_path,
                ))
                .unwrap_or_else(|e| {
                    eprintln!("Invalid team config: {e}");
                    std::process::exit(1);
                });

                for ws in &cfg.workspaces {
                    if let Some(ref only) = only_ws {
                        if ws.id != *only {
                            continue;
                        }
                    }
                    let git_dir = ws.root.join(".git");
                    if !git_dir.exists() {
                        eprintln!(
                            "workspace '{}' root is not a git repo: {}",
                            ws.id,
                            ws.root.display()
                        );
                        std::process::exit(1);
                    }
                    let status = std::process::Command::new("git")
                        .arg("-C")
                        .arg(&ws.root)
                        .args(["fetch", "--all", "--prune"])
                        .status()
                        .unwrap_or_else(|e| {
                            eprintln!("git fetch failed for workspace '{}': {e}", ws.id);
                            std::process::exit(1);
                        });
                    if !status.success() {
                        eprintln!(
                            "git fetch failed for workspace '{}' (exit={})",
                            ws.id,
                            status.code().unwrap_or(1)
                        );
                        std::process::exit(1);
                    }
                }
            }
            #[cfg(not(feature = "team-server"))]
            {
                eprintln!("lean-ctx team sync is not available in this build");
                std::process::exit(1);
            }
        }
        _ => {
            eprintln!(
                "Usage:\n  lean-ctx team serve --config <path>\n  lean-ctx team token create --config <path> --id <id> --scopes <csv>\n  lean-ctx team sync --config <path> [--workspace <id>]"
            );
            std::process::exit(1);
        }
    }
}

pub(super) fn cmd_dashboard(rest: &[String]) {
    if rest.iter().any(|a| a == "--help" || a == "-h") {
        println!("Usage: lean-ctx dashboard [--port=N] [--host=H] [--project=PATH]");
        println!("Examples:");
        println!("  lean-ctx dashboard");
        println!("  lean-ctx dashboard --port=3333");
        println!("  lean-ctx dashboard --host=0.0.0.0");
        return;
    }
    let port = rest
        .iter()
        .find_map(|p| p.strip_prefix("--port=").or_else(|| p.strip_prefix("-p=")))
        .and_then(|p| p.parse().ok());
    let host = rest
        .iter()
        .find_map(|p| p.strip_prefix("--host=").or_else(|| p.strip_prefix("-H=")))
        .map(String::from);
    let project = rest
        .iter()
        .find_map(|p| p.strip_prefix("--project="))
        .map(String::from);
    if let Some(ref p) = project {
        std::env::set_var("LEAN_CTX_DASHBOARD_PROJECT", p);
    }
    super::spawn_proxy_if_needed();
    super::run_async(dashboard::start(port, host));
}

pub(super) fn cmd_watch(rest: &[String]) {
    if rest.iter().any(|a| a == "--help" || a == "-h") {
        println!("Usage: lean-ctx watch");
        println!("  Live TUI dashboard (real-time event stream).");
        return;
    }
    if let Err(e) = tui::run() {
        tracing::error!("TUI error: {e}");
        std::process::exit(1);
    }
}

pub(super) fn cmd_proxy(rest: &[String]) {
    #[cfg(feature = "http-server")]
    {
        let sub = rest.first().map_or("help", std::string::String::as_str);
        match sub {
            "start" => {
                let port: u16 = rest
                    .iter()
                    .find_map(|p| p.strip_prefix("--port=").or_else(|| p.strip_prefix("-p=")))
                    .and_then(|p| p.parse().ok())
                    .unwrap_or_else(crate::proxy_setup::default_port);
                let autostart = rest.iter().any(|a| a == "--autostart");
                if autostart {
                    crate::proxy_autostart::install(port, false);
                    return;
                }
                if let Err(e) = super::run_async(crate::proxy::start_proxy(port)) {
                    tracing::error!("Proxy error: {e}");
                    std::process::exit(1);
                }
            }
            "stop" => {
                let port: u16 = rest
                    .iter()
                    .find_map(|p| p.strip_prefix("--port="))
                    .and_then(|p| p.parse().ok())
                    .unwrap_or_else(crate::proxy_setup::default_port);
                let health_url = format!("http://127.0.0.1:{port}/health");
                match ureq::get(&health_url).call() {
                    Ok(resp) => {
                        if let Ok(body) = resp.into_body().read_to_string() {
                            if let Some(pid_str) = body
                                .split("pid\":")
                                .nth(1)
                                .and_then(|s| s.split([',', '}']).next())
                            {
                                if let Ok(pid) = pid_str.trim().parse::<u32>() {
                                    let _ = crate::ipc::process::terminate_gracefully(pid);
                                    std::thread::sleep(std::time::Duration::from_millis(500));
                                    if crate::ipc::process::is_alive(pid) {
                                        let _ = crate::ipc::process::force_kill(pid);
                                    }
                                    println!("Proxy on port {port} stopped (PID {pid}).");
                                    return;
                                }
                            }
                        }
                        println!("Proxy on port {port} running but could not parse PID. Use `lean-ctx stop` to kill all.");
                    }
                    Err(_) => {
                        println!("No proxy running on port {port}.");
                    }
                }
            }
            "status" => {
                let port: u16 = rest
                    .iter()
                    .find_map(|p| p.strip_prefix("--port="))
                    .and_then(|p| p.parse().ok())
                    .unwrap_or_else(crate::proxy_setup::default_port);
                let cfg = crate::core::config::Config::load();
                println!("lean-ctx proxy:");
                match cfg.proxy_enabled {
                    Some(true) => println!("  Config:  enabled"),
                    Some(false) => println!("  Config:  disabled"),
                    None => println!("  Config:  undecided (not yet configured)"),
                }
                println!("  Port:    {port}");
                if let Ok(resp) = ureq::get(&format!("http://127.0.0.1:{port}/status")).call() {
                    let body = resp.into_body().read_to_string().unwrap_or_default();
                    println!("  Process: running");
                    if let Ok(v) = serde_json::from_str::<serde_json::Value>(&body) {
                        println!("  Requests:    {}", v["requests_total"]);
                        println!("  Compressed:  {}", v["requests_compressed"]);
                        println!("  Tokens saved: {}", v["tokens_saved"]);
                        println!(
                            "  Compression: {}%",
                            v["compression_ratio_pct"].as_str().unwrap_or("0.0")
                        );
                    }
                } else {
                    println!("  Process: not running");
                }
                if cfg.proxy_enabled == Some(false) || cfg.proxy_enabled.is_none() {
                    println!();
                    println!("  Enable: lean-ctx proxy enable");

                    let home = dirs::home_dir().unwrap_or_default();
                    if crate::proxy_setup::has_stale_proxy_url(&home) {
                        println!();
                        println!("  \x1b[33m⚠ WARNING: Claude Code ANTHROPIC_BASE_URL points to the local proxy,\x1b[0m");
                        println!("  \x1b[33m  but proxy is not enabled. This causes 401 auth failures.\x1b[0m");
                        println!("  Fix:  lean-ctx proxy cleanup   (remove stale URL)");
                        println!("        lean-ctx proxy enable    (enable the proxy)");
                    }
                }
            }
            "enable" => {
                let force = rest.iter().any(|a| a == "--force");
                let mut cfg = crate::core::config::Config::load();
                cfg.proxy_enabled = Some(true);
                let _ = cfg.save();

                let port = crate::proxy_setup::default_port();
                crate::proxy_autostart::install(port, false);
                std::thread::sleep(std::time::Duration::from_millis(500));

                let home = dirs::home_dir().unwrap_or_default();
                crate::proxy_setup::install_proxy_env_unchecked(&home, port, false, force);
                println!(
                    "\x1b[32m✓\x1b[0m Proxy enabled on port {port}. LLM requests will be compressed."
                );
            }
            "disable" => {
                let mut cfg = crate::core::config::Config::load();
                cfg.proxy_enabled = Some(false);
                let _ = cfg.save();

                crate::proxy_autostart::uninstall(false);
                let home = dirs::home_dir().unwrap_or_default();
                crate::proxy_setup::uninstall_proxy_env(&home, false);

                println!("\x1b[32m✓\x1b[0m Proxy disabled. Original endpoint restored.");
                println!("  Re-enable anytime: lean-ctx proxy enable");
            }
            "cleanup" => {
                let home = dirs::home_dir().unwrap_or_default();
                let removed = crate::proxy_setup::cleanup_stale_proxy_env(&home);
                if removed > 0 {
                    println!("\x1b[32m✓\x1b[0m Cleaned up {removed} stale proxy URL(s).");
                    println!("  Restart your AI tool for changes to take effect.");
                } else {
                    println!("  No stale proxy URLs found. Nothing to clean up.");
                }
            }
            _ => {
                println!(
                    "Usage: lean-ctx proxy <start|stop|status|enable|disable|cleanup> [--port=4444]"
                );
            }
        }
    }
    #[cfg(not(feature = "http-server"))]
    {
        eprintln!("lean-ctx proxy is not available in this build");
        std::process::exit(1);
    }
}

pub(super) fn cmd_daemon(rest: &[String]) {
    let sub = rest.first().map_or("status", std::string::String::as_str);
    match sub {
        "enable" => {
            crate::daemon_autostart::install(false);
            println!(
                "\x1b[32m✓\x1b[0m Daemon autostart enabled. Will start on login and restart if stopped."
            );
        }
        "disable" => {
            crate::daemon_autostart::uninstall(false);
            println!("\x1b[32m✓\x1b[0m Daemon autostart disabled.");
        }
        "start" => {
            if let Err(e) = crate::daemon::start_daemon(&rest[1..]) {
                eprintln!("Error: {e}");
                std::process::exit(1);
            }
        }
        "stop" => {
            crate::daemon_autostart::stop();
            match crate::daemon::stop_daemon() {
                Ok(()) => println!("Daemon stopped."),
                Err(e) => eprintln!("Error: {e}"),
            }
        }
        "status" => {
            if crate::daemon::is_daemon_running() {
                let pid = crate::daemon::read_daemon_pid().unwrap_or(0);
                println!("lean-ctx daemon:");
                println!("  Status:    running (PID {pid})");
                println!(
                    "  Autostart: {}",
                    if crate::daemon_autostart::is_installed() {
                        "enabled"
                    } else {
                        "not installed (run: lean-ctx daemon enable)"
                    }
                );
            } else {
                println!("lean-ctx daemon:");
                println!("  Status:    not running");
                println!(
                    "  Autostart: {}",
                    if crate::daemon_autostart::is_installed() {
                        "enabled"
                    } else {
                        "not installed"
                    }
                );
                println!();
                println!("  Start:     lean-ctx daemon start");
                println!("  Autostart: lean-ctx daemon enable");
            }
        }
        _ => {
            println!("Usage: lean-ctx daemon <start|stop|status|enable|disable>");
        }
    }
}

pub(super) fn cmd_serve(rest: &[String]) {
    #[cfg(feature = "http-server")]
    {
        let mut cfg = crate::http_server::HttpServerConfig::default();
        let mut daemon_mode = false;
        let mut stop_mode = false;
        let mut status_mode = false;
        let mut foreground_daemon = false;
        let mut multi_roots: Vec<(String, Option<String>)> = Vec::new();
        let mut rrf_k: Option<f64> = None;
        let mut i = 0;
        while i < rest.len() {
            match rest[i].as_str() {
                "--daemon" | "-d" => daemon_mode = true,
                "--stop" => stop_mode = true,
                "--status" => status_mode = true,
                "--_foreground-daemon" => foreground_daemon = true,
                "--host" | "-H" => {
                    i += 1;
                    if i < rest.len() {
                        cfg.host.clone_from(&rest[i]);
                    }
                }
                arg if arg.starts_with("--host=") => {
                    cfg.host = arg["--host=".len()..].to_string();
                }
                "--port" | "-p" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(p) = rest[i].parse::<u16>() {
                            cfg.port = p;
                        }
                    }
                }
                arg if arg.starts_with("--port=") => {
                    if let Ok(p) = arg["--port=".len()..].parse::<u16>() {
                        cfg.port = p;
                    }
                }
                "--project-root" => {
                    i += 1;
                    if i < rest.len() {
                        cfg.project_root = std::path::PathBuf::from(&rest[i]);
                    }
                }
                arg if arg.starts_with("--project-root=") => {
                    cfg.project_root = std::path::PathBuf::from(&arg["--project-root=".len()..]);
                }
                "--auth-token" => {
                    i += 1;
                    if i < rest.len() {
                        cfg.auth_token = Some(rest[i].clone());
                    }
                }
                arg if arg.starts_with("--auth-token=") => {
                    cfg.auth_token = Some(arg["--auth-token=".len()..].to_string());
                }
                "--stateful" => cfg.stateful_mode = true,
                "--stateless" => cfg.stateful_mode = false,
                "--root" => {
                    i += 1;
                    if i < rest.len() {
                        multi_roots.push((rest[i].clone(), None));
                    }
                }
                arg if arg.starts_with("--root=") => {
                    let val = arg["--root=".len()..].to_string();
                    if let Some((path, alias)) = val.split_once(':') {
                        multi_roots.push((path.to_string(), Some(alias.to_string())));
                    } else {
                        multi_roots.push((val, None));
                    }
                }
                "--rrf-k" => {
                    i += 1;
                    if i < rest.len() {
                        rrf_k = rest[i].parse::<f64>().ok();
                    }
                }
                arg if arg.starts_with("--rrf-k=") => {
                    rrf_k = arg["--rrf-k=".len()..].parse::<f64>().ok();
                }
                "--json" => cfg.json_response = true,
                "--sse" => cfg.json_response = false,
                "--disable-host-check" => cfg.disable_host_check = true,
                "--allowed-host" => {
                    i += 1;
                    if i < rest.len() {
                        cfg.allowed_hosts.push(rest[i].clone());
                    }
                }
                arg if arg.starts_with("--allowed-host=") => {
                    cfg.allowed_hosts
                        .push(arg["--allowed-host=".len()..].to_string());
                }
                "--max-body-bytes" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(n) = rest[i].parse::<usize>() {
                            cfg.max_body_bytes = n;
                        }
                    }
                }
                arg if arg.starts_with("--max-body-bytes=") => {
                    if let Ok(n) = arg["--max-body-bytes=".len()..].parse::<usize>() {
                        cfg.max_body_bytes = n;
                    }
                }
                "--max-concurrency" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(n) = rest[i].parse::<usize>() {
                            cfg.max_concurrency = n;
                        }
                    }
                }
                arg if arg.starts_with("--max-concurrency=") => {
                    if let Ok(n) = arg["--max-concurrency=".len()..].parse::<usize>() {
                        cfg.max_concurrency = n;
                    }
                }
                "--max-rps" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(n) = rest[i].parse::<u32>() {
                            cfg.max_rps = n;
                        }
                    }
                }
                arg if arg.starts_with("--max-rps=") => {
                    if let Ok(n) = arg["--max-rps=".len()..].parse::<u32>() {
                        cfg.max_rps = n;
                    }
                }
                "--rate-burst" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(n) = rest[i].parse::<u32>() {
                            cfg.rate_burst = n;
                        }
                    }
                }
                arg if arg.starts_with("--rate-burst=") => {
                    if let Ok(n) = arg["--rate-burst=".len()..].parse::<u32>() {
                        cfg.rate_burst = n;
                    }
                }
                "--request-timeout-ms" => {
                    i += 1;
                    if i < rest.len() {
                        if let Ok(n) = rest[i].parse::<u64>() {
                            cfg.request_timeout_ms = n;
                        }
                    }
                }
                arg if arg.starts_with("--request-timeout-ms=") => {
                    if let Ok(n) = arg["--request-timeout-ms=".len()..].parse::<u64>() {
                        cfg.request_timeout_ms = n;
                    }
                }
                "--help" | "-h" => {
                    eprintln!(
                        "Usage: lean-ctx serve [--host H] [--port N] [--project-root DIR] [--daemon] [--stop] [--status]\\n\\
                         \\n\\
                         Options:\\n\\
                           --daemon, -d          Start as background daemon (UDS)\\n\\
                           --stop                Stop running daemon\\n\\
                           --status              Show daemon status\\n\\
                           --host, -H            Bind host (default: 127.0.0.1)\\n\\
                           --port, -p            Bind port (default: 8080)\\n\\
                           --project-root        Resolve relative paths against this root (default: cwd)\\n\\
                           --root PATH[:ALIAS]   Add a repo root for multi-repo mode (repeatable)\\n\\
                           --rrf-k N             RRF fusion parameter (default: 60.0)\\n\\
                           --auth-token          Require Authorization: Bearer <token> (required for non-loopback binds)\\n\\
                           --stateful/--stateless  Streamable HTTP session mode (default: stateless)\\n\\
                           --json/--sse          Response framing in stateless mode (default: json)\\n\\
                           --max-body-bytes      Max request body size in bytes (default: 2097152)\\n\\
                           --max-concurrency     Max concurrent requests (default: 32)\\n\\
                           --max-rps             Max requests/sec (global, default: 50)\\n\\
                           --rate-burst          Rate limiter burst (global, default: 100)\\n\\
                           --request-timeout-ms  REST tool-call timeout (default: 30000)\\n\\
                           --allowed-host        Add allowed Host header (repeatable)\\n\\
                           --disable-host-check  Disable Host header validation (unsafe)"
                    );
                    return;
                }
                _ => {}
            }
            i += 1;
        }

        if !multi_roots.is_empty() {
            if let Err(e) = crate::core::multi_repo::init_with_roots(&multi_roots, rrf_k) {
                eprintln!("Multi-repo init error: {e}");
                std::process::exit(1);
            }
            eprintln!("Multi-repo mode: {} roots configured", multi_roots.len());
        }

        if stop_mode {
            crate::daemon_autostart::stop();
            if let Err(e) = crate::daemon::stop_daemon() {
                eprintln!("Error: {e}");
                std::process::exit(1);
            }
            return;
        }

        if status_mode {
            println!("{}", crate::daemon::daemon_status());
            return;
        }

        if daemon_mode {
            if let Err(e) = crate::daemon::start_daemon(rest) {
                eprintln!("Error: {e}");
                std::process::exit(1);
            }
            return;
        }

        if foreground_daemon {
            if let Err(e) = crate::daemon::init_foreground_daemon() {
                eprintln!("Error writing PID file: {e}");
                std::process::exit(1);
            }
            let addr = crate::daemon::daemon_addr();
            if let Err(e) = super::run_async(crate::http_server::serve_ipc(cfg.clone(), addr)) {
                tracing::error!("Daemon server error: {e}");
                crate::daemon::cleanup_daemon_files();
                std::process::exit(1);
            }
            crate::daemon::cleanup_daemon_files();
            return;
        }

        if cfg.auth_token.is_none() {
            if let Ok(v) = std::env::var("LEAN_CTX_HTTP_TOKEN") {
                if !v.trim().is_empty() {
                    cfg.auth_token = Some(v);
                }
            }
        }

        if let Err(e) = super::run_async(crate::http_server::serve(cfg)) {
            tracing::error!("HTTP server error: {e}");
            std::process::exit(1);
        }
    }
    #[cfg(not(feature = "http-server"))]
    {
        eprintln!("lean-ctx serve is not available in this build");
        std::process::exit(1);
    }
}

/// Reads a `--data-source <id>` / `--data-source=<id>` flag, defaulting to "jira".
fn data_source_flag(args: &[String]) -> String {
    args.iter()
        .enumerate()
        .find_map(|(i, a)| {
            if let Some(v) = a.strip_prefix("--data-source=") {
                return Some(v.to_string());
            }
            if a == "--data-source" {
                return args.get(i + 1).cloned();
            }
            None
        })
        .map(|v| v.trim().to_string())
        .filter(|v| !v.is_empty())
        .unwrap_or_else(|| "jira".to_string())
}

fn provider_usage() {
    eprintln!(
        "Usage: lean-ctx provider <command>\n\n\
         Commands:\n  \
         auth jira [--data-source <id>]     Connect a Jira Cloud site via OAuth 2.0 (3LO)\n  \
         logout jira [--data-source <id>]   Remove stored Jira OAuth credentials\n  \
         list                               List connected Jira OAuth data sources\n\n\
         Jira OAuth requires your own Atlassian app credentials in the environment:\n  \
         JIRA_OAUTH_CLIENT_ID, JIRA_OAUTH_CLIENT_SECRET\n  \
         (optional) JIRA_OAUTH_SCOPES — default: \"read:jira-work read:jira-user offline_access\"\n\n\
         Register a free app at https://developer.atlassian.com/console/myapps/"
    );
}

pub(super) fn cmd_provider(rest: &[String]) {
    use crate::core::providers::jira_oauth;

    let sub = rest.first().map_or("help", std::string::String::as_str);
    match sub {
        "auth" | "login" | "connect" => {
            let target = rest.get(1).map_or("", std::string::String::as_str);
            if !target.eq_ignore_ascii_case("jira") {
                eprintln!("Only 'jira' is supported for OAuth today.\n");
                provider_usage();
                std::process::exit(1);
            }
            let args: &[String] = if rest.len() > 2 { &rest[2..] } else { &[] };
            let data_source = data_source_flag(args);
            match jira_oauth::run_auth_flow(&data_source) {
                Ok(()) => {}
                Err(e) => {
                    eprintln!("\x1b[31m✗\x1b[0m Jira OAuth failed: {e}");
                    std::process::exit(1);
                }
            }
        }
        "logout" | "disconnect" => {
            let target = rest.get(1).map_or("", std::string::String::as_str);
            if !target.eq_ignore_ascii_case("jira") {
                provider_usage();
                std::process::exit(1);
            }
            let args: &[String] = if rest.len() > 2 { &rest[2..] } else { &[] };
            let data_source = data_source_flag(args);
            match jira_oauth::remove_credential(&data_source) {
                Ok(true) => {
                    println!(
                        "\x1b[32m✓\x1b[0m Removed Jira OAuth credentials for '{data_source}'."
                    );
                }
                Ok(false) => {
                    println!("No stored Jira OAuth credentials for '{data_source}'.");
                }
                Err(e) => {
                    eprintln!("\x1b[31m✗\x1b[0m {e}");
                    std::process::exit(1);
                }
            }
        }
        "list" | "ls" | "status" => {
            let conns = jira_oauth::list_connections();
            if conns.is_empty() {
                println!("No Jira OAuth data sources connected. Run: lean-ctx provider auth jira");
            } else {
                println!("Connected Jira OAuth data sources:");
                for c in conns {
                    println!("{c}");
                }
            }
        }
        _ => provider_usage(),
    }
}