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,…
Use when the owner asks about their calendar, email, meetings, Linear, Notion, Slack, Google Drive, GitHub or any other third-party app or the data in it ('what's on my calendar', 'any email from Sam', 'my Linear issues', 'find the Drive doc'), asks to connect one, asks to
$ npx -y skills add sonichi/sutando --skill connect-apps --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/connect-appsContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when the owner asks about their calendar, email, meetings, Linear, Notion, Slack, Google Drive, GitHub or any other third-party app or the data in it ('what's on my calendar', 'any email from Sam', 'my Linear issues', 'find the Drive doc'), asks to connect one, asks to
name: connect-apps
description: "Use when the owner asks about their calendar, email, meetings, Linear, Notion, Slack, Google Drive, GitHub or any other third-party app or the data in it ('what's on my calendar', 'any email from Sam', 'my Linear issues', 'find the Drive doc'), asks to connect one, asks to switch or change their <app> account, reconnect <app> or use a different <app> account, asks which apps they are connected to, asks to disconnect <app>, or says 'done' / 'connected' / 'I signed in' / 'switched' after you sent a Connect or Switch account card. Answers through the Superpower Station connector tools (composio_find, composio_exec). When an app isn't connected yet, posts ONE Connect card to the owner (in their DM as a message; in a room with other people privately, under their message, visible only to them), closes the task, and answers by itself once they sign in, with no engine restart."The owner's apps (Google Calendar, Gmail, Google Meet, Google Drive, Slack, Linear, Notion, GitHub, and a thousand more) are reached through the `sutando-station` MCP server. A connection made mid-session works at once; nothing here ever needs a restart.
When an app isn't connected, the flow looks like this in the owner's chat:
1. You: "Your Google Calendar isn't connected yet, so I can't peek at your schedule. Want to hook it up?" 2. A card: the app's icon and name with a **Connect** button. 3. You: "Once that's done I'll be able to check what's coming up for you." The task ends here. 4. After sign-in you continue by yourself: "Your Google Calendar is connected and ready to go. Here's your Friday: ..."
In a room with other people, lines 1 to 3 are not messages: they are a **private card** under the owner's message, inside their "Only visible to you" activity card, which no other member receives. The room sees nothing about connecting, only your reply once the request is done (step 3b).
Every request gets exactly one answer: the steps below check for a wait before answering.
`{"apps":[{toolkit, name, icon_url, connected, auth_mode, coming_soon}], "actions":[{toolkit, action, description, inputSchema}], "next_step"?}`. `apps` matches app names ("google calendar", "linear"); actions are listed for connected apps and for an exact `toolkit` slug.
whose message contains `connect_required` means the app is not connected.
activated a minute ago. See "Paid cloud tools" below.
C="<this skill's directory>/scripts/connectors.py"
python3 "$C" find "google calendar" # exact catalog app: {"match": {...} | null, "suggestions": [...]}
python3 "$C" status googlecalendar --room '<room id>' # connected? plus the room's pending and resumed waits
python3 "$C" status # every connection: id, toolkit, name, status, accountLabel
python3 "$C" card googlecalendar --room '<room id>' --reply-to '<source_message_id>' \
--task '<task id>' --owner-from-task --request-file - <<'SUTANDO_REQUEST'
<the owner request, verbatim>
SUTANDO_REQUEST
# the owner's DM: checks the catalog and the connections, arms the wait, prints "message" to post
python3 "$C" card youtube --room '<shared room id>' --reply-to '<source_message_id>' \
--task '<task id>' --owner-from-task --private \
--line "YouTube isn't connected yet, so I can't do that. Connect it here and I'll carry on." \
--line "Once that's done I'll pull up your latest videos." --request-file - <<'SUTANDO_REQUEST'
<the owner request, verbatim>
SUTANDO_REQUEST
# a room with other people: writes the private card under the owner's message; nothing to post
python3 "$C" card linear --room '<room id>' --reply-to '<source_message_id>' \
--task '<task id>' --owner-from-task --switch --request-file - <<'SUTANDO_REQUEST'
<the owner request, verbatim>
SUTANDO_REQUEST
# a Switch account card (add --private in a room with other people)
python3 "$C" note '<wait id>' "YouTube is connected. On it." [--status connected] # a private-card line
python3 "$C" claim '<room id>' # before answering in a room that may have a wait
python3 "$C" verify-account '<wait id>' # a resume: is the wait's AG2 Cloud account the one in use now?
python3 "$C" rearm # restart dead waiters (startup + proactive loop run it)`card` is `status` + `await` in one process: the catalog check for each slug, one connections read, one account read, then the wait (merged with the room's pending waits for the same apps and account, exactly as `await`). `--owner-from-task` takes the owner from the task file's `user_id`, so you never call `ag2.whoami` for it. `--line` is optional: the first line is the intro (the text above the card in the DM, the first line of a private card); without it a plain default is used. `await` (same arguments, `--owner '<owner mxid>'` required, no catalog or connections check, no message) still exists for the same wait; `card` is the one to use.
Pass the owner's words only through the quoted heredoc above, never inside a quoted `--request` argument: their text (an apostrophe, a quote) must never become shell. `--line` and `note` text is yours, not the owner's: plain sentences, no quotes from their message.
| exit | meaning | |---|---| | 0 | done: a match, all apps connected, a wait recorded (or `card` found every app connected), a wait claimed, the account verified | | 1 | a negative answer: no exact match, an app not connected, nothing claimed, `account_changed`, `account_unknown`, `no_such_wait` | | 2 | a setup problem to relay, never retry: `not_signed_in`, `connectors_disabled`, `unknown_app`, `coming_soon`,
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)…