agent-activity
Streams what the agent is doing into the room, as rows the desktop client renders in an **events drawer** above the composer (collapsed: avatar, pulsing dots,…
Sends mid-task progress updates to the channel a task came from (Slack, Discord, or Telegram).
$ npx -y skills add sonichi/sutando --skill task-progress --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/task-progressContext preview
The summary Claude sees to decide when to auto-load this skill.
Sends mid-task progress updates to the channel a task came from (Slack, Discord, or Telegram).
Sends mid-task progress updates to the channel a task came from (Slack, Discord, or Telegram).
For tasks that need a progress update, **call notify.py as the FIRST action after reading the task — before transcription, web searches, code reads, or any other tool call.** The user's first signal that you received a long-running task must be the notification, not silence followed by a result minutes later.
`notify.py` is only for short progress/status updates. Do **not** use it to send the answer, findings, recommendations, completed list, PR summary, or any other final result. Final task delivery must go through the authoritative task result file (`results/task-<id>.txt`, or the channel-specific result path named in the task).
Keep notify bodies short: at most 280 characters and 4 non-empty lines. The script rejects longer messages so a final answer cannot accidentally be sent directly and then duplicated by the bridge when it delivers the result file.
If you already sent the final answer through another approved path, write `[REPLIED]` to the task result file so the bridge archives the task without sending a duplicate.
When a task contains a voice attachment (`[File attached: ...]`), notify BEFORE calling the transcription script. Transcription takes 10–30 seconds — the user should not wait in silence.
Wrong order: 1. Read task (sees voice attachment) 2. Call transcribe.py ← 20s of silence 3. Process transcript 4. Return result ← user waited 60+ seconds with no signal
Correct order: 1. Read task (sees voice attachment) 2. **Notify: "Got your voice message, give me a moment."** ← user knows within seconds 3. Call transcribe.py 4. Process — if research needed, notify again before starting 5. Return result
Wrong order: 1. Read task 2. Do research (WebSearch, WebFetch, file reads, analysis...) 3. ← user waits 2 min with no signal 4. Notify "on it" 5. Return result
Correct order: 1. Read task 2. **Notify immediately** ← user knows you got it within seconds 3. Do research / work 4. Notify at key checkpoints 5. Return result
Notify at task-start when any of these apply:
No notification needed for:
**When in doubt, notify.** A false positive (notifying for a 30-second task) is far less annoying than silence for 2 minutes on a research task.
Read the task file to get `source` and `channel_id` (or `chat_id` for Telegram), then call **immediately after reading the task**:
python3 $CLAUDE_CONFIG_DIR/skills/task-progress/scripts/notify.py \ --source slack \ --channel-id D0B5L7X2TK2 \ --message "On it — looking into that now. Back in a minute."
For research tasks, be specific about what you're doing:
--message "Researching Trigify setup time now — back in a minute."
For a Slack @mention (threaded reply), add `--thread-ts <ts>` to keep the update in-thread.
Mid-task checkpoint update:
python3 $CLAUDE_CONFIG_DIR/skills/task-progress/scripts/notify.py \ --source slack \ --channel-id D0B5L7X2TK2 \ --message "Done with the research — writing up the summary now."
| source | field in task file | CLI flag | |-----------|---------------------|-----------------| | slack | `channel_id:` | `--channel-id` | | discord | `channel_id:` | `--channel-id` | | telegram | `chat_id:` | `--chat-id` |
Optional for Slack @mentions: `reply_thread_ts:` → `--thread-ts`
All three share one resolver (`src/channel_token.resolve_channel_token`), the same one the bridges use, so a token stored only via `vault set` resolves here too. If `src/` is not importable the vault tier is skipped rather than raising — a progress notification never fails a task.
Discord mention validation is on by default. Use a resolved user snowflake (`<@USER_ID>`), not a GitHub-style `@handle`. Before posting, `notify.py` checks each user ID through Discord; after posting, it verifies the response's `mentions` array. An unresolved mention exits 1 with an agent-visible error.
For intentional plain-text handles that should not ping anyone, pass `--no-validate-mentions`.
A failed send (missing token, network error) prints a warning to stderr and exits 1. **Always continue working on the task regardless of exit code.** The notification is best-effort — task delivery via the result file is the authoritative path.
My AI Stand — Realtime by Day, Rewriting Itself by Night. Summon my AI superpower. Voice, vision, screen, meetings, calls when I'm engaged. Learns my patterns, ships its own code when I'm not. Runs across my Macs, interacts with people & their Stands.
Repo: sonichi/sutando
Streams what the agent is doing into the room, as rows the desktop client renders in an **events drawer** above the composer (collapsed: avatar, pulsing dots,…
Local Agent Registry — a standalone, dependency-free service that tracks running Claude Code (and other) agent instances. Agents self-register on startup and…
**Prefer the `ag2-space` MCP tools when they are connected and the room exposes them** — availability is per-room and per-actor, so check…
Deterministic final-answer normalizer — a last-step pass for any task that ends in a *precise* answer (a number, a short string, a comma-list). Applies the…
Transcribes audio files and voice notes to text via Gemini 2.5-flash. Integrates with Slack, Discord, and Telegram bridges so voice clips surface as readable…
Act back on the owner's Bee wearable — the TOOL half of the Bee integration (channels-vs-tools split). The Bee CHANNEL (ag2-sparrow's `sources/bee.py` watcher)…