2026-03-05 13:18:00 -05:00
|
|
|
// poc-memory daemon: background job orchestration for memory maintenance
|
|
|
|
|
//
|
|
|
|
|
// Replaces the fragile cron+shell approach with a single long-running process
|
|
|
|
|
// that owns all background memory work. Uses jobkit for worker pool, status
|
|
|
|
|
// tracking, retry, and cancellation.
|
|
|
|
|
//
|
|
|
|
|
// Architecture:
|
|
|
|
|
// - Scheduler task: runs every 60s, scans filesystem state, spawns jobs
|
|
|
|
|
// - Session watcher task: detects ended Claude sessions, triggers extraction
|
|
|
|
|
// - Jobs shell out to existing poc-memory subcommands (Phase 1)
|
|
|
|
|
// - Status written to daemon-status.json for `poc-memory daemon status`
|
|
|
|
|
//
|
|
|
|
|
// Phase 2 will inline job logic; Phase 3 integrates into poc-agent.
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
use jobkit::{Choir, ExecutionContext, ResourcePool, TaskError, TaskInfo, TaskStatus};
|
2026-03-05 13:18:00 -05:00
|
|
|
use std::collections::HashSet;
|
|
|
|
|
use std::fs;
|
|
|
|
|
use std::io::Write;
|
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
use std::time::{Duration, SystemTime};
|
|
|
|
|
|
|
|
|
|
const SESSION_STALE_SECS: u64 = 600; // 10 minutes
|
|
|
|
|
const SCHEDULER_INTERVAL: Duration = Duration::from_secs(60);
|
|
|
|
|
const HEALTH_INTERVAL: Duration = Duration::from_secs(3600);
|
2026-03-05 15:41:35 -05:00
|
|
|
fn status_file() -> &'static str { "daemon-status.json" }
|
|
|
|
|
fn log_file() -> &'static str { "daemon.log" }
|
2026-03-05 13:18:00 -05:00
|
|
|
|
|
|
|
|
fn status_path() -> PathBuf {
|
2026-03-05 15:41:35 -05:00
|
|
|
crate::config::get().data_dir.join(status_file())
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn log_path() -> PathBuf {
|
2026-03-05 15:41:35 -05:00
|
|
|
crate::config::get().data_dir.join(log_file())
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn projects_dir() -> PathBuf {
|
2026-03-05 15:41:35 -05:00
|
|
|
crate::config::get().projects_dir.clone()
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- Logging ---
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
const LOG_MAX_BYTES: u64 = 1_000_000; // 1MB, then truncate to last half
|
|
|
|
|
|
2026-03-05 13:18:00 -05:00
|
|
|
fn log_event(job: &str, event: &str, detail: &str) {
|
|
|
|
|
let ts = chrono::Local::now().format("%Y-%m-%dT%H:%M:%S");
|
|
|
|
|
let line = if detail.is_empty() {
|
|
|
|
|
format!("{{\"ts\":\"{}\",\"job\":\"{}\",\"event\":\"{}\"}}\n", ts, job, event)
|
|
|
|
|
} else {
|
2026-03-05 15:31:08 -05:00
|
|
|
// Escape detail for JSON safety
|
|
|
|
|
let safe = detail.replace('\\', "\\\\").replace('"', "\\\"")
|
|
|
|
|
.replace('\n', "\\n");
|
2026-03-05 13:18:00 -05:00
|
|
|
format!("{{\"ts\":\"{}\",\"job\":\"{}\",\"event\":\"{}\",\"detail\":\"{}\"}}\n",
|
2026-03-05 15:31:08 -05:00
|
|
|
ts, job, event, safe)
|
2026-03-05 13:18:00 -05:00
|
|
|
};
|
2026-03-05 15:31:08 -05:00
|
|
|
let path = log_path();
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
// Rotate if too large
|
|
|
|
|
if let Ok(meta) = fs::metadata(&path) {
|
|
|
|
|
if meta.len() > LOG_MAX_BYTES {
|
|
|
|
|
if let Ok(content) = fs::read_to_string(&path) {
|
|
|
|
|
let half = content.len() / 2;
|
|
|
|
|
// Find next newline after halfway point
|
|
|
|
|
if let Some(nl) = content[half..].find('\n') {
|
|
|
|
|
let _ = fs::write(&path, &content[half + nl + 1..]);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
if let Ok(mut f) = fs::OpenOptions::new().create(true).append(true).open(&path) {
|
|
|
|
|
let _ = f.write_all(line.as_bytes());
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:53:27 -05:00
|
|
|
// --- Job functions (direct, no subprocess) ---
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
/// Run a named job with logging, progress reporting, and error mapping.
|
|
|
|
|
fn run_job(ctx: &ExecutionContext, name: &str, f: impl FnOnce() -> Result<(), String>) -> Result<(), TaskError> {
|
2026-03-05 21:53:27 -05:00
|
|
|
log_event(name, "started", "");
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("starting");
|
2026-03-05 15:31:08 -05:00
|
|
|
let start = std::time::Instant::now();
|
|
|
|
|
|
2026-03-05 21:53:27 -05:00
|
|
|
match f() {
|
|
|
|
|
Ok(()) => {
|
|
|
|
|
let duration = format!("{:.1}s", start.elapsed().as_secs_f64());
|
|
|
|
|
log_event(name, "completed", &duration);
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_result(&duration);
|
2026-03-05 21:53:27 -05:00
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
Err(e) => {
|
|
|
|
|
let duration = format!("{:.1}s", start.elapsed().as_secs_f64());
|
|
|
|
|
let msg = format!("{}: {}", duration, e);
|
|
|
|
|
log_event(name, "failed", &msg);
|
|
|
|
|
Err(TaskError::Retry(msg))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_experience_mine(ctx: &ExecutionContext, path: &str) -> Result<(), TaskError> {
|
2026-03-05 21:53:27 -05:00
|
|
|
let path = path.to_string();
|
2026-03-05 21:57:53 -05:00
|
|
|
run_job(ctx, &format!("experience-mine {}", path), || {
|
|
|
|
|
ctx.set_progress("loading store");
|
2026-03-05 21:53:27 -05:00
|
|
|
let mut store = crate::store::Store::load()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("mining");
|
2026-03-05 21:53:27 -05:00
|
|
|
let count = crate::enrich::experience_mine(&mut store, &path)?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("{} entries mined", count));
|
2026-03-05 21:53:27 -05:00
|
|
|
Ok(())
|
|
|
|
|
})
|
|
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_fact_mine(ctx: &ExecutionContext, path: &str) -> Result<(), TaskError> {
|
2026-03-05 21:53:27 -05:00
|
|
|
let path = path.to_string();
|
2026-03-05 21:57:53 -05:00
|
|
|
run_job(ctx, &format!("fact-mine {}", path), || {
|
|
|
|
|
ctx.set_progress("mining facts");
|
2026-03-05 21:53:27 -05:00
|
|
|
let p = std::path::Path::new(&path);
|
|
|
|
|
let count = crate::fact_mine::mine_and_store(p)?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("{} facts stored", count));
|
2026-03-05 21:53:27 -05:00
|
|
|
Ok(())
|
|
|
|
|
})
|
|
|
|
|
}
|
2026-03-05 15:31:08 -05:00
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_decay(ctx: &ExecutionContext) -> Result<(), TaskError> {
|
|
|
|
|
run_job(ctx, "decay", || {
|
|
|
|
|
ctx.set_progress("loading store");
|
2026-03-05 21:53:27 -05:00
|
|
|
let mut store = crate::store::Store::load()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("decaying");
|
2026-03-05 21:53:27 -05:00
|
|
|
let (decayed, pruned) = store.decay();
|
|
|
|
|
store.save()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("{} decayed, {} pruned", decayed, pruned));
|
2026-03-05 13:18:00 -05:00
|
|
|
Ok(())
|
2026-03-05 21:53:27 -05:00
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_consolidate(ctx: &ExecutionContext) -> Result<(), TaskError> {
|
|
|
|
|
run_job(ctx, "consolidate", || {
|
|
|
|
|
ctx.set_progress("loading store");
|
2026-03-05 21:53:27 -05:00
|
|
|
let mut store = crate::store::Store::load()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("consolidating");
|
2026-03-05 21:53:27 -05:00
|
|
|
crate::consolidate::consolidate_full(&mut store)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_knowledge_loop(ctx: &ExecutionContext) -> Result<(), TaskError> {
|
|
|
|
|
run_job(ctx, "knowledge-loop", || {
|
2026-03-05 21:53:27 -05:00
|
|
|
let config = crate::knowledge::KnowledgeLoopConfig {
|
|
|
|
|
max_cycles: 100,
|
|
|
|
|
batch_size: 5,
|
|
|
|
|
..Default::default()
|
2026-03-05 15:31:08 -05:00
|
|
|
};
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("running agents");
|
2026-03-05 21:53:27 -05:00
|
|
|
let results = crate::knowledge::run_knowledge_loop(&config)?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("{} cycles, {} actions",
|
2026-03-05 21:53:27 -05:00
|
|
|
results.len(),
|
2026-03-05 21:57:53 -05:00
|
|
|
results.iter().map(|r| r.total_applied).sum::<usize>()));
|
2026-03-05 21:53:27 -05:00
|
|
|
Ok(())
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_digest(ctx: &ExecutionContext) -> Result<(), TaskError> {
|
|
|
|
|
run_job(ctx, "digest", || {
|
|
|
|
|
ctx.set_progress("loading store");
|
2026-03-05 21:53:27 -05:00
|
|
|
let mut store = crate::store::Store::load()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("generating digests");
|
2026-03-05 21:53:27 -05:00
|
|
|
crate::digest::digest_auto(&mut store)
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
fn job_daily_check(ctx: &ExecutionContext) -> Result<(), TaskError> {
|
|
|
|
|
run_job(ctx, "daily-check", || {
|
|
|
|
|
ctx.set_progress("loading store");
|
2026-03-05 21:53:27 -05:00
|
|
|
let store = crate::store::Store::load()?;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("checking health");
|
|
|
|
|
let _report = crate::neuro::daily_check(&store);
|
2026-03-05 21:53:27 -05:00
|
|
|
Ok(())
|
|
|
|
|
})
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- Session detection ---
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
/// Find JSONL session files that are stale (not recently written) and not
|
|
|
|
|
/// held open by any process.
|
|
|
|
|
/// Find JSONL session files that haven't been written to recently.
|
|
|
|
|
/// Only checks metadata (stat), no file reads or subprocess calls.
|
|
|
|
|
/// The fuser check (is file open?) is deferred to the reconcile loop,
|
|
|
|
|
/// only for sessions that pass the mined-key filter.
|
|
|
|
|
fn find_stale_sessions() -> Vec<PathBuf> {
|
2026-03-05 13:18:00 -05:00
|
|
|
let projects = projects_dir();
|
|
|
|
|
if !projects.exists() {
|
|
|
|
|
return Vec::new();
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
let mut stale = Vec::new();
|
2026-03-05 13:18:00 -05:00
|
|
|
let now = SystemTime::now();
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
let Ok(dirs) = fs::read_dir(&projects) else { return stale };
|
2026-03-05 13:18:00 -05:00
|
|
|
for dir_entry in dirs.filter_map(|e| e.ok()) {
|
|
|
|
|
if !dir_entry.path().is_dir() { continue; }
|
|
|
|
|
let Ok(files) = fs::read_dir(dir_entry.path()) else { continue };
|
|
|
|
|
for f in files.filter_map(|e| e.ok()) {
|
|
|
|
|
let path = f.path();
|
|
|
|
|
if path.extension().map(|x| x == "jsonl").unwrap_or(false) {
|
|
|
|
|
if let Ok(meta) = path.metadata() {
|
|
|
|
|
if let Ok(mtime) = meta.modified() {
|
|
|
|
|
let age = now.duration_since(mtime).unwrap_or_default();
|
|
|
|
|
if age.as_secs() >= SESSION_STALE_SECS {
|
2026-03-05 15:31:08 -05:00
|
|
|
stale.push(path);
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 15:31:08 -05:00
|
|
|
stale
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
/// Check if any other process has a file open by scanning /proc/*/fd/.
|
|
|
|
|
/// This is what `fuser` does internally, without the subprocess overhead.
|
2026-03-05 13:18:00 -05:00
|
|
|
fn is_file_open(path: &Path) -> bool {
|
2026-03-05 15:31:08 -05:00
|
|
|
let Ok(target) = path.canonicalize() else { return false };
|
|
|
|
|
let Ok(procs) = fs::read_dir("/proc") else { return false };
|
|
|
|
|
let my_pid = std::process::id().to_string();
|
|
|
|
|
|
|
|
|
|
for proc_entry in procs.filter_map(|e| e.ok()) {
|
|
|
|
|
let name = proc_entry.file_name();
|
|
|
|
|
let name = name.to_string_lossy();
|
|
|
|
|
if !name.chars().all(|c| c.is_ascii_digit()) { continue; }
|
|
|
|
|
if *name == my_pid { continue; }
|
|
|
|
|
|
|
|
|
|
let fd_dir = proc_entry.path().join("fd");
|
|
|
|
|
let Ok(fds) = fs::read_dir(&fd_dir) else { continue };
|
|
|
|
|
for fd in fds.filter_map(|e| e.ok()) {
|
|
|
|
|
if let Ok(link) = fs::read_link(fd.path()) {
|
|
|
|
|
if link == target { return true; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Get process uptime as human-readable string by reading /proc/<pid>/stat.
|
|
|
|
|
fn proc_uptime(pid: u32) -> Option<String> {
|
|
|
|
|
// /proc/<pid>/stat field 22 (1-indexed) is start time in clock ticks
|
|
|
|
|
let stat = fs::read_to_string(format!("/proc/{}/stat", pid)).ok()?;
|
|
|
|
|
// Fields after comm (which may contain spaces/parens) — find closing paren
|
|
|
|
|
let after_comm = stat.get(stat.rfind(')')? + 2..)?;
|
|
|
|
|
let fields: Vec<&str> = after_comm.split_whitespace().collect();
|
|
|
|
|
// Field 22 in stat is index 19 after comm (fields[0] = state, field 22 = starttime = index 19)
|
|
|
|
|
let start_ticks: u64 = fields.get(19)?.parse().ok()?;
|
|
|
|
|
let ticks_per_sec = unsafe { libc::sysconf(libc::_SC_CLK_TCK) } as u64;
|
|
|
|
|
let boot_time_secs = {
|
|
|
|
|
let uptime = fs::read_to_string("/proc/uptime").ok()?;
|
|
|
|
|
let sys_uptime: f64 = uptime.split_whitespace().next()?.parse().ok()?;
|
|
|
|
|
let now = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).ok()?.as_secs();
|
|
|
|
|
now - sys_uptime as u64
|
|
|
|
|
};
|
|
|
|
|
let start_secs = boot_time_secs + start_ticks / ticks_per_sec;
|
|
|
|
|
let now = SystemTime::now().duration_since(SystemTime::UNIX_EPOCH).ok()?.as_secs();
|
|
|
|
|
let uptime = now.saturating_sub(start_secs);
|
|
|
|
|
|
|
|
|
|
Some(format_duration_human(uptime as u128 * 1000))
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- Status writing ---
|
|
|
|
|
|
|
|
|
|
fn write_status(choir: &Choir) {
|
|
|
|
|
let statuses = choir.task_statuses();
|
|
|
|
|
let status = DaemonStatus {
|
|
|
|
|
pid: std::process::id(),
|
|
|
|
|
tasks: statuses,
|
|
|
|
|
};
|
|
|
|
|
if let Ok(json) = serde_json::to_string_pretty(&status) {
|
|
|
|
|
let _ = fs::write(status_path(), json);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[derive(serde::Serialize, serde::Deserialize)]
|
|
|
|
|
struct DaemonStatus {
|
|
|
|
|
pid: u32,
|
|
|
|
|
tasks: Vec<TaskInfo>,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- The daemon ---
|
|
|
|
|
|
|
|
|
|
pub fn run_daemon() -> Result<(), String> {
|
|
|
|
|
let choir = Choir::new();
|
2026-03-05 15:31:08 -05:00
|
|
|
// Workers: 2 for long-running loops (scheduler, session-watcher),
|
|
|
|
|
// plus 1 for the actual LLM job (pool capacity is 1).
|
|
|
|
|
// Non-LLM jobs (decay, health) also need a worker, so 4 total.
|
|
|
|
|
let names: Vec<String> = (0..4).map(|i| format!("w{}", i)).collect();
|
|
|
|
|
let _workers: Vec<_> = names.iter().map(|n| choir.add_worker(n)).collect();
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
// LLM API: 1 concurrent call to control token burn rate
|
|
|
|
|
let llm = ResourcePool::new("llm", 1);
|
|
|
|
|
llm.bind(&choir);
|
2026-03-05 13:18:00 -05:00
|
|
|
|
|
|
|
|
log_event("daemon", "started", &format!("pid {}", std::process::id()));
|
|
|
|
|
eprintln!("poc-memory daemon started (pid {})", std::process::id());
|
|
|
|
|
|
|
|
|
|
// Write initial status
|
|
|
|
|
write_status(&choir);
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
// Session watcher: reconcile-based extraction
|
|
|
|
|
// Each tick: scan filesystem for stale sessions, check store for what's
|
|
|
|
|
// already mined, check task registry for what's in-flight, spawn the diff.
|
|
|
|
|
// No persistent tracking state — the store is the source of truth.
|
2026-03-05 13:18:00 -05:00
|
|
|
let choir_sw = Arc::clone(&choir);
|
2026-03-05 15:31:08 -05:00
|
|
|
let llm_sw = Arc::clone(&llm);
|
2026-03-05 13:18:00 -05:00
|
|
|
choir.spawn("session-watcher").init(move |ctx| {
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("idle");
|
2026-03-05 13:18:00 -05:00
|
|
|
loop {
|
|
|
|
|
if ctx.is_cancelled() {
|
|
|
|
|
return Err(TaskError::Fatal("cancelled".into()));
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("scanning");
|
2026-03-05 15:31:08 -05:00
|
|
|
// What's currently running/pending? (avoid spawning duplicates)
|
|
|
|
|
let active: HashSet<String> = choir_sw.task_statuses().iter()
|
|
|
|
|
.filter(|t| !t.status.is_finished())
|
|
|
|
|
.map(|t| t.name.clone())
|
|
|
|
|
.collect();
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
let stale = find_stale_sessions();
|
|
|
|
|
|
|
|
|
|
// Load mined transcript keys once for this tick
|
|
|
|
|
let mined = crate::enrich::mined_transcript_keys();
|
|
|
|
|
|
|
|
|
|
// Limit new tasks per tick — the resource pool gates execution,
|
|
|
|
|
// but we don't need thousands of task objects in the registry.
|
|
|
|
|
// The watcher ticks every 60s so backlog drains steadily.
|
|
|
|
|
const MAX_NEW_PER_TICK: usize = 10;
|
|
|
|
|
|
|
|
|
|
let mut queued = 0;
|
|
|
|
|
let mut already_mined = 0;
|
|
|
|
|
let mut still_open = 0;
|
|
|
|
|
let total_stale = stale.len();
|
|
|
|
|
for session in stale {
|
|
|
|
|
if queued >= MAX_NEW_PER_TICK { break; }
|
|
|
|
|
|
|
|
|
|
let filename = session.file_name()
|
2026-03-05 13:18:00 -05:00
|
|
|
.map(|n| n.to_string_lossy().to_string())
|
2026-03-05 15:31:08 -05:00
|
|
|
.unwrap_or_else(|| "unknown".into());
|
|
|
|
|
let task_name = format!("extract:{}", filename);
|
|
|
|
|
|
|
|
|
|
// Skip if already in-flight
|
|
|
|
|
if active.contains(&task_name) { continue; }
|
|
|
|
|
|
|
|
|
|
// Skip if already mined (filename key in store)
|
|
|
|
|
let path_str = session.to_string_lossy().to_string();
|
|
|
|
|
if crate::enrich::is_transcript_mined_with_keys(&mined, &path_str) {
|
|
|
|
|
already_mined += 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Skip if file is still open (active Claude session, possibly idle)
|
|
|
|
|
if is_file_open(&session) {
|
|
|
|
|
still_open += 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log_event("extract", "queued", &path_str);
|
|
|
|
|
let path = path_str.clone();
|
|
|
|
|
let extract = choir_sw.spawn(task_name)
|
|
|
|
|
.resource(&llm_sw)
|
2026-03-05 13:18:00 -05:00
|
|
|
.retries(2)
|
2026-03-05 21:57:53 -05:00
|
|
|
.init(move |ctx| {
|
|
|
|
|
job_experience_mine(ctx, &path)
|
2026-03-05 15:31:08 -05:00
|
|
|
})
|
|
|
|
|
.run();
|
|
|
|
|
|
|
|
|
|
// Chain fact-mine after experience-mine
|
|
|
|
|
let fact_task = format!("fact-mine:{}", filename);
|
|
|
|
|
if !active.contains(&fact_task) {
|
|
|
|
|
let path2 = path_str;
|
|
|
|
|
let mut fm = choir_sw.spawn(fact_task)
|
|
|
|
|
.resource(&llm_sw)
|
|
|
|
|
.retries(1)
|
2026-03-05 21:57:53 -05:00
|
|
|
.init(move |ctx| {
|
|
|
|
|
job_fact_mine(ctx, &path2)
|
2026-03-05 15:31:08 -05:00
|
|
|
});
|
|
|
|
|
fm.depend_on(&extract);
|
|
|
|
|
}
|
|
|
|
|
queued += 1;
|
|
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
if queued > 0 || still_open > 0 {
|
|
|
|
|
log_event("session-watcher", "tick",
|
|
|
|
|
&format!("{} stale, {} mined, {} open, {} queued",
|
|
|
|
|
total_stale, already_mined, still_open, queued));
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("{} queued, {} open", queued, still_open));
|
|
|
|
|
} else {
|
|
|
|
|
ctx.set_progress("idle");
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write_status(&choir_sw);
|
|
|
|
|
std::thread::sleep(SCHEDULER_INTERVAL);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Scheduler: runs daily jobs based on filesystem state
|
|
|
|
|
let choir_sched = Arc::clone(&choir);
|
2026-03-05 15:31:08 -05:00
|
|
|
let llm_sched = Arc::clone(&llm);
|
2026-03-05 13:18:00 -05:00
|
|
|
choir.spawn("scheduler").init(move |ctx| {
|
|
|
|
|
let mut last_daily = None::<chrono::NaiveDate>;
|
|
|
|
|
let mut last_health = std::time::Instant::now() - HEALTH_INTERVAL;
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress("idle");
|
2026-03-05 13:18:00 -05:00
|
|
|
|
|
|
|
|
loop {
|
|
|
|
|
if ctx.is_cancelled() {
|
|
|
|
|
return Err(TaskError::Fatal("cancelled".into()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let today = chrono::Local::now().date_naive();
|
|
|
|
|
|
|
|
|
|
// Health check: every hour
|
|
|
|
|
if last_health.elapsed() >= HEALTH_INTERVAL {
|
2026-03-05 21:57:53 -05:00
|
|
|
choir_sched.spawn("health").init(|ctx| {
|
|
|
|
|
job_daily_check(ctx)
|
2026-03-05 13:18:00 -05:00
|
|
|
});
|
|
|
|
|
last_health = std::time::Instant::now();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Daily jobs: once per day
|
|
|
|
|
if last_daily.is_none_or(|d| d < today) {
|
|
|
|
|
log_event("scheduler", "daily-trigger", &today.to_string());
|
|
|
|
|
|
|
|
|
|
// Decay (no API calls, fast)
|
2026-03-05 21:57:53 -05:00
|
|
|
choir_sched.spawn(format!("decay:{}", today)).init(|ctx| {
|
|
|
|
|
job_decay(ctx)
|
2026-03-05 13:18:00 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Consolidation pipeline: consolidate → knowledge-loop → digest
|
|
|
|
|
let consolidate = choir_sched.spawn(format!("consolidate:{}", today))
|
2026-03-05 15:31:08 -05:00
|
|
|
.resource(&llm_sched)
|
2026-03-05 13:18:00 -05:00
|
|
|
.retries(2)
|
2026-03-05 21:57:53 -05:00
|
|
|
.init(move |ctx| {
|
|
|
|
|
job_consolidate(ctx)
|
2026-03-05 13:18:00 -05:00
|
|
|
})
|
|
|
|
|
.run();
|
|
|
|
|
|
|
|
|
|
let mut knowledge = choir_sched.spawn(format!("knowledge-loop:{}", today))
|
2026-03-05 15:31:08 -05:00
|
|
|
.resource(&llm_sched)
|
2026-03-05 13:18:00 -05:00
|
|
|
.retries(1)
|
2026-03-05 21:57:53 -05:00
|
|
|
.init(move |ctx| {
|
|
|
|
|
job_knowledge_loop(ctx)
|
2026-03-05 13:18:00 -05:00
|
|
|
});
|
|
|
|
|
knowledge.depend_on(&consolidate);
|
|
|
|
|
let knowledge = knowledge.run();
|
|
|
|
|
|
|
|
|
|
let mut digest = choir_sched.spawn(format!("digest:{}", today))
|
2026-03-05 15:31:08 -05:00
|
|
|
.resource(&llm_sched)
|
2026-03-05 13:18:00 -05:00
|
|
|
.retries(1)
|
2026-03-05 21:57:53 -05:00
|
|
|
.init(move |ctx| {
|
|
|
|
|
job_digest(ctx)
|
2026-03-05 13:18:00 -05:00
|
|
|
});
|
|
|
|
|
digest.depend_on(&knowledge);
|
|
|
|
|
|
|
|
|
|
last_daily = Some(today);
|
2026-03-05 21:57:53 -05:00
|
|
|
ctx.set_progress(&format!("daily pipeline triggered ({})", today));
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Prune finished tasks from registry
|
|
|
|
|
let pruned = choir_sched.gc_finished();
|
|
|
|
|
if pruned > 0 {
|
|
|
|
|
log::trace!("pruned {} finished tasks", pruned);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
write_status(&choir_sched);
|
|
|
|
|
std::thread::sleep(SCHEDULER_INTERVAL);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
// Main thread: wait for Ctrl-C
|
|
|
|
|
let choir_main = Arc::clone(&choir);
|
|
|
|
|
ctrlc_wait();
|
|
|
|
|
|
|
|
|
|
log_event("daemon", "stopping", "");
|
|
|
|
|
eprintln!("Shutting down...");
|
|
|
|
|
|
|
|
|
|
// Cancel all tasks
|
|
|
|
|
for info in choir_main.task_statuses() {
|
|
|
|
|
if !info.status.is_finished() {
|
|
|
|
|
log_event(&info.name, "cancelling", "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// Workers will shut down when their handles are dropped
|
|
|
|
|
|
|
|
|
|
log_event("daemon", "stopped", "");
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn ctrlc_wait() {
|
|
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
|
static STOP: AtomicBool = AtomicBool::new(false);
|
|
|
|
|
|
|
|
|
|
unsafe {
|
|
|
|
|
libc::signal(libc::SIGINT, handle_signal as libc::sighandler_t);
|
|
|
|
|
libc::signal(libc::SIGTERM, handle_signal as libc::sighandler_t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
while !STOP.load(Ordering::Acquire) {
|
|
|
|
|
std::thread::sleep(Duration::from_millis(500));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
extern "C" fn handle_signal(_: libc::c_int) {
|
|
|
|
|
STOP.store(true, Ordering::Release);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// --- Status display ---
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
fn format_duration_human(ms: u128) -> String {
|
|
|
|
|
if ms < 1_000 {
|
|
|
|
|
format!("{}ms", ms)
|
|
|
|
|
} else if ms < 60_000 {
|
|
|
|
|
format!("{:.1}s", ms as f64 / 1000.0)
|
|
|
|
|
} else if ms < 3_600_000 {
|
|
|
|
|
format!("{:.0}m{:.0}s", ms / 60_000, (ms % 60_000) / 1000)
|
|
|
|
|
} else {
|
|
|
|
|
format!("{:.0}h{:.0}m", ms / 3_600_000, (ms % 3_600_000) / 60_000)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn task_group(name: &str) -> &str {
|
|
|
|
|
if name == "session-watcher" || name == "scheduler" { "core" }
|
|
|
|
|
else if name.starts_with("extract:") || name.starts_with("fact-mine:") { "extract" }
|
|
|
|
|
else if name.starts_with("consolidate:") || name.starts_with("knowledge-loop:")
|
|
|
|
|
|| name.starts_with("digest:") || name.starts_with("decay:") { "daily" }
|
|
|
|
|
else if name == "health" { "health" }
|
|
|
|
|
else { "other" }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn status_symbol(t: &TaskInfo) -> &'static str {
|
|
|
|
|
if t.cancelled { return "✗" }
|
|
|
|
|
match t.status {
|
|
|
|
|
TaskStatus::Running => "▶",
|
|
|
|
|
TaskStatus::Completed => "✓",
|
|
|
|
|
TaskStatus::Failed => "✗",
|
|
|
|
|
TaskStatus::Pending => "·",
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 13:18:00 -05:00
|
|
|
pub fn show_status() -> Result<(), String> {
|
|
|
|
|
let path = status_path();
|
|
|
|
|
if !path.exists() {
|
|
|
|
|
eprintln!("No daemon status file found. Is the daemon running?");
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let content = fs::read_to_string(&path)
|
|
|
|
|
.map_err(|e| format!("read status: {}", e))?;
|
|
|
|
|
let status: DaemonStatus = serde_json::from_str(&content)
|
|
|
|
|
.map_err(|e| format!("parse status: {}", e))?;
|
|
|
|
|
|
|
|
|
|
let alive = Path::new(&format!("/proc/{}", status.pid)).exists();
|
2026-03-05 15:31:08 -05:00
|
|
|
let state = if alive { "running" } else { "NOT RUNNING" };
|
|
|
|
|
|
|
|
|
|
// Show uptime from /proc/<pid>/stat start time
|
|
|
|
|
let uptime_str = if alive {
|
|
|
|
|
proc_uptime(status.pid).unwrap_or_default()
|
|
|
|
|
} else {
|
|
|
|
|
String::new()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if uptime_str.is_empty() {
|
|
|
|
|
eprintln!("poc-memory daemon pid={} {}", status.pid, state);
|
|
|
|
|
} else {
|
|
|
|
|
eprintln!("poc-memory daemon pid={} {} uptime {}", status.pid, state, uptime_str);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Status file age
|
|
|
|
|
if let Ok(meta) = fs::metadata(&path) {
|
|
|
|
|
if let Ok(modified) = meta.modified() {
|
|
|
|
|
let age = std::time::SystemTime::now().duration_since(modified).unwrap_or_default();
|
|
|
|
|
eprintln!(" status updated {}s ago", age.as_secs());
|
|
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if status.tasks.is_empty() {
|
2026-03-05 15:31:08 -05:00
|
|
|
eprintln!("\n No tasks");
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Count by status
|
|
|
|
|
let running = status.tasks.iter().filter(|t| matches!(t.status, TaskStatus::Running)).count();
|
|
|
|
|
let pending = status.tasks.iter().filter(|t| matches!(t.status, TaskStatus::Pending)).count();
|
|
|
|
|
let completed = status.tasks.iter().filter(|t| matches!(t.status, TaskStatus::Completed)).count();
|
|
|
|
|
let failed = status.tasks.iter().filter(|t| matches!(t.status, TaskStatus::Failed)).count();
|
|
|
|
|
eprintln!(" tasks: {} running, {} pending, {} done, {} failed\n",
|
|
|
|
|
running, pending, completed, failed);
|
|
|
|
|
|
|
|
|
|
// Group and display
|
|
|
|
|
let groups: &[(&str, &str)] = &[
|
|
|
|
|
("core", "Core"),
|
|
|
|
|
("daily", "Daily pipeline"),
|
|
|
|
|
("extract", "Session extraction"),
|
|
|
|
|
("health", "Health"),
|
|
|
|
|
("other", "Other"),
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
for (group_id, group_label) in groups {
|
|
|
|
|
let tasks: Vec<&TaskInfo> = status.tasks.iter()
|
|
|
|
|
.filter(|t| task_group(&t.name) == *group_id)
|
|
|
|
|
.collect();
|
|
|
|
|
if tasks.is_empty() { continue; }
|
|
|
|
|
|
|
|
|
|
// For extract group, show summary instead of individual tasks
|
|
|
|
|
if *group_id == "extract" {
|
|
|
|
|
let n_pending = tasks.iter().filter(|t| matches!(t.status, TaskStatus::Pending)).count();
|
|
|
|
|
let n_running = tasks.iter().filter(|t| matches!(t.status, TaskStatus::Running)).count();
|
|
|
|
|
let n_done = tasks.iter().filter(|t| matches!(t.status, TaskStatus::Completed)).count();
|
|
|
|
|
let n_failed = tasks.iter().filter(|t| matches!(t.status, TaskStatus::Failed)).count();
|
|
|
|
|
eprintln!(" {} ({} total)", group_label, tasks.len());
|
|
|
|
|
|
|
|
|
|
if n_running > 0 {
|
|
|
|
|
for t in tasks.iter().filter(|t| matches!(t.status, TaskStatus::Running)) {
|
2026-03-05 21:16:28 -05:00
|
|
|
let elapsed = if !t.elapsed.is_zero() {
|
|
|
|
|
format!(" ({})", format_duration_human(t.elapsed.as_millis()))
|
|
|
|
|
} else {
|
|
|
|
|
String::new()
|
|
|
|
|
};
|
2026-03-05 21:57:53 -05:00
|
|
|
let progress = t.progress.as_deref().map(|p| format!(" {}", p)).unwrap_or_default();
|
|
|
|
|
eprintln!(" {} {}{}{}", status_symbol(t), t.name, elapsed, progress);
|
2026-03-05 15:31:08 -05:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
let mut parts = Vec::new();
|
|
|
|
|
if n_done > 0 { parts.push(format!("{} done", n_done)); }
|
|
|
|
|
if n_running > 0 { parts.push(format!("{} running", n_running)); }
|
|
|
|
|
if n_pending > 0 { parts.push(format!("{} queued", n_pending)); }
|
|
|
|
|
if n_failed > 0 { parts.push(format!("{} FAILED", n_failed)); }
|
|
|
|
|
eprintln!(" {}", parts.join(", "));
|
|
|
|
|
|
|
|
|
|
// Show recent failures
|
|
|
|
|
for t in tasks.iter().filter(|t| matches!(t.status, TaskStatus::Failed)).take(3) {
|
|
|
|
|
if let Some(ref r) = t.result {
|
|
|
|
|
if let Some(ref err) = r.error {
|
|
|
|
|
let short = if err.len() > 80 { &err[..80] } else { err };
|
|
|
|
|
eprintln!(" ✗ {}: {}", t.name, short);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
eprintln!();
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eprintln!(" {}", group_label);
|
|
|
|
|
for t in &tasks {
|
|
|
|
|
let sym = status_symbol(t);
|
2026-03-05 21:16:28 -05:00
|
|
|
let duration = if matches!(t.status, TaskStatus::Running) && !t.elapsed.is_zero() {
|
|
|
|
|
format_duration_human(t.elapsed.as_millis())
|
|
|
|
|
} else {
|
|
|
|
|
t.result.as_ref()
|
|
|
|
|
.map(|r| format_duration_human(r.duration.as_millis()))
|
|
|
|
|
.unwrap_or_default()
|
|
|
|
|
};
|
2026-03-05 15:31:08 -05:00
|
|
|
|
|
|
|
|
let retry = if t.max_retries > 0 && t.retry_count > 0 {
|
|
|
|
|
format!(" retry {}/{}", t.retry_count, t.max_retries)
|
2026-03-05 13:18:00 -05:00
|
|
|
} else {
|
|
|
|
|
String::new()
|
|
|
|
|
};
|
2026-03-05 15:31:08 -05:00
|
|
|
|
2026-03-05 21:57:53 -05:00
|
|
|
let detail = if matches!(t.status, TaskStatus::Running) {
|
|
|
|
|
t.progress.as_deref().map(|p| format!(" {}", p)).unwrap_or_default()
|
|
|
|
|
} else {
|
|
|
|
|
t.result.as_ref()
|
|
|
|
|
.and_then(|r| r.error.as_ref())
|
|
|
|
|
.map(|e| {
|
|
|
|
|
let short = if e.len() > 60 { &e[..60] } else { e };
|
|
|
|
|
format!(" err: {}", short)
|
|
|
|
|
})
|
|
|
|
|
.unwrap_or_default()
|
|
|
|
|
};
|
2026-03-05 15:31:08 -05:00
|
|
|
|
|
|
|
|
if duration.is_empty() {
|
2026-03-05 21:57:53 -05:00
|
|
|
eprintln!(" {} {:30}{}{}", sym, t.name, retry, detail);
|
2026-03-05 15:31:08 -05:00
|
|
|
} else {
|
2026-03-05 21:57:53 -05:00
|
|
|
eprintln!(" {} {:30} {:>8}{}{}", sym, t.name, duration, retry, detail);
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
}
|
2026-03-05 15:31:08 -05:00
|
|
|
eprintln!();
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
2026-03-05 15:41:35 -05:00
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn install_service() -> Result<(), String> {
|
|
|
|
|
let exe = std::env::current_exe()
|
|
|
|
|
.map_err(|e| format!("current_exe: {}", e))?;
|
|
|
|
|
let home = std::env::var("HOME").map_err(|e| format!("HOME: {}", e))?;
|
|
|
|
|
|
|
|
|
|
let unit_dir = PathBuf::from(&home).join(".config/systemd/user");
|
|
|
|
|
fs::create_dir_all(&unit_dir)
|
|
|
|
|
.map_err(|e| format!("create {}: {}", unit_dir.display(), e))?;
|
|
|
|
|
|
|
|
|
|
let unit = format!(
|
|
|
|
|
r#"[Unit]
|
|
|
|
|
Description=poc-memory daemon — background memory maintenance
|
|
|
|
|
After=default.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=simple
|
|
|
|
|
ExecStart={exe} daemon
|
|
|
|
|
Restart=on-failure
|
|
|
|
|
RestartSec=30
|
|
|
|
|
Environment=HOME={home}
|
|
|
|
|
Environment=PATH={home}/.cargo/bin:{home}/.local/bin:{home}/bin:/usr/local/bin:/usr/bin:/bin
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=default.target
|
|
|
|
|
"#, exe = exe.display(), home = home);
|
|
|
|
|
|
|
|
|
|
let unit_path = unit_dir.join("poc-memory.service");
|
|
|
|
|
fs::write(&unit_path, &unit)
|
|
|
|
|
.map_err(|e| format!("write {}: {}", unit_path.display(), e))?;
|
|
|
|
|
eprintln!("Wrote {}", unit_path.display());
|
|
|
|
|
|
|
|
|
|
let status = std::process::Command::new("systemctl")
|
|
|
|
|
.args(["--user", "daemon-reload"])
|
|
|
|
|
.status()
|
|
|
|
|
.map_err(|e| format!("systemctl daemon-reload: {}", e))?;
|
|
|
|
|
if !status.success() {
|
|
|
|
|
return Err("systemctl daemon-reload failed".into());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let status = std::process::Command::new("systemctl")
|
|
|
|
|
.args(["--user", "enable", "--now", "poc-memory"])
|
|
|
|
|
.status()
|
|
|
|
|
.map_err(|e| format!("systemctl enable: {}", e))?;
|
|
|
|
|
if !status.success() {
|
|
|
|
|
return Err("systemctl enable --now failed".into());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eprintln!("Service enabled and started");
|
|
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
// Install poc-daemon service
|
|
|
|
|
install_notify_daemon(&unit_dir, &home)?;
|
|
|
|
|
|
|
|
|
|
// Install memory-search + poc-hook into Claude settings
|
2026-03-05 16:17:49 -05:00
|
|
|
install_hook()?;
|
2026-03-05 15:41:35 -05:00
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
/// Install the poc-daemon (notification/idle) systemd user service.
|
|
|
|
|
fn install_notify_daemon(unit_dir: &Path, home: &str) -> Result<(), String> {
|
|
|
|
|
let poc_daemon = PathBuf::from(home).join(".cargo/bin/poc-daemon");
|
|
|
|
|
if !poc_daemon.exists() {
|
|
|
|
|
eprintln!("Warning: poc-daemon not found at {} — skipping service install", poc_daemon.display());
|
|
|
|
|
eprintln!(" Build with: cargo install --path .");
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let unit = format!(
|
|
|
|
|
r#"[Unit]
|
|
|
|
|
Description=poc-daemon — notification routing and idle management
|
|
|
|
|
After=default.target
|
|
|
|
|
|
|
|
|
|
[Service]
|
|
|
|
|
Type=simple
|
2026-03-05 21:32:27 -05:00
|
|
|
ExecStart={exe} daemon
|
2026-03-05 21:16:28 -05:00
|
|
|
Restart=on-failure
|
|
|
|
|
RestartSec=10
|
|
|
|
|
Environment=HOME={home}
|
|
|
|
|
Environment=PATH={home}/.cargo/bin:{home}/.local/bin:{home}/bin:/usr/local/bin:/usr/bin:/bin
|
|
|
|
|
|
|
|
|
|
[Install]
|
|
|
|
|
WantedBy=default.target
|
|
|
|
|
"#, exe = poc_daemon.display(), home = home);
|
|
|
|
|
|
|
|
|
|
let unit_path = unit_dir.join("poc-daemon.service");
|
|
|
|
|
fs::write(&unit_path, &unit)
|
|
|
|
|
.map_err(|e| format!("write {}: {}", unit_path.display(), e))?;
|
|
|
|
|
eprintln!("Wrote {}", unit_path.display());
|
|
|
|
|
|
|
|
|
|
let status = std::process::Command::new("systemctl")
|
|
|
|
|
.args(["--user", "daemon-reload"])
|
|
|
|
|
.status()
|
|
|
|
|
.map_err(|e| format!("systemctl daemon-reload: {}", e))?;
|
|
|
|
|
if !status.success() {
|
|
|
|
|
return Err("systemctl daemon-reload failed".into());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let status = std::process::Command::new("systemctl")
|
|
|
|
|
.args(["--user", "enable", "--now", "poc-daemon"])
|
|
|
|
|
.status()
|
|
|
|
|
.map_err(|e| format!("systemctl enable: {}", e))?;
|
|
|
|
|
if !status.success() {
|
|
|
|
|
return Err("systemctl enable --now poc-daemon failed".into());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
eprintln!("poc-daemon service enabled and started");
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Install memory-search and poc-hook into Claude Code settings.json.
|
2026-03-05 16:17:49 -05:00
|
|
|
/// Public so `poc-memory init` can call it too.
|
2026-03-05 21:16:28 -05:00
|
|
|
///
|
|
|
|
|
/// Hook layout:
|
|
|
|
|
/// UserPromptSubmit: memory-search (10s), poc-hook (5s)
|
|
|
|
|
/// PostToolUse: poc-hook (5s)
|
|
|
|
|
/// Stop: poc-hook (5s)
|
2026-03-05 16:17:49 -05:00
|
|
|
pub fn install_hook() -> Result<(), String> {
|
|
|
|
|
let home = std::env::var("HOME").map_err(|e| format!("HOME: {}", e))?;
|
|
|
|
|
let exe = std::env::current_exe()
|
|
|
|
|
.map_err(|e| format!("current_exe: {}", e))?;
|
|
|
|
|
let settings_path = PathBuf::from(&home).join(".claude/settings.json");
|
2026-03-05 15:41:35 -05:00
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
let memory_search = exe.with_file_name("memory-search");
|
|
|
|
|
let poc_hook = exe.with_file_name("poc-hook");
|
2026-03-05 15:41:35 -05:00
|
|
|
|
|
|
|
|
let mut settings: serde_json::Value = if settings_path.exists() {
|
|
|
|
|
let content = fs::read_to_string(&settings_path)
|
|
|
|
|
.map_err(|e| format!("read settings: {}", e))?;
|
|
|
|
|
serde_json::from_str(&content)
|
|
|
|
|
.map_err(|e| format!("parse settings: {}", e))?
|
|
|
|
|
} else {
|
|
|
|
|
serde_json::json!({})
|
|
|
|
|
};
|
|
|
|
|
|
2026-03-05 15:54:44 -05:00
|
|
|
let obj = settings.as_object_mut().ok_or("settings not an object")?;
|
|
|
|
|
let hooks_obj = obj.entry("hooks")
|
2026-03-05 15:41:35 -05:00
|
|
|
.or_insert_with(|| serde_json::json!({}))
|
2026-03-05 15:54:44 -05:00
|
|
|
.as_object_mut().ok_or("hooks not an object")?;
|
2026-03-05 15:41:35 -05:00
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
let mut changed = false;
|
|
|
|
|
|
|
|
|
|
// Helper: ensure a hook binary is present in an event's hook list
|
|
|
|
|
let ensure_hook = |hooks_obj: &mut serde_json::Map<String, serde_json::Value>,
|
|
|
|
|
event: &str,
|
|
|
|
|
binary: &Path,
|
|
|
|
|
timeout: u32,
|
|
|
|
|
changed: &mut bool| {
|
|
|
|
|
if !binary.exists() {
|
|
|
|
|
eprintln!("Warning: {} not found — skipping", binary.display());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let cmd = binary.to_string_lossy().to_string();
|
|
|
|
|
let name = binary.file_name().unwrap().to_string_lossy().to_string();
|
|
|
|
|
|
|
|
|
|
let event_array = hooks_obj.entry(event)
|
|
|
|
|
.or_insert_with(|| serde_json::json!([{"hooks": []}]))
|
|
|
|
|
.as_array_mut().unwrap();
|
|
|
|
|
if event_array.is_empty() {
|
|
|
|
|
event_array.push(serde_json::json!({"hooks": []}));
|
|
|
|
|
}
|
|
|
|
|
let inner = event_array[0]
|
|
|
|
|
.as_object_mut().unwrap()
|
|
|
|
|
.entry("hooks")
|
|
|
|
|
.or_insert_with(|| serde_json::json!([]))
|
|
|
|
|
.as_array_mut().unwrap();
|
|
|
|
|
|
|
|
|
|
// Remove legacy load-memory.sh
|
|
|
|
|
let before = inner.len();
|
|
|
|
|
inner.retain(|h| {
|
|
|
|
|
let c = h.get("command").and_then(|c| c.as_str()).unwrap_or("");
|
|
|
|
|
!c.contains("load-memory")
|
|
|
|
|
});
|
|
|
|
|
if inner.len() < before {
|
|
|
|
|
eprintln!("Removed load-memory.sh from {event}");
|
|
|
|
|
*changed = true;
|
|
|
|
|
}
|
2026-03-05 15:54:44 -05:00
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
let already = inner.iter().any(|h| {
|
|
|
|
|
h.get("command").and_then(|c| c.as_str())
|
|
|
|
|
.is_some_and(|c| c.contains(&name))
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
if !already {
|
|
|
|
|
inner.push(serde_json::json!({
|
|
|
|
|
"type": "command",
|
|
|
|
|
"command": cmd,
|
|
|
|
|
"timeout": timeout
|
|
|
|
|
}));
|
|
|
|
|
*changed = true;
|
|
|
|
|
eprintln!("Installed {name} in {event}");
|
|
|
|
|
}
|
|
|
|
|
};
|
2026-03-05 15:41:35 -05:00
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
// UserPromptSubmit: memory-search + poc-hook
|
|
|
|
|
ensure_hook(hooks_obj, "UserPromptSubmit", &memory_search, 10, &mut changed);
|
|
|
|
|
ensure_hook(hooks_obj, "UserPromptSubmit", &poc_hook, 5, &mut changed);
|
2026-03-05 15:54:44 -05:00
|
|
|
|
2026-03-05 21:16:28 -05:00
|
|
|
// PostToolUse + Stop: poc-hook only
|
|
|
|
|
ensure_hook(hooks_obj, "PostToolUse", &poc_hook, 5, &mut changed);
|
|
|
|
|
ensure_hook(hooks_obj, "Stop", &poc_hook, 5, &mut changed);
|
2026-03-05 15:54:44 -05:00
|
|
|
|
|
|
|
|
if changed {
|
2026-03-05 15:41:35 -05:00
|
|
|
let json = serde_json::to_string_pretty(&settings)
|
|
|
|
|
.map_err(|e| format!("serialize settings: {}", e))?;
|
|
|
|
|
fs::write(&settings_path, json)
|
|
|
|
|
.map_err(|e| format!("write settings: {}", e))?;
|
2026-03-05 21:16:28 -05:00
|
|
|
eprintln!("Updated {}", settings_path.display());
|
|
|
|
|
} else {
|
|
|
|
|
eprintln!("All hooks already installed in {}", settings_path.display());
|
2026-03-05 15:41:35 -05:00
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn show_log(job_filter: Option<&str>, lines: usize) -> Result<(), String> {
|
|
|
|
|
let path = log_path();
|
|
|
|
|
if !path.exists() {
|
|
|
|
|
eprintln!("No daemon log found.");
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let content = fs::read_to_string(&path)
|
|
|
|
|
.map_err(|e| format!("read log: {}", e))?;
|
|
|
|
|
|
|
|
|
|
let filtered: Vec<&str> = content.lines().rev()
|
|
|
|
|
.filter(|line| {
|
|
|
|
|
if let Some(job) = job_filter {
|
|
|
|
|
line.contains(&format!("\"job\":\"{}\"", job))
|
|
|
|
|
} else {
|
|
|
|
|
true
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.take(lines)
|
|
|
|
|
.collect();
|
|
|
|
|
|
2026-03-05 15:31:08 -05:00
|
|
|
if filtered.is_empty() {
|
|
|
|
|
eprintln!("No log entries{}", job_filter.map(|j| format!(" for job '{}'", j)).unwrap_or_default());
|
|
|
|
|
return Ok(());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Pretty-print: parse JSON and format as "TIME JOB EVENT [DETAIL]"
|
2026-03-05 13:18:00 -05:00
|
|
|
for line in filtered.into_iter().rev() {
|
2026-03-05 15:31:08 -05:00
|
|
|
if let Ok(obj) = serde_json::from_str::<serde_json::Value>(line) {
|
|
|
|
|
let ts = obj.get("ts").and_then(|v| v.as_str()).unwrap_or("?");
|
|
|
|
|
let job = obj.get("job").and_then(|v| v.as_str()).unwrap_or("?");
|
|
|
|
|
let event = obj.get("event").and_then(|v| v.as_str()).unwrap_or("?");
|
|
|
|
|
let detail = obj.get("detail").and_then(|v| v.as_str()).unwrap_or("");
|
|
|
|
|
|
|
|
|
|
// Shorten timestamp to just time portion
|
|
|
|
|
let time = if ts.len() >= 19 { &ts[11..19] } else { ts };
|
|
|
|
|
|
|
|
|
|
if detail.is_empty() {
|
|
|
|
|
eprintln!(" {} {:20} {}", time, job, event);
|
|
|
|
|
} else {
|
|
|
|
|
// Truncate long details (file paths)
|
|
|
|
|
let short = if detail.len() > 60 {
|
|
|
|
|
let last = detail.rfind('/').map(|i| &detail[i+1..]).unwrap_or(detail);
|
|
|
|
|
if last.len() > 60 { &last[..60] } else { last }
|
|
|
|
|
} else {
|
|
|
|
|
detail
|
|
|
|
|
};
|
|
|
|
|
eprintln!(" {} {:20} {:12} {}", time, job, event, short);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
eprintln!("{}", line);
|
|
|
|
|
}
|
2026-03-05 13:18:00 -05:00
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|