refactor: rename the daemon socket API Herdr* -> Colibri* (Sam & Claude) #30
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "refactor/rename-herdr-socket-to-colibri"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
The colibri-daemon's own control-plane socket was named after Herdr (the AGPL
Linux supervision tool whose protocol shape it borrowed), which made logs/types
("Herdr socket API listening", HerdrCommand/HerdrResponse) look like a Herdr
dependency. There is none — no herdr crate, process, or network call. zot is the
agent; this is Colibri's control-plane socket.
Renamed Colibri's OWN API only:
socket.rs + colibri-client usages).
socket" -> "Colibri control-plane socket" (daemon, clawdie).
Wire-compatible: the JSON
cmdvalues come from #[serde(rename=...)] and areunchanged. Kept legitimate references to Herdr the tool (glasspane lineage
"reimplements Herdr's glasspane capability", "Herdr's 5-state model"; client
"display clients (Herdr on Linux…)"; tui "herdr-like").
build + test + clippy -D warnings + fmt --check clean; runtime confirms the
daemon now logs "Colibri control-plane socket listening".
Co-Authored-By: Claude Opus 4.8 noreply@anthropic.com
The colibri-daemon's own control-plane socket was named after Herdr (the AGPL Linux supervision tool whose protocol shape it borrowed), which made logs/types ("Herdr socket API listening", HerdrCommand/HerdrResponse) look like a Herdr dependency. There is none — no herdr crate, process, or network call. zot is the agent; this is Colibri's control-plane socket. Renamed Colibri's OWN API only: - HerdrCommand -> ColibriCommand, HerdrResponse -> ColibriResponse (daemon defs + socket.rs + colibri-client usages). - log/doc/Cargo strings: "Herdr socket API"/"operator dashboard"/"Herdr Unix socket" -> "Colibri control-plane socket" (daemon, clawdie). Wire-compatible: the JSON `cmd` values come from #[serde(rename=...)] and are unchanged. Kept legitimate references to Herdr *the tool* (glasspane lineage "reimplements Herdr's glasspane capability", "Herdr's 5-state model"; client "display clients (Herdr on Linux…)"; tui "herdr-like"). build + test + clippy -D warnings + fmt --check clean; runtime confirms the daemon now logs "Colibri control-plane socket listening". Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>