memex-cli 0.1.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
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 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"));
}