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,…
Scans Gmail for active paid subscriptions and tracks them over time. Surfaces additions / cancellations between scans.
$ npx -y skills add sonichi/sutando --skill subscription-scanner --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/subscription-scannerContext preview
The summary Claude sees to decide when to auto-load this skill.
Scans Gmail for active paid subscriptions and tracks them over time. Surfaces additions / cancellations between scans.
Scans Gmail for active paid subscriptions and tracks them over time. Surfaces additions / cancellations between scans.
The scan is **agent-driven**, not script-driven, because Gmail access lives in the Claude Code MCP layer (not in Python). The proactive-loop or owner-on-demand fires the scan via:
/scan-subscriptions
…or the cron job below invokes the agent with the `scan-prompt.md` body verbatim.
{
"last_scan": "ISO8601 timestamp",
"subscriptions": [
{
"vendor": "Apple iCloud+ 2TB",
"category": "Storage|Streaming|Connectivity|Insurance|Software|Membership|Other",
"amount": 9.99,
"currency": "USD",
"frequency": "monthly|annual|other",
"account": "a.kunte@gmail.com or family member name",
"last_charged": "YYYY-MM-DD",
"next_charge": "YYYY-MM-DD or null",
"status": "active|cancelled|uncertain",
"source_sender": "email From: address that established this",
"notes": "free-form caveats / corrections"
}
],
"scan_history": [
{
"date": "ISO8601",
"active_count": <int>,
"added": ["vendor names"],
"removed": ["vendor names"],
"amount_changed": [{"vendor": "...", "from": <num>, "to": <num>}]
}
]
}`web-client.ts` route at `/paidsubscriptions`: 1. Reads `skills/subscription-scanner/state/subscriptions.json` 2. Renders a sortable table with vendor, amount, frequency, account, status, last/next charge 3. Highlights diffs from the previous snapshot (`scan_history[-1].added` in green, `removed` in strikethrough red) 4. Shows last-scan timestamp at the top 5. Provides a "Scan now" button that POSTs to `/paidsubscriptions/scan` — that endpoint writes a task file to `tasks/` triggering an out-of-cycle scan in the next loop pass
Monthly: 1st of every month at 08:13 (off-peak minute) — see `skills/schedule-crons/crons.json` entry `subscription-scan`.
`crons.json` is gitignored (per-user), so the entry isn't in this repo. Add it manually after cloning:
{
"name": "subscription-scan",
"cron": "13 8 1 * *",
"prompt": "Run the monthly paid-subscription scan. Read the full instructions in skills/subscription-scanner/scan-prompt.md and follow them verbatim. Update skills/subscription-scanner/state/subscriptions.json with the latest list, snapshot the previous version to state/history/, and write a proactive Telegram notification to results/proactive-{ts}.txt only if subscriptions were added, removed, or had price changes since the previous scan. Stay silent if nothing changed."
}The cron expression `13 8 1 * *` fires at 08:13 on the 1st of every month. Bump to `*/10 * * * *` during development to trigger every 10 min.
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)…