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,…
File a bug report, feature request, or feedback about Sutando to the team from any surface (chat, Discord, Telegram, or a voice-delegated task) — or automatically (--auto) when the agent itself hits a Sutando/AG2 Space bug. Reuses the cloud /api/feedback API and auto-attaches
$ npx -y skills add sonichi/sutando --skill report-feedback --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/report-feedbackContext preview
The summary Claude sees to decide when to auto-load this skill.
File a bug report, feature request, or feedback about Sutando to the team from any surface (chat, Discord, Telegram, or a voice-delegated task) — or automatically (--auto) when the agent itself hits a Sutando/AG2 Space bug. Reuses the cloud /api/feedback API and auto-attaches
name: report-feedback description: File a bug report, feature request, or feedback about Sutando to the team from any surface (chat, Discord, Telegram, or a voice-delegated task) — or automatically (--auto) when the agent itself hits a Sutando/AG2 Space bug. Reuses the cloud /api/feedback API and auto-attaches diagnostic context. Use when the user says "report a bug", "something's broken, file it", "I have a feature request", etc.
When the user asks to **report a bug / issue / feature request / feedback about Sutando itself** — e.g. "report a bug", "something's broken, file it", "I have a feature request" — use this skill to file it.
It posts to the cloud `/api/feedback` route (the same one the desktop "Report an issue" form uses, which mirrors into GitHub issues) and auto-attaches diagnostic context (platform + a tail of recent workspace logs), so you don't need to gather logs yourself.
This is the **single reporting path for all surfaces** — chat, Discord, Telegram, and voice (which reaches it by delegating the task to the core agent). There is intentionally no separate voice tool, to avoid duplicating the same capability.
python3 skills/report-feedback/report-feedback.py \ --title "<short one-line summary>" \ [--body "<what happened, steps to reproduce, what was expected>"] \ [--kind bug|feature|other] \ [--severity low|medium|high|critical] \ [--no-logs] [--auto]
The owner's approval step for automatic reports. Instead of filing, the report is parked as a draft under `<workspace>/state/feedback-drafts/<id>.json` and registered in the engine's HITL store (`src/hitl`) as a `HumanRequirement`: the gateway bridge projects it as the owner's card — **File this bug report · File without logs · Skip** — into its proactive room, and applies the click with the same stale-revision guard every other card gets. Nothing is posted by this script, so it needs no gateway env.
# ask (also what --auto does when feedback-prefs.json has "askFirst": true): python3 skills/report-feedback/report-feedback.py --auto --title "..." --body "..." # after the owner answers (the click is durable in the HITL store): run the clicked choices python3 skills/report-feedback/report-feedback.py --apply python3 skills/report-feedback/report-feedback.py --drafts # pending drafts, oldest first python3 skills/report-feedback/report-feedback.py --decide <draft-id> file|file_no_logs|skip # by hand
`turn_on_action`, so the bridge records the click and then lets the same relay task through to the core (and re-forwards it if the relay redelivers the same click before that task was written, so a death in between cannot lose the turn); that task carries the header `hitl_click: true` and the card label as its body — it is a click already recorded, not an instruction: answer `[no-send]`, do not file by hand, and let the turn end — and the skill's `Stop` hook (`manifest.json` → `hooks/apply-clicks.py`, registered by `bash src/install-claude-hooks.sh` like every skill hook) runs `apply_clicks()` as that turn ends. `--apply` is the same routine by hand. It also registers any parked draft whose card was never created (a store write that failed at ask time exits 3 and keeps the draft).
to `<id>.filed`, the card is resolved, the receipt removed; a 4xx (the server refused, nothing written) renames it back to a draft. A 5xx proves nothing (the write may have committed), so like no answer at all (a transport error, a death mid-request) it leaves `<id>.posting`, and `--apply` **holds** it — never re-posted on a guess. A held draft is owner-visible: the answered card closes and a new card asks "Bug report: filed or not? — File it again / Skip"; its click runs through the same path (`file` re-posts on purpose, `skip` drops the in-flight draft). `--drafts` lists parked drafts; in-flight ones are visible to `list_drafts(ws, state="posting")`, and `--decide <id> file|skip` settles one by hand and closes its cards. The payload carries `context.idempotency_key = <draft id>` for a server-side check.
Logs are gathered only after the choice — the card carries the title only.
is asked, and the off-switch applies to `--ask` as well as `--auto`.
When **you** (not the user) determine that a bug or error is caused by Sutando itself or AG2 Space — engine services, bridges, the desktop app, AG2 Space connectivity, or the AG2 cloud — file it automatically with `--auto`. Never `--auto`-file problems in the use
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)…