mirror of
https://github.com/allaunthefox/Research-Stack.git
synced 2026-07-31 03:05:21 +00:00
- Rust crate: codebase-memory with cargo check + 6/6 tests pass - types.rs: Q16_16, 7 CodeDomain banks, scar tracking, dual-map state - adapter.rs: observe, commit_gate, advance_epoch, query_all, save/load - main.rs: load_for_hermes binary entry point - hermes_integration_manifest.json: agent contract and promotion gates - Manifest: shared-data/data/stack_solidification/codebase_memory_receipt_2026-05-13.md - Deleted Python adapter, replaced with Rust runtime - FAMM.lean fix: UInt4→UInt8 for capability cells, proper Q16_16 comparisons - Semantics.lean: quarantine imports for CodebaseMemory/CodebaseFSDU/CodebaseReceipt - Quarantined 3 Lean files from lake build (field notation issues) Build verified: lake build Semantics.FAMM passes (3,300 jobs)
25 lines
490 B
TOML
25 lines
490 B
TOML
[package]
|
|
name = "codebase-memory"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Research Stack Team"]
|
|
description = "FAMM-based persistent multi-domain codebase memory for Hermes agent"
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
sha2 = "0.10"
|
|
walkdir = "2.5"
|
|
thiserror = "1.0"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.10"
|
|
|
|
[[bin]]
|
|
name = "codebase-memory"
|
|
path = "src/main.rs"
|
|
|
|
[lib]
|
|
name = "codebase_memory"
|
|
path = "src/lib.rs"
|