2026-03-08 20:42:40 -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"
|
|
|
|
|
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"] }
|
|
|
|
|
memmap2 = "0.9"
|
|
|
|
|
rayon = "1"
|
|
|
|
|
peg = "0.8"
|
|
|
|
|
paste = "1"
|
|
|
|
|
jobkit = { git = "https://evilpiepirate.org/git/jobkit.git/" }
|
2026-03-18 12:47:25 -04:00
|
|
|
jobkit-daemon = { git = "https://evilpiepirate.org/git/jobkit-daemon.git/" }
|
2026-03-18 22:44:36 -04:00
|
|
|
poc-agent = { path = "../poc-agent" }
|
2026-03-10 23:59:39 -04:00
|
|
|
redb = "2"
|
2026-03-08 20:42:40 -04:00
|
|
|
log = "0.4"
|
poc-memory status: add ratatui TUI dashboard
Per-agent-type tabs (health, replay, linker, separator, transfer,
apply, orphans, cap, digest, digest-links, knowledge) with dynamic
visibility — tabs only appear when tasks or log history exist.
Features:
- Overview tab: health gauges (α, gini, cc, episodic%), in-flight
tasks, and recent log entries
- Pipeline tab: table with phase ordering and status
- Per-agent tabs: active tasks, output logs, log history
- Log tab: auto-scrolling daemon.log tail
- Vim-style count prefix: e.g. 5r runs 5 iterations of the agent
- Flash messages for RPC feedback
- Tab/Shift-Tab navigation, number keys for tab selection
Also adds run-agent RPC to the daemon: accepts agent type and
iteration count, spawns chained tasks with LLM resource pool.
poc-memory status launches TUI when stdout is a terminal and daemon
is running, falls back to text output otherwise.
2026-03-10 00:41:29 -04:00
|
|
|
ratatui = "0.29"
|
2026-03-14 19:53:46 -04:00
|
|
|
skillratings = "0.28"
|
poc-memory status: add ratatui TUI dashboard
Per-agent-type tabs (health, replay, linker, separator, transfer,
apply, orphans, cap, digest, digest-links, knowledge) with dynamic
visibility — tabs only appear when tasks or log history exist.
Features:
- Overview tab: health gauges (α, gini, cc, episodic%), in-flight
tasks, and recent log entries
- Pipeline tab: table with phase ordering and status
- Per-agent tabs: active tasks, output logs, log history
- Log tab: auto-scrolling daemon.log tail
- Vim-style count prefix: e.g. 5r runs 5 iterations of the agent
- Flash messages for RPC feedback
- Tab/Shift-Tab navigation, number keys for tab selection
Also adds run-agent RPC to the daemon: accepts agent type and
iteration count, spawns chained tasks with LLM resource pool.
poc-memory status launches TUI when stdout is a terminal and daemon
is running, falls back to text output otherwise.
2026-03-10 00:41:29 -04:00
|
|
|
crossterm = { version = "0.28", features = ["event-stream"] }
|
2026-03-08 20:42:40 -04:00
|
|
|
|
|
|
|
|
[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"
|
2026-03-17 18:00:58 -04:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "merge-logs"
|
|
|
|
|
path = "src/bin/merge-logs.rs"
|
|
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "diag-key"
|
|
|
|
|
path = "src/bin/diag-key.rs"
|
2026-03-18 12:47:25 -04:00
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
|
name = "find-deleted"
|
|
|
|
|
path = "src/bin/find-deleted.rs"
|