Use when you need to inspect team worker runtime state or decide whether to wake, sleep, or ensure-ready a worker. Team Leaders must use team-state.json as the source of truth for idle decisions.
Use this skill when you need to manage worker runtime state inside your team.
team-state.json to decide whether a worker is idle.hiclaw worker status --team <team> to inspect runtime state before taking action.ensure-ready when a worker has active work and might be sleeping.# List runtime state for all workers in your team
hiclaw worker status --team <team-name>
# Wake a worker that should resume work
hiclaw worker wake --name <worker-name> --team <team-name>
# Ensure a worker is ready before or after task assignment
hiclaw worker ensure-ready --name <worker-name> --team <team-name>
# Sleep a worker only after team-state.json shows no active work for that worker
hiclaw worker sleep --name <worker-name> --team <team-name>
./team-state.json.hiclaw worker status --team <team-name>.ensure-readysleepwake or ensure-ready