chaotic_semantic_memory 0.3.6

AI memory systems with hyperdimensional vectors and chaotic reservoirs
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
//! Skill-Memory Integration Tests
//!
//! Tests for skill-memory production usage patterns:
//! - DB location verification (.agents/csm-memory/skill-memory.db)
//! - Save/recall concept flow using skill-memory CLI patterns
//! - DB file creation verification
//! - Roundtrip persistence

use assert_cmd::Command;
use assert_cmd::cargo::cargo_bin_cmd;
use predicates::prelude::*;
use tempfile::TempDir;

/// Helper to create a CSM CLI command
fn csm() -> Command {
    let mut cmd = cargo_bin_cmd!("csm");
    cmd.current_dir(std::env::current_dir().expect("should have current dir"));
    cmd
}

/// Helper to create a temp directory with skill-memory DB path structure
fn skill_memory_tempdir() -> TempDir {
    TempDir::new().expect("failed to create temp dir")
}

/// Helper to generate skill-memory canonical ID
/// Format: skill::<skill_name>::<category>::<slug-or-timestamp>
fn skill_id(skill: &str, category: &str, slug: &str) -> String {
    format!("skill::{skill}::{category}::{slug}")
}

// =============================================================================
// DB Location Tests
// =============================================================================

#[test]
fn skill_memory_db_location_follows_convention() {
    let temp_dir = skill_memory_tempdir();
    let agents_dir = temp_dir.path().join(".agents").join("csm-memory");
    std::fs::create_dir_all(&agents_dir).expect("failed to create agents dir");

    let db_path = agents_dir.join("skill-memory.db");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg("skill::test::validation::location-test")
        .assert()
        .success();

    // Verify DB file was created at expected location
    assert!(
        db_path.exists(),
        "DB file should exist at .agents/csm-memory/skill-memory.db"
    );
}

#[test]
fn skill_memory_db_requires_parent_directories() {
    let temp_dir = skill_memory_tempdir();
    // Path with non-existent parent directories
    let db_path = temp_dir
        .path()
        .join(".agents")
        .join("csm-memory")
        .join("skill-memory.db");

    // Parent directories don't exist yet - CSM requires them to exist
    assert!(!db_path.parent().unwrap().exists());

    // Create parent directories before injecting
    std::fs::create_dir_all(db_path.parent().unwrap()).expect("failed to create parent dirs");

    // CSM should now succeed
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg("skill::test::init::dir-creation-test")
        .assert()
        .success();

    // Verify DB file was created
    assert!(
        db_path.exists(),
        "DB file should be created when parent dirs exist"
    );
}

// =============================================================================
// Save/Recall Flow Tests (using query for semantic search)
// =============================================================================

#[test]
fn skill_memory_save_single_concept() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Save a skill-memory concept with canonical ID format
    let concept_id = skill_id(
        "rust-development",
        "code_refactoring",
        "thiserror-migration",
    );

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(
            r#"{"operation":"refactoring","context":"Converted error types to thiserror","result":"Reduced boilerplate 40 lines"}"#,
        )
        .assert()
        .success();
}

#[test]
fn skill_memory_recall_by_id() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // First, save a concept
    let concept_id = skill_id("debugging", "error_resolution", "spectral-radius-fix");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(
            r#"{"operation":"error_resolution","context":"Spectral radius validation","result":"Clamped to valid range"}"#,
        )
        .assert()
        .success();

    // Probe by exact concept ID to find similar concepts
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg(&concept_id)
        .arg("-k")
        .arg("5")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("spectral-radius-fix"));
}

#[test]
fn skill_memory_query_by_semantic_text() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Save a concept with text preview for semantic search
    let concept_id = skill_id(
        "debugging",
        "error_resolution",
        "spectral-radius-validation",
    );
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(
            r#"{"operation":"error_resolution","text_preview":"Spectral radius out of range causing unstable reservoir dynamics","result":"Added validation to clamp values"}"#,
        )
        .assert()
        .success();

    // Query using semantic text search (not probe by ID)
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("query")
        .arg("spectral radius reservoir dynamics")
        .arg("-k")
        .arg("5")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success();
}

#[test]
fn skill_memory_associate_concepts() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Save two concepts
    let error_id = skill_id("debugging", "error", "timeout-issue");
    let solution_id = skill_id("rust", "fix", "timeout-solution");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&error_id)
        .assert()
        .success();

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&solution_id)
        .assert()
        .success();

    // Associate them
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("associate")
        .arg(&error_id)
        .arg(&solution_id)
        .arg("-s")
        .arg("0.95")
        .assert()
        .success();
}

// =============================================================================
// Roundtrip Persistence Tests
// =============================================================================

#[test]
fn skill_memory_roundtrip_export_import() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");
    let export_path = temp_dir.path().join("export.json");

    // Save concepts with skill-memory canonical format
    let concept_id = skill_id("adr-creation", "architectural_decision", "cache-layer");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(r#"{"operation":"adr","context":"LRU cache for concepts","result":"128 entry limit"}"#)
        .assert()
        .success();

    // Export to file
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("export")
        .arg("-o")
        .arg(&export_path)
        .assert()
        .success();

    // Verify export file exists
    assert!(export_path.exists(), "Export file should be created");

    // Import to new database
    let db_path2 = temp_dir.path().join("test2.db");
    csm()
        .arg("--database")
        .arg(&db_path2)
        .arg("import")
        .arg(&export_path)
        .assert()
        .success();

    // Verify concept exists in new database by probing it
    csm()
        .arg("--database")
        .arg(&db_path2)
        .arg("probe")
        .arg(&concept_id)
        .arg("-k")
        .arg("1")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("cache-layer"));
}

#[test]
fn skill_memory_persists_across_sessions() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Session 1: Write concept
    let concept_id = skill_id("session", "persistence", "cross-session-test");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(r#"{"session":1,"persisted":true}"#)
        .assert()
        .success();

    // Session 2: Read concept (simulating new session via probe by ID)
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg(&concept_id)
        .arg("-k")
        .arg("1")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("cross-session-test"));
}

// =============================================================================
// Metadata and JSON Handling Tests
// =============================================================================

#[test]
fn skill_memory_metadata_json_parsing() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Test complex metadata
    let concept_id = skill_id("complex", "metadata", "json-test");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(
            r#"{"operation":"test","nested":{"key":"value"},"array":[1,2,3],"string":"test string"}"#,
        )
        .assert()
        .success();

    // Verify concept was stored via probe
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg(&concept_id)
        .arg("-k")
        .arg("1")
        .assert()
        .success();
}

#[test]
fn skill_memory_concept_id_naming_convention() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");
    let export_path = temp_dir.path().join("export.json");

    // Test various valid skill-memory ID formats
    let valid_ids = vec![
        "skill::impl::refactor::2026-04-12T08-22-10Z",
        "skill::fix::error-resolution::merge-conflict-overwrite",
        "skill::adr-creation::architectural_decision::cache-layer-implementation",
        "skill::testing::regression::load-merge-no-overwrite",
    ];

    for id in &valid_ids {
        csm()
            .arg("--database")
            .arg(&db_path)
            .arg("inject")
            .arg(id)
            .assert()
            .success();
    }

    // Export and verify all IDs are present in file
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("export")
        .arg("-o")
        .arg(&export_path)
        .assert()
        .success();

    // Read and verify export file contents
    let export_content = std::fs::read_to_string(&export_path).expect("failed to read export");
    assert!(
        export_content.contains("skill::impl::refactor"),
        "Should contain impl::refactor ID"
    );
    assert!(
        export_content.contains("skill::fix::error-resolution"),
        "Should contain fix::error-resolution ID"
    );
    assert!(
        export_content.contains("skill::adr-creation::architectural_decision"),
        "Should contain adr-creation ID"
    );
    assert!(
        export_content.contains("skill::testing::regression"),
        "Should contain testing::regression ID"
    );
}

// =============================================================================
// Workflow Integration Tests
// =============================================================================

#[test]
fn skill_memory_full_workflow_adr_pattern() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Simulate full ADR workflow from SKILL.md

    // 1. Record ADR decision
    let adr_id = skill_id("adr-creation", "architectural_decision", "lru-cache-impl");

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&adr_id)
        .arg("-m")
        .arg(
            r#"{"operation":"decision","context":"Implement LRU cache for concept storage","result":"Use lru crate with 128 entry limit"}"#,
        )
        .assert()
        .success();

    // 2. Record refactoring
    let refactor_id = skill_id(
        "rust-development",
        "code_refactoring",
        "thiserror-migration",
    );

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&refactor_id)
        .arg("-m")
        .arg(
            r#"{"operation":"refactoring","context":"Error handling refactoring","result":"Converted to thiserror"}"#,
        )
        .assert()
        .success();

    // 3. Associate refactoring with ADR
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("associate")
        .arg(&refactor_id)
        .arg(&adr_id)
        .arg("-s")
        .arg("0.7")
        .assert()
        .success();

    // 4. Record error resolution
    let error_id = skill_id(
        "debugging",
        "error_resolution",
        "spectral-radius-validation",
    );

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&error_id)
        .arg("-m")
        .arg(
            r#"{"operation":"error_resolution","context":"Spectral radius out of range","result":"Added validation to clamp to [0.9, 1.1]"}"#,
        )
        .assert()
        .success();

    // 5. Verify all can be recalled by ID probe
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg(&adr_id)
        .arg("-k")
        .arg("1")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("lru-cache-impl"));

    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg(&error_id)
        .arg("-k")
        .arg("1")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("spectral-radius-validation"));
}

#[test]
fn skill_memory_quick_validation_pattern() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Test the quick validation pattern from SKILL.md

    // Write smoke test concept
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg("skill::internal::smoke::quick-validation")
        .arg("-m")
        .arg(r#"{"smoke":true}"#)
        .assert()
        .success();

    // Read it back by probing the ID
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg("skill::internal::smoke::quick-validation")
        .arg("-k")
        .arg("1")
        .arg("--output-format")
        .arg("json")
        .assert()
        .success()
        .stdout(predicate::str::contains("quick-validation"));
}

// =============================================================================
// Edge Cases and Error Handling
// =============================================================================

#[test]
fn skill_memory_duplicate_id_succeeds() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    let concept_id = skill_id("test", "dup", "same-id");

    // First inject should succeed
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(r#"{"version":1}"#)
        .assert()
        .success();

    // Second inject with same ID should also succeed (upsert behavior)
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg(&concept_id)
        .arg("-m")
        .arg(r#"{"version":2}"#)
        .assert()
        .success();
}

#[test]
fn skill_memory_empty_metadata() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Inject without metadata should work
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("inject")
        .arg("skill::test::minimal::no-metadata")
        .assert()
        .success();

    // Verify it was stored via probe
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg("skill::test::minimal::no-metadata")
        .arg("-k")
        .arg("1")
        .assert()
        .success();
}

#[test]
fn skill_memory_probe_missing_returns_failure() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Probe on empty DB should fail
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("probe")
        .arg("nonexistent-concept-id")
        .assert()
        .failure();
}

#[test]
fn skill_memory_associate_missing_concept_fails() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("test.db");

    // Associate non-existent concepts should fail
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("associate")
        .arg("skill::missing::concept::a")
        .arg("skill::missing::concept::b")
        .assert()
        .failure();
}

#[test]
fn skill_memory_export_empty_database() {
    let temp_dir = skill_memory_tempdir();
    let db_path = temp_dir.path().join("empty.db");
    let export_path = temp_dir.path().join("empty-export.json");

    // Export from empty database should succeed (with warning)
    csm()
        .arg("--database")
        .arg(&db_path)
        .arg("export")
        .arg("-o")
        .arg(&export_path)
        .assert()
        .success();

    // Verify export file was created
    assert!(
        export_path.exists(),
        "Export file should be created even for empty DB"
    );
}