memex-cli 0.2.0

A CLI tool for organizing AI-assisted development into a versioned, navigable DAG of conversation nodes.
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
use assert_cmd::Command;
use predicates::prelude::*;
use std::fs;
use tempfile::TempDir;

fn memex() -> Command {
    Command::cargo_bin("memex").unwrap()
}

/// Initialize a memex repo in `dir` using stdin so no editor is opened.
fn init_in(dir: &TempDir) {
    memex()
        .current_dir(dir.path())
        .arg("init")
        .write_stdin("My test project\n")
        .assert()
        .success();
}

/// Create a node with the given goal and return its short ID (first 8 chars).
fn create_node(dir: &TempDir, goal: &str) -> String {
    let output = memex()
        .current_dir(dir.path())
        .args(["node", "create", "--goal", goal])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();
    let text = String::from_utf8(output).unwrap();
    // "Created node: <full-uuid>\n"
    text.lines()
        .find(|l| l.starts_with("Created node:"))
        .unwrap()
        .split_whitespace()
        .last()
        .unwrap()[..8]
        .to_string()
}

// ─── Init ────────────────────────────────────────────────────────────────────

#[test]
fn init_creates_memex_directory() {
    let tmp = TempDir::new().unwrap();
    memex()
        .current_dir(tmp.path())
        .arg("init")
        .write_stdin("My project\n")
        .assert()
        .success()
        .stdout(predicate::str::contains("Initialized .memex/"));

    assert!(tmp.path().join(".memex").is_dir());
    assert!(tmp.path().join(".memex/nodes").is_dir());
    assert!(tmp.path().join(".memex/config.toml").exists());
    assert!(tmp.path().join(".memex/.gitignore").exists());
    let gitignore = fs::read_to_string(tmp.path().join(".memex/.gitignore")).unwrap();
    assert!(gitignore.contains("state.json"));
}

#[test]
fn init_does_not_overwrite_existing_gitignore() {
    let tmp = TempDir::new().unwrap();
    // Pre-create the .memex dir and a custom .gitignore before init
    let memex_dir = tmp.path().join(".memex");
    fs::create_dir_all(&memex_dir).unwrap();
    fs::write(memex_dir.join(".gitignore"), "custom-content\n").unwrap();

    // init should skip writing .gitignore because it already exists
    memex()
        .current_dir(tmp.path())
        .arg("init")
        .write_stdin("My project\n")
        .assert()
        .success();

    let content = fs::read_to_string(memex_dir.join(".gitignore")).unwrap();
    assert_eq!(content, "custom-content\n");
}

#[test]
fn init_twice_warns_already_exists() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    // Second init should exit 0 but warn on stderr
    memex()
        .current_dir(tmp.path())
        .arg("init")
        .write_stdin("irrelevant\n")
        .assert()
        .success()
        .stderr(predicate::str::contains("already"));
}

#[test]
fn command_without_init_fails() {
    let tmp = TempDir::new().unwrap();
    memex()
        .current_dir(tmp.path())
        .args(["node", "list"])
        .assert()
        .failure()
        .stderr(predicate::str::contains("No .memex directory found"));
}

// ─── Node create ─────────────────────────────────────────────────────────────

#[test]
fn node_create_with_goal_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    let short_id = create_node(&tmp, "Build a search index");

    // Node file exists on disk
    let nodes_dir = tmp.path().join(".memex/nodes");
    let entries: Vec<_> = fs::read_dir(&nodes_dir)
        .unwrap()
        // init creates a root node, so look for the one matching our short_id
        .filter_map(|e| e.ok())
        .filter(|e| e.file_name().to_string_lossy().starts_with(&short_id))
        .collect();
    assert_eq!(entries.len(), 1, "expected node file for {short_id}");
}

#[test]
fn node_create_sets_active() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "My active task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("My active task"));
}

#[test]
fn node_create_with_parent_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    let parent_id = create_node(&tmp, "Parent node");
    let child_id = create_node(&tmp, "Child node");
    // Re-create child with explicit parent (use `node create` with parent pointing to parent_id)
    // (The previous create_node already set parent to the current active; re-verify via graph view)
    let _ = child_id;

    memex()
        .current_dir(tmp.path())
        .args(["graph", "view"])
        .assert()
        .success()
        .stdout(predicate::str::contains(&parent_id));
}

#[test]
fn node_create_unknown_parent_fails() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    memex()
        .current_dir(tmp.path())
        .args(["node", "create", "--parent", "00000000", "--goal", "Orphan"])
        .assert()
        .failure();
}

// ─── Node edit ───────────────────────────────────────────────────────────────

#[test]
fn node_edit_goal_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Original goal");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--goal", "Updated goal"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Updated goal"))
        .stdout(predicate::str::contains("Original goal").not());
}

#[test]
fn node_edit_decision_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Planning");

    memex()
        .current_dir(tmp.path())
        .args([
            "node",
            "edit",
            "--decision",
            "Use PostgreSQL",
            "--decision",
            "Use Rust",
        ])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Use PostgreSQL"))
        .stdout(predicate::str::contains("Use Rust"));
}

#[test]
fn node_edit_artifact_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Work");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--artifact", "src/main.rs"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("src/main.rs"));
}

#[test]
fn node_edit_open_thread_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Design");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--open-thread", "How to handle auth?"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("How to handle auth?"));
}

#[test]
fn node_edit_summary_and_goal_conflict() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task");

    memex()
        .current_dir(tmp.path())
        .args([
            "node",
            "edit",
            "--summary",
            r#"goal = "Full TOML"
decisions = []
rejected_approaches = []
open_threads = []
key_artifacts = []"#,
            "--goal",
            "conflicting",
        ])
        .assert()
        .failure()
        .stderr(
            predicate::str::contains("cannot be combined").or(predicate::str::contains("conflict")),
        );
}

#[test]
fn node_edit_empty_goal_fails() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--goal", ""])
        .assert()
        .failure()
        .stderr(predicate::str::contains("cannot be empty").or(predicate::str::contains("empty")));
}

// ─── Node auto ───────────────────────────────────────────────────────────────

#[test]
fn node_auto_dry_run_prints_diff_without_writing() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Auto-target");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin"])
        .write_stdin(
            r#"{"decisions":["Use SQLite"],"open_threads":["audit fts5"],"key_artifacts":["src/db.rs"]}"#,
        )
        .assert()
        .success()
        .stdout(predicate::str::contains("+ Decisions:"))
        .stdout(predicate::str::contains("Use SQLite"))
        .stdout(predicate::str::contains("audit fts5"))
        .stdout(predicate::str::contains("src/db.rs"))
        .stdout(predicate::str::contains("Run with --apply"));

    // Verify nothing was written: the show output should not contain the
    // dry-run additions.
    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Use SQLite").not())
        .stdout(predicate::str::contains("audit fts5").not());
}

#[test]
fn node_auto_apply_writes_all_fields() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Auto-apply");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply"])
        .write_stdin(
            r#"{
              "decisions":["Use SQLite"],
              "rejected_approaches":[{"description":"Postgres","reason":"Too heavyweight"}],
              "open_threads":["audit fts5"],
              "key_artifacts":["src/db.rs"]
            }"#,
        )
        .assert()
        .success()
        .stdout(predicate::str::contains("Applied 1 decision"));

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Use SQLite"))
        .stdout(predicate::str::contains("Postgres — Too heavyweight"))
        .stdout(predicate::str::contains("audit fts5"))
        .stdout(predicate::str::contains("src/db.rs"));
}

#[test]
fn node_auto_apply_is_idempotent() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Idempotent");

    let payload = r#"{"decisions":["Use SQLite"],"key_artifacts":["src/db.rs"]}"#;
    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply"])
        .write_stdin(payload)
        .assert()
        .success()
        .stdout(predicate::str::contains("Applied"));

    // Second apply with identical payload: no-op.
    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply"])
        .write_stdin(payload)
        .assert()
        .success()
        .stdout(predicate::str::contains("No changes"));
}

#[test]
fn node_auto_dedupes_on_normalized_text() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Dedupe");

    // First write the canonical form.
    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply"])
        .write_stdin(r#"{"decisions":["Use SQLite for storage"]}"#)
        .assert()
        .success();

    // Re-emit with extra whitespace, different case, and a trailing
    // period. Normalized dedupe should treat it as a duplicate.
    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply"])
        .write_stdin(r#"{"decisions":["  use   sqlite for storage. "]}"#)
        .assert()
        .success()
        .stdout(predicate::str::contains("No changes"));
}

#[test]
fn node_auto_requires_from_stdin() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Needs-flag");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto"])
        .assert()
        .failure()
        .stderr(predicate::str::contains("--from-stdin is required"));
}

#[test]
fn node_auto_empty_payload_errors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Empty");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin"])
        .write_stdin("")
        .assert()
        .failure()
        .stderr(predicate::str::contains("Empty payload"));
}

#[test]
fn node_auto_invalid_json_errors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Bad-json");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin"])
        .write_stdin("not json")
        .assert()
        .failure()
        .stderr(predicate::str::contains("Failed to parse JSON"));
}

#[test]
fn node_auto_apply_and_dry_run_are_exclusive() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Conflict");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin", "--apply", "--dry-run"])
        .write_stdin("{}")
        .assert()
        .failure()
        .stderr(predicate::str::contains("cannot be used with"));
}

#[test]
fn node_auto_targets_explicit_id() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    let target = create_node(&tmp, "Target");
    // Make a second node active so the auto must use the explicit id arg.
    create_node(&tmp, "Different active");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", &target, "--from-stdin", "--apply"])
        .write_stdin(r#"{"decisions":["Routed to target"]}"#)
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show", &target])
        .assert()
        .success()
        .stdout(predicate::str::contains("Routed to target"));
}

#[test]
fn node_auto_no_active_node_errors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    // No node create → init left active pointing at the root, so call auto
    // against a node id we know does not exist.
    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "deadbeef", "--from-stdin"])
        .write_stdin(r#"{"decisions":["x"]}"#)
        .assert()
        .failure();
}

#[test]
fn node_auto_partial_payload_only_new_section() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Partial");

    memex()
        .current_dir(tmp.path())
        .args(["node", "auto", "--from-stdin"])
        .write_stdin(r#"{"open_threads":["follow up later"]}"#)
        .assert()
        .success()
        .stdout(predicate::str::contains("+ Open Threads:"))
        .stdout(predicate::str::contains("+ Decisions:").not())
        .stdout(predicate::str::contains("+ Rejected Approaches:").not())
        .stdout(predicate::str::contains("+ Key Artifacts:").not());
}

// ─── Node status ─────────────────────────────────────────────────────────────

#[test]
fn node_resolve_marks_resolved() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task to resolve");

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Resolved"));
}

#[test]
fn node_resolve_already_resolved_errors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve"])
        .assert()
        .failure()
        .stderr(
            predicate::str::contains("already resolved").or(predicate::str::contains("already")),
        );
}

#[test]
fn node_abandon_marks_abandoned() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Abandoned task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "abandon"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Abandoned"));
}

#[test]
fn node_reopen_resolved_node() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve"])
        .assert()
        .success();
    memex()
        .current_dir(tmp.path())
        .args(["node", "reopen"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Active"));
}

#[test]
fn node_reopen_already_active_errors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task");

    memex()
        .current_dir(tmp.path())
        .args(["node", "reopen"])
        .assert()
        .failure()
        .stderr(predicate::str::contains("already active").or(predicate::str::contains("already")));
}

// ─── Node resolve/abandon --force ────────────────────────────────────────────

#[test]
fn node_resolve_with_force_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task to force-resolve");

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve", "--force"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Resolved"));
}

#[test]
fn node_resolve_with_short_force_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task to force-resolve short");

    memex()
        .current_dir(tmp.path())
        .args(["node", "resolve", "-y"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Resolved"));
}

#[test]
fn node_abandon_with_force_flag() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Task to force-abandon");

    memex()
        .current_dir(tmp.path())
        .args(["node", "abandon", "--force"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["node", "show"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Abandoned"));
}

// ─── Node show / list ────────────────────────────────────────────────────────

#[test]
fn node_show_by_short_id() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    let short_id = create_node(&tmp, "Specific node");

    memex()
        .current_dir(tmp.path())
        .args(["node", "show", &short_id])
        .assert()
        .success()
        .stdout(predicate::str::contains("Specific node"));
}

#[test]
fn node_list_shows_all_nodes() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Alpha node");
    create_node(&tmp, "Beta node");

    memex()
        .current_dir(tmp.path())
        .args(["node", "list"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Alpha node"))
        .stdout(predicate::str::contains("Beta node"));
}

#[test]
fn node_list_marks_active() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Active node");

    let output = memex()
        .current_dir(tmp.path())
        .args(["node", "list"])
        .assert()
        .success()
        .get_output()
        .stdout
        .clone();

    let text = String::from_utf8(output).unwrap();
    assert!(
        text.lines().any(|l| l.starts_with('*')),
        "Expected a line starting with '*' in:\n{text}"
    );
}

// ─── Graph ───────────────────────────────────────────────────────────────────

#[test]
fn graph_view_single_node() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Lone node");

    memex()
        .current_dir(tmp.path())
        .args(["graph", "view"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Conversation Graph"))
        .stdout(predicate::str::contains("Legend:"));
}

#[test]
fn graph_view_tree_connectors() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    let parent_id = create_node(&tmp, "Parent");
    let _child_id = create_node(&tmp, "Child"); // auto-parented to active (parent)
    let _ = parent_id;

    memex()
        .current_dir(tmp.path())
        .args(["graph", "view"])
        .assert()
        .success()
        .stdout(predicate::str::contains("──"));
}

// ─── Search ──────────────────────────────────────────────────────────────────

#[test]
fn search_finds_goal() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Build a database indexer");

    memex()
        .current_dir(tmp.path())
        .args(["search", "database"])
        .assert()
        .success()
        .stdout(predicate::str::contains(">>database<<"));
}

#[test]
fn search_case_insensitive() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Build a DATABASE indexer");

    memex()
        .current_dir(tmp.path())
        .args(["search", "database"])
        .assert()
        .success()
        .stdout(predicate::str::contains(">>DATABASE<<"));
}

#[test]
fn search_no_match() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Build a web server");

    memex()
        .current_dir(tmp.path())
        .args(["search", "zzznomatch"])
        .assert()
        .success()
        .stdout(predicate::str::contains("No nodes found matching"));
}

#[test]
fn search_finds_decisions() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Design system");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--decision", "Use microservices"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["search", "microservices"])
        .assert()
        .success()
        .stdout(predicate::str::contains("decision[0]"));
}

// ─── Context ─────────────────────────────────────────────────────────────────

#[test]
fn context_markdown_output() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root project");

    memex()
        .current_dir(tmp.path())
        .args(["context", "--format", "markdown"])
        .assert()
        .success()
        .stdout(predicate::str::contains("## Project Context"))
        .stdout(predicate::str::contains("**Goal:**"));
}

#[test]
fn context_xml_output() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root project");

    memex()
        .current_dir(tmp.path())
        .args(["context", "--format", "xml"])
        .assert()
        .success()
        .stdout(predicate::str::contains("<memex_context>"))
        .stdout(predicate::str::contains("<goal>"));
}

#[test]
fn context_plain_output() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root project");

    memex()
        .current_dir(tmp.path())
        .args(["context", "--format", "plain"])
        .assert()
        .success()
        .stdout(predicate::str::contains("PROJECT CONTEXT"));
}

#[test]
fn context_invalid_format_fails() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);

    memex()
        .current_dir(tmp.path())
        .args(["context", "--format", "json"])
        .assert()
        .failure()
        .stderr(predicate::str::contains("Unknown format"));
}

#[test]
fn context_depth_trimming() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);

    // Build a 4-level chain: root → level1 → level2 → current
    let root_id = create_node(&tmp, "Root node");
    let level1_id = create_node(&tmp, "Level one node");
    let level2_id = create_node(&tmp, "Level two node");
    let _current_id = create_node(&tmp, "Current node");
    let _ = (root_id, level1_id, level2_id);

    // --depth 1: only keep 1 ancestor between root and current → Level one should be trimmed
    memex()
        .current_dir(tmp.path())
        .args(["context", "--format", "plain", "--depth", "1"])
        .assert()
        .success()
        .stdout(predicate::str::contains("Level one node").not())
        .stdout(predicate::str::contains("Current node"));
}

// ─── pr-context ──────────────────────────────────────────────────────────────

#[test]
fn pr_context_emits_marker_and_no_match_message_when_empty() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root");

    memex()
        .current_dir(tmp.path())
        .args(["pr-context", "--file", "src/nothing.rs"])
        .assert()
        .success()
        .stdout(predicate::str::contains("<!-- memex-pr-context -->"))
        .stdout(predicate::str::contains(
            "No prior memex nodes touched the changed files.",
        ));
}

#[test]
fn pr_context_lists_node_with_matching_artifact() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root");
    let child = create_node(&tmp, "Touched main");

    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--artifact", "src/main.rs"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["pr-context", "--file", "src/main.rs"])
        .assert()
        .success()
        .stdout(predicate::str::contains(&child))
        .stdout(predicate::str::contains("Touched main"))
        .stdout(predicate::str::contains("**Artifacts:** src/main.rs"));
}

#[test]
fn pr_context_excludes_non_matching_nodes() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root");
    let on_main = create_node(&tmp, "Touched main");
    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--artifact", "src/main.rs"])
        .assert()
        .success();

    let on_store = create_node(&tmp, "Touched store");
    memex()
        .current_dir(tmp.path())
        .args(["node", "edit", "--artifact", "src/store.rs"])
        .assert()
        .success();

    memex()
        .current_dir(tmp.path())
        .args(["pr-context", "--file", "src/main.rs"])
        .assert()
        .success()
        .stdout(predicate::str::contains(&on_main))
        .stdout(predicate::str::contains(&on_store).not());
}

#[test]
fn pr_context_limit_caps_rendered_nodes() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root");

    // Create 4 child nodes that all touch src/main.rs
    for i in 0..4 {
        let _id = create_node(&tmp, &format!("Touch {}", i));
        memex()
            .current_dir(tmp.path())
            .args(["node", "edit", "--artifact", "src/main.rs"])
            .assert()
            .success();
    }

    memex()
        .current_dir(tmp.path())
        .args(["pr-context", "--limit", "2", "--file", "src/main.rs"])
        .assert()
        .success()
        .stdout(predicate::str::contains("2 older matching nodes omitted"));
}

#[test]
fn pr_context_supports_custom_marker() {
    let tmp = TempDir::new().unwrap();
    init_in(&tmp);
    create_node(&tmp, "Root");

    memex()
        .current_dir(tmp.path())
        .args([
            "pr-context",
            "--marker",
            "<!-- custom-marker -->",
            "--file",
            "src/main.rs",
        ])
        .assert()
        .success()
        .stdout(predicate::str::contains("<!-- custom-marker -->"))
        .stdout(predicate::str::contains("<!-- memex-pr-context -->").not());
}