Phase 3c: nixpkgs-unstable for claude-code; harness calls claude --print, falls back to echo

This commit is contained in:
müde 2026-05-14 22:26:14 +02:00
parent 2fe9e91005
commit 6e7fd2e897
6 changed files with 106 additions and 45 deletions

View file

@ -36,10 +36,7 @@ impl Coordinator {
let socket_path = Self::socket_path(name);
let socket =
agent_server::start(name.to_owned(), socket_path, self.broker.clone()).await?;
self.agents
.lock()
.unwrap()
.insert(name.to_owned(), socket);
self.agents.lock().unwrap().insert(name.to_owned(), socket);
Ok(agent_dir)
}