rename: poc-agent → agent, poc-daemon → thalamus

The thalamus: sensory relay, always-on routing. Perfect name for the
daemon that bridges IRC, Telegram, and the agent.

Co-Authored-By: Proof of Concept <poc@bcachefs.org>
This commit is contained in:
ProofOfConcept 2026-03-25 01:03:51 -04:00
parent 998b71e52c
commit cfed85bd20
105 changed files with 0 additions and 0 deletions

11
agent/src/lib.rs Normal file
View file

@ -0,0 +1,11 @@
// poc-agent library — reusable components for LLM agent work
//
// The binary (main.rs) is the full interactive agent with TUI.
// This lib exposes the building blocks that other crates (poc-memory)
// can use for their own agent loops.
pub mod api;
pub mod journal;
pub mod types;
pub mod tools;
pub mod ui_channel;