fix(daemon): make the Herdr socket group-writable (0770) (Sam & Claude) #25
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "fix-colibri-socket-perms"
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?
Re-landed on current main (the earlier branch never merged — main moved under
it). Operators hit "permission denied" connecting to the colibri daemon from
colibri-tui / the
clawdiehelper: socket.rs binds the Unix socket but neversets its mode, so it stays at the umask default (0755 = owner-only write).
Connecting needs WRITE perm, so a colibri-group member (clawdie) gets EACCES.
chmod the socket to 0770 after bind. Shared socket::serve, so it covers both
colibri-daemon and the clawdie agent.
Co-Authored-By: Claude Opus 4.8 noreply@anthropic.com