merge poc-agent into poc-memory as agent/ module

Eliminates the circular dependency between poc-agent and poc-memory by
moving all poc-agent source into poc-memory/src/agent/. The poc-agent
binary now builds from poc-memory/src/bin/poc-agent.rs using library
imports. All poc_agent:: references updated to crate::agent::.

poc-agent/ directory kept for now (removed from workspace members).

Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
ProofOfConcept 2026-03-25 00:52:41 -04:00
parent 01abd795ce
commit 891cca57f8
35 changed files with 9178 additions and 88 deletions

View file

@ -22,13 +22,24 @@ rayon = "1"
peg = "0.8"
paste = "1"
jobkit = { path = "/home/kent/jobkit", features = ["daemon", "console"] }
poc-agent = { path = "../poc-agent" }
tokio = { version = "1", features = ["rt-multi-thread"] }
tokio = { version = "1", features = ["full"] }
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 = "0.30"
ratatui = { version = "0.30", features = ["unstable-rendered-line-info"] }
skillratings = "0.28"
crossterm = { version = "0.28", features = ["event-stream"] }
crossterm = { version = "0.29", features = ["event-stream"] }
[build-dependencies]
capnpc = "0.20"
@ -60,3 +71,7 @@ path = "src/bin/diag-key.rs"
[[bin]]
name = "find-deleted"
path = "src/bin/find-deleted.rs"
[[bin]]
name = "poc-agent"
path = "src/bin/poc-agent.rs"