fix(handoff): write crew state.json to correct location

The daemon verifies requesting_cycle=true in state.json before
executing lifecycle actions. For crew workers, the state file
must be at <townRoot>/<rig>/crew/<name>/state.json.

🤖 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-21 01:24:56 -08:00
parent dbecfe1d38
commit 199da5aa9b

View File

@@ -464,6 +464,20 @@ func setRequestingState(role Role, action HandoffAction, townRoot string) error
case RoleWitness:
// Would need rig context
stateFile = filepath.Join(townRoot, "witness", "state.json")
case RoleCrew:
// Crew state: <townRoot>/<rig>/crew/<name>/state.json
if crewID := getCrewIdentity(); crewID != "" {
// crewID format: <rig>-crew-<name>
parts := strings.SplitN(crewID, "-crew-", 2)
if len(parts) == 2 {
stateFile = filepath.Join(townRoot, parts[0], "crew", parts[1], "state.json")
}
}
if stateFile == "" {
// Fallback to cwd
cwd, _ := os.Getwd()
stateFile = filepath.Join(cwd, "state.json")
}
default:
// For other roles, use a generic location
stateFile = filepath.Join(townRoot, ".gastown", "agent-state.json")