2026-03-08 20:42:40 -04:00
|
|
|
[workspace]
|
2026-03-25 01:06:27 -04:00
|
|
|
members = ["thalamus"]
|
2026-03-08 20:42:40 -04:00
|
|
|
resolver = "2"
|
|
|
|
|
|
|
|
|
|
[workspace.package]
|
poc-memory v0.4.0: graph-structured memory with consolidation pipeline
Rust core:
- Cap'n Proto append-only storage (nodes + relations)
- Graph algorithms: clustering coefficient, community detection,
schema fit, small-world metrics, interference detection
- BM25 text similarity with Porter stemming
- Spaced repetition replay queue
- Commands: search, init, health, status, graph, categorize,
link-add, link-impact, decay, consolidate-session, etc.
Python scripts:
- Episodic digest pipeline: daily/weekly/monthly-digest.py
- retroactive-digest.py for backfilling
- consolidation-agents.py: 3 parallel Sonnet agents
- apply-consolidation.py: structured action extraction + apply
- digest-link-parser.py: extract ~400 explicit links from digests
- content-promotion-agent.py: promote episodic obs to semantic files
- bulk-categorize.py: categorize all nodes via single Sonnet call
- consolidation-loop.py: multi-round automated consolidation
Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
2026-02-28 22:17:00 -05:00
|
|
|
version = "0.4.0"
|
2026-03-18 22:44:36 -04:00
|
|
|
edition = "2024"
|
poc-memory v0.4.0: graph-structured memory with consolidation pipeline
Rust core:
- Cap'n Proto append-only storage (nodes + relations)
- Graph algorithms: clustering coefficient, community detection,
schema fit, small-world metrics, interference detection
- BM25 text similarity with Porter stemming
- Spaced repetition replay queue
- Commands: search, init, health, status, graph, categorize,
link-add, link-impact, decay, consolidate-session, etc.
Python scripts:
- Episodic digest pipeline: daily/weekly/monthly-digest.py
- retroactive-digest.py for backfilling
- consolidation-agents.py: 3 parallel Sonnet agents
- apply-consolidation.py: structured action extraction + apply
- digest-link-parser.py: extract ~400 explicit links from digests
- content-promotion-agent.py: promote episodic obs to semantic files
- bulk-categorize.py: categorize all nodes via single Sonnet call
- consolidation-loop.py: multi-round automated consolidation
Co-Authored-By: Kent Overstreet <kent.overstreet@linux.dev>
2026-02-28 22:17:00 -05:00
|
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
|
opt-level = 2
|
2026-03-12 18:11:09 -04:00
|
|
|
debug = 1
|
|
|
|
|
|
|
|
|
|
[profile.release.package."*"]
|
|
|
|
|
debug = false
|
2026-03-25 00:54:12 -04:00
|
|
|
|
|
|
|
|
[package]
|
|
|
|
|
name = "poc-memory"
|
|
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
capnp = "0.20"
|
|
|
|
|
uuid = { version = "1", features = ["v4"] }
|
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
|
serde_json = "1"
|
|
|
|
|
json5 = "0.4"
|
|
|
|
|
bincode = "1"
|
|
|
|
|
regex = "1"
|
|
|
|
|
chrono = "0.4"
|
|
|
|
|
clap = { version = "4", features = ["derive"] }
|
|
|
|
|
libc = "0.2"
|
|
|
|
|
faer = "0.24.0"
|
|
|
|
|
rkyv = { version = "0.7", features = ["validation", "std"] }
|
|
|
|
|
memchr = "2"
|
|
|
|
|
memmap2 = "0.9"
|
|
|
|
|
rayon = "1"
|
|
|
|
|
peg = "0.8"
|
|
|
|
|
paste = "1"
|
2026-04-02 19:46:43 -04:00
|
|
|
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git", features = ["daemon", "console"] }
|
2026-04-02 18:21:01 -04:00
|
|
|
tokio = { version = "1", features = ["full", "tracing"] }
|
2026-04-02 19:31:17 -04:00
|
|
|
console-subscriber = "0.5"
|
2026-03-25 00:54:12 -04:00
|
|
|
reqwest = { version = "0.12", features = ["json"] }
|
|
|
|
|
walkdir = "2"
|
|
|
|
|
glob = "0.3"
|
|
|
|
|
anyhow = "1"
|
|
|
|
|
base64 = "0.22"
|
|
|
|
|
dirs = "6"
|
|
|
|
|
futures = "0.3"
|
|
|
|
|
tiktoken-rs = "0.9.1"
|
|
|
|
|
figment = { version = "0.10", features = ["env"] }
|
|
|
|
|
tui-markdown = "0.3"
|
|
|
|
|
unicode-width = "0.2.2"
|
|
|
|
|
tui-textarea = { version = "0.10.2", package = "tui-textarea-2" }
|
|
|
|
|
redb = "2"
|
|
|
|
|
log = "0.4"
|
|
|
|
|
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
|
|
|
|
|
skillratings = "0.28"
|
|
|
|
|
crossterm = { version = "0.29", features = ["event-stream"] }
|
|
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
|
capnpc = "0.20"
|
|
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
|
name = "poc_memory"
|
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "poc-memory"
|
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "memory-search"
|
|
|
|
|
path = "src/bin/memory-search.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "poc-hook"
|
|
|
|
|
path = "src/bin/poc-hook.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "merge-logs"
|
|
|
|
|
path = "src/bin/merge-logs.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "diag-key"
|
|
|
|
|
path = "src/bin/diag-key.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "find-deleted"
|
|
|
|
|
path = "src/bin/find-deleted.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
2026-04-03 17:25:59 -04:00
|
|
|
name = "consciousness"
|
|
|
|
|
path = "src/bin/consciousness.rs"
|