fix: wakeup message says 'continue in same session', not 'only reply WAKEUP_OK' #9
Reference in New Issue
Block a user
Delete Branch "fix/wakeup-message-no-ack-only"
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?
E2e of
init-hf-projectexposed an ack-only trap in the wakeup message text. The original phrasing —"Follow the hf-wakeup workflow … Only reply WAKEUP_OK in this session."— contradicts itself; MiniMax-M2.5 obeys the literalonlyand stops after the ack. The scheduler re-wakes every 30s because the slot staysnot_started, and the agent ack-loops forever (3 consecutive WAKEUP_OK-only replies for slot 7 in dind-t2).Rewrites the message to be unambiguous: first-line
WAKEUP_OKack, then continue the workflow in the SAME session (calendar_status → task → sub-workflow → calendar_complete/abort), with an explicit warning that stopping after the ack leaves the slot stuck innot_started.Version 0.3.3 → 0.3.4.
🤖 Generated with Claude Code
E2e showed the old wakeup text trapped agents in an ack-only loop: > "You have due slots. Follow the `hf-wakeup` workflow of skill > `hf-hangman-lab` to proceed. Only reply `WAKEUP_OK` in this session." The two clauses contradicted each other — "follow the workflow" vs "only reply WAKEUP_OK". MiniMax-M2.5 prioritised the literal "only" and never proceeded past the ack; the scheduler then re-woke every 30s because the slot stayed `not_started`, and the agent kept re-acking forever (verified: 3 consecutive WAKEUP_OK-only replies across slot 7). Rewrites the wakeup message to be explicit: - first line MUST be `WAKEUP_OK` (the ack token the plugin looks for) - then continue IN THE SAME session: drive calendar_status → task fetch → sub-workflow → calendar_complete/abort - flags the loop trap so the agent knows what to avoid Bumps version 0.3.3 → 0.3.4. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>