delete claude code integration

This commit is contained in:
Kent Overstreet 2026-04-09 19:58:07 -04:00
parent 24560042ea
commit 929415af3b
31 changed files with 120 additions and 2898 deletions

View file

@ -9,7 +9,7 @@ capnp-rpc = "0.25"
dirs = "6"
futures = "0.3"
json5 = "1.3"
poc-memory = { path = "../.." }
consciousness = { path = "../.." }
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }

View file

@ -24,8 +24,8 @@ use tokio::net::UnixListener;
use tokio_util::compat::TokioAsyncReadCompatExt;
use log::{info, warn, error};
use poc_memory::channel_capnp::{channel_client, channel_server};
use poc_memory::thalamus::channel_log;
use consciousness::channel_capnp::{channel_client, channel_server};
use consciousness::thalamus::channel_log;
// ── Constants ──────────────────────────────────────────────────
@ -159,7 +159,7 @@ impl AsyncWriter for PlainWriter {
// ── State ──────────────────────────────────────────────────────
use poc_memory::thalamus::channel_log::ChannelLog;
use consciousness::thalamus::channel_log::ChannelLog;
struct State {
config: Config,

View file

@ -8,7 +8,7 @@ capnp = "0.25"
capnp-rpc = "0.25"
dirs = "6"
futures = "0.3"
poc-memory = { path = "../.." }
consciousness = { path = "../.." }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }
log = "0.4"

View file

@ -18,8 +18,8 @@ use tokio::net::{TcpStream, UnixListener, UnixStream};
use tokio_util::compat::TokioAsyncReadCompatExt;
use log::{info, warn, error};
use poc_memory::channel_capnp::{channel_client, channel_server};
use poc_memory::thalamus::channel_log::ChannelLog;
use consciousness::channel_capnp::{channel_client, channel_server};
use consciousness::thalamus::channel_log::ChannelLog;
// ── State ──────────────────────────────────────────────────────

View file

@ -8,7 +8,7 @@ capnp = "0.25"
capnp-rpc = "0.25"
dirs = "6"
futures = "0.3"
poc-memory = { path = "../.." }
consciousness = { path = "../.." }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }

View file

@ -17,7 +17,7 @@ use tokio::net::UnixListener;
use tokio_util::compat::TokioAsyncReadCompatExt;
use log::{info, error};
use poc_memory::channel_capnp::{channel_client, channel_server};
use consciousness::channel_capnp::{channel_client, channel_server};
// ── Config ──────────────────────────────────────────────────────
@ -55,7 +55,7 @@ fn load_config() -> Config {
// ── State ───────────────────────────────────────────────────────
use poc_memory::thalamus::channel_log::ChannelLog;
use consciousness::thalamus::channel_log::ChannelLog;
struct State {
config: Config,
@ -64,7 +64,7 @@ struct State {
/// Telegram API offset
last_offset: i64,
connected: bool,
client: poc_memory::agent::api::http::HttpClient,
client: consciousness::agent::api::http::HttpClient,
/// Registered notification callbacks
subscribers: Vec<channel_client::Client>,
}
@ -79,7 +79,7 @@ impl State {
channel_logs: std::collections::BTreeMap::new(),
last_offset,
connected: false,
client: poc_memory::agent::api::http::HttpClient::new(),
client: consciousness::agent::api::http::HttpClient::new(),
subscribers: Vec::new(),
}
}

View file

@ -11,7 +11,7 @@ libc = "0.2"
scopeguard = "1"
futures = "0.3"
json5 = "1.3"
poc-memory = { path = "../.." }
consciousness = { path = "../.." }
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7", features = ["compat"] }

View file

@ -19,8 +19,8 @@ use tokio::net::UnixListener;
use tokio_util::compat::TokioAsyncReadCompatExt;
use log::{info, warn, error};
use poc_memory::channel_capnp::channel_server;
use poc_memory::thalamus::channel_log::ChannelLog;
use consciousness::channel_capnp::channel_server;
use consciousness::thalamus::channel_log::ChannelLog;
// ── Config ─────────────────────────────────────────────────────