fix: show idle polecats as idle, not working
The display was normalizing idle → working which was misleading. Idle polecats should show as idle so operators know to nuke them. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
committed by
beads/crew/dave
parent
a16b94ffa8
commit
36d64eee14
@@ -433,11 +433,8 @@ func runPolecatList(cmd *cobra.Command, args []string) error {
|
|||||||
sessionStatus = style.Success.Render("●")
|
sessionStatus = style.Success.Render("●")
|
||||||
}
|
}
|
||||||
|
|
||||||
// Normalize state for display (legacy idle/active → working)
|
// Display actual state (no normalization - idle means idle)
|
||||||
displayState := p.State
|
displayState := p.State
|
||||||
if p.State == polecat.StateIdle || p.State == polecat.StateActive {
|
|
||||||
displayState = polecat.StateWorking
|
|
||||||
}
|
|
||||||
|
|
||||||
// State color
|
// State color
|
||||||
stateStr := string(displayState)
|
stateStr := string(displayState)
|
||||||
|
|||||||
Reference in New Issue
Block a user