Files
bmad-autonomous-development/skills/bad/references/coordinator/pattern-notify.md
stephenleo 494a7390f9 refactor(bad): reorganize references into coordinator/ and subagents/ subdirs
Rename reference files into semantic subdirectories:
- coordinator/: gate-pre-continuation, pattern-monitor, pattern-notify, pattern-timer
- subagents/: phase0-graph, phase0-prompt, phase3-merge

Extract Phase 0 subagent prompt into phase0-prompt.md; SKILL.md now
delegates to it with a single-line read instruction. Update all internal
cross-references to reflect new paths.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-04-11 13:26:40 +08:00

620 B

Notify Pattern

Use this pattern every time a 📣 Notify: callout appears anywhere in the BAD skill — including inside the Timer Pattern and Monitor Pattern.

If NOTIFY_SOURCE="telegram": call mcp__plugin_telegram_telegram__reply with:

  • chat_id: NOTIFY_CHAT_ID
  • text: the message

If NOTIFY_SOURCE="terminal" (or if the Telegram tool call fails): print the message in the conversation as a normal response.

Always send both a terminal print and a channel message — the terminal print keeps the in-session transcript readable, and the channel message reaches the user on their device.