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

@ -15,7 +15,7 @@
// Neuroscience-inspired: spaced repetition replay, emotional gating,
// interference detection, schema assimilation, reconsolidation.
use poc_memory::*;
use consciousness::*;
use clap::{Parser, Subcommand};
@ -456,8 +456,6 @@ enum DaemonCmd {
#[arg(long, default_value_t = 20)]
lines: usize,
},
/// Install systemd service
Install,
/// Trigger consolidation via daemon
Consolidate,
/// Run an agent via the daemon
@ -873,7 +871,6 @@ impl Run for DaemonCmd {
daemon::show_log(job.as_deref(), lines)
}
}
Self::Install => daemon::install_service(),
Self::Consolidate => daemon::rpc_consolidate(),
Self::Run { agent, count } => daemon::rpc_run_agent(&agent, count),
Self::Tui => Err("TUI moved to consciousness binary (F4/F5)".into()),