refactor: update lifecycle mail targets from daemon/ to deacon/ (gt-5af.5)

Update all code and documentation to use deacon/ instead of daemon/
for lifecycle mail targets:

- internal/cmd/handoff.go: getManager() returns deacon/ for Mayor/Witness
- internal/daemon/lifecycle.go: ProcessLifecycleRequests uses deacon/ inbox
- docs/architecture.md: update all references in lifecycle docs
- scripts/mayor-respawn-daemon.sh: use BD_IDENTITY=deacon for mail commands

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Steve Yegge
2025-12-19 17:26:16 -08:00
parent 6479dddb9b
commit 178bebee40
5 changed files with 228 additions and 209 deletions

View File

@@ -225,7 +225,7 @@ func preFlightChecks() error {
func getManager(role Role) string {
switch role {
case RoleMayor, RoleWitness:
return "daemon/"
return "deacon/"
case RolePolecat, RoleRefinery:
// Would need rig context to determine witness address
// For now, use a placeholder pattern
@@ -233,7 +233,7 @@ func getManager(role Role) string {
case RoleCrew:
return "human" // Crew is human-managed
default:
return "daemon/"
return "deacon/"
}
}

View File

@@ -19,10 +19,10 @@ type BeadsMessage struct {
Status string `json:"status"`
}
// ProcessLifecycleRequests checks for and processes lifecycle requests from the daemon inbox.
// ProcessLifecycleRequests checks for and processes lifecycle requests from the deacon inbox.
func (d *Daemon) ProcessLifecycleRequests() {
// Get mail for daemon identity
cmd := exec.Command("bd", "mail", "inbox", "--identity", "daemon/", "--json")
// Get mail for deacon identity
cmd := exec.Command("bd", "mail", "inbox", "--identity", "deacon/", "--json")
cmd.Dir = d.config.TownRoot
output, err := cmd.Output()