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,…
Safely upgrade this Sutando checkout to the latest upstream code **without bricking the running core session** — the "success path" distilled from a real 2026-07-20 upgrade that would otherwise hang (and did, the first time).
$ npx -y skills add sonichi/sutando --skill self-upgrade --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/self-upgradeContext preview
The summary Claude sees to decide when to auto-load this skill.
Safely upgrade this Sutando checkout to the latest upstream code **without bricking the running core session** — the "success path" distilled from a real 2026-07-20 upgrade that would otherwise hang (and did, the first time).
Safely upgrade this Sutando checkout to the latest upstream code **without bricking the running core session** — the "success path" distilled from a real 2026-07-20 upgrade that would otherwise hang (and did, the first time).
**Usage**: `/self-upgrade`
A naive "pull + restart" self-upgrade gets **stuck**, because:
1. `src/restart.sh` ends with `exec bash src/startup.sh`. 2. `src/startup.sh` runs **foreground** work and **foreground-parents the credential-proxy** (a `tsx` process that never exits). The open-source core is headless: the optional Swift helpers (`ax-read`, `Sutando.app`) are built separately by the app packaging/setup workflow, not by core startup. 3. So running `restart.sh` **inline** from the core session never returns — the Bash call hangs forever, the task never gets a result, and from the owner's side you've "gone stuck."
The fix is simple once you know it: **hand the restart to the same durable tmux server that owns the core**. A plain `nohup … &` is not enough: the supported Codex executor tears down that process tree when the tool call ends. A detached tmux service pane survives that boundary, remains the parent of restarted services, and lets startup recreate the managed task notifier.
Run the helper. It aborts safely on a dirty tree or a non-fast-forward, pulls `--ff-only`, and launches `src/restart.sh` in the persistent **`sutando-services` tmux session**:
bash skills/self-upgrade/scripts/upgrade.sh # origin/main # bash skills/self-upgrade/scripts/upgrade.sh --no-restart # pull only
Exit `0` = upgraded (or already latest); exit `2` = aborted (dirty tree / not a fast-forward) — surface the reason and stop.
If the diff touched `package*.json` / `tsconfig` / `*.swift` / `requirements` (the script prints this), a rebuild may be needed. For `*.swift`, rebuild the optional menu-bar app and `ax-read` through the app setup workflow; core `startup.sh` intentionally does not build them. For npm deps run `npm ci` before relying on the TS services.
python3 src/health-check.py
Expect **"All systems operational."** Confirm the core survived (the restart log contains `sutando-core already running` — `restart.sh` never touches the core CLI), the managed `sutando-core-watcher` tmux session exists, and bridges came back on **new PIDs**. `telegram-bridge` / `slack-bridge` warnings are fine if they were already optional/unconfigured.
For live-path evidence, submit one task through `POST /task`, write its result, and confirm `GET /result/<id>` returns that exact body after the restart.
Report to the owner: old → new commit, how many commits, whether a rebuild was needed, and that the core stayed up.
do not rely on plain `nohup … &`. Inline = stuck; an executor may reap the nohup child. Use the helper's durable tmux handoff.
It deliberately parks after startup completes so background bridges keep their durable parent. The helper marks the session `done` and only replaces that completed session when a later upgrade actually needs another restart.
watch-tasks-stream` also matches *other* installs (e.g. a `/tmp/…` checkout); match the full repo path, not a bare pattern.
clobber them; commit or stash before upgrading.
`sutando-services` tmux handoff that outlives task executors and keeps the bridge parent alive after startup; completion markers are isolated per tmux socket.
behind → 0) where the naive inline restart hung on startup.sh's foreground Swift build + credential-proxy hold.
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)…