AGENTS / GITHUB / sutando
githubinferredactive

sutando

provenance:github:sonichi/sutando
WHAT THIS AGENT DOES

Sutando is like having a personal assistant that can see your screen, join your meetings, and even make phone calls for you – all controlled by your voice. It solves the problem of being overwhelmed by work and constantly needing to be at your computer, freeing you up to focus on other things. Busy professionals, entrepreneurs, or anyone juggling multiple tasks would find Sutando incredibly helpful for boosting productivity and staying on top of their workload.

View Source ↗First seen 19d agoNot yet hireable
README
# Sutando

[![Discord](https://img.shields.io/badge/Discord-Join-5865F2?logo=discord&logoColor=white)](https://discord.gg/uZHWXXmrCS) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE) [![Website](https://img.shields.io/badge/Web-sutando.ai-blue)](https://sutando.ai)

**Summon your AI superpower — voice, vision, and autonomous action.**

It shares your screen, joins your meetings, makes phone calls, and builds itself.

It belongs entirely to you.

> *Named after [Stands](https://jojo.fandom.com/wiki/Stand) from JoJo's Bizarre Adventure — a personal spirit that fights on your behalf. Like a Stand, Sutando starts unnamed. As it learns your style and earns real capabilities, it names itself and generates its own avatar — your Stand, unique to you.*

https://github.com/user-attachments/assets/a3f1f9a8-9fe2-4775-bc09-50c7d6713a11

Unmute to hear the real-time conversation. In this demo, the user controls their Mac entirely from a phone call — no need to be at the computer. [Watch on YouTube →](https://youtu.be/BgRUXEzZRN4)

---

## What can you do with it?

**Talk while you work.** You're looking at a doc. You say "make this paragraph shorter." Sutando sees your screen, rewrites the paragraph, and replaces the original text directly.

**Join meetings for you.** "Join my 2pm call." It reads your calendar and joins — Zoom via the desktop app, Google Meet via the browser — with computer audio. It can also dial in by phone when you ask. It takes screenshots to identify participants, does live research when someone asks a question, and writes you a summary when the call ends. Meeting access is gated — it messages you on Telegram asking for approval before enabling task delegation.

**Make calls for you.** "Call her and leave a message." Sutando looks up the contact, dials the number, has the conversation, and reports back — while you keep working. It can even make concurrent calls while in a meeting.

**Work from your phone.** Call Sutando and say "summon." It opens Zoom with screen sharing — join from your phone to see its screen in real time. "What's on my screen?" — it takes a screenshot and tells you. "Fix the typo in that file" — done. You scroll, switch apps, navigate — all by voice while walking around.

**Get better on its own.** When you're not giving it tasks, Sutando runs an autonomous build loop — it monitors its own health, detects patterns in how you work, discovers new skills, and builds missing capabilities. Most of Sutando's code was written this way. It learns from your corrections and adapts over time.

**Remember everything — and act on it.** You have an idea while walking. Say it out loud. Sutando captures it, tags it, and saves it as a searchable note. If there's something actionable, it starts working on it right away or queues it for the next free cycle.

**Reach you anywhere.** Voice, Zoom, Google Meet, Telegram, Discord, web, phone, or email — same agent, same memory, any channel.

---

## Status: Alpha

This is an early-stage project. Honest status:

| | Count | Details |
|---|---|---|
| **Verified working** | 29 | Voice, screen capture, notes, calendar, reminders, contacts, browser, phone calls, meeting dial-in, task delegation, pattern detection, health check, dashboard, Telegram, Discord, onboarding tutorial, and more |
| **Needs external setup** | 3 | Twilio (phone), Telegram bot, Discord bot |

We're looking for contributors to help test and harden these capabilities. If you try something and it breaks, [open an issue](https://github.com/sonichi/sutando/issues).

---

## How it works

```
    You ──voice──► Voice agent ──────────┐
     │                                   │ file bridge
     ├──telegram──► Telegram bridge ─────┤ tasks/ ──► Core agent
     │                                   │ ◄── results/     │
     ├──discord───► Discord bridge  ─────┤       │    uses anything:
     │                                   │       ▼    email, calendar, browser,
     └──browser───► Web client ──────────┘  speaks /  files, phone, reminders...
                                            replies
```

Two processes work together:
- **Voice agent** (Gemini Live) — listens and talks in real time, runs as a background daemon
- **Core agent** (Claude Code CLI) — executes tasks with full system access. We use the CLI because it provides cron scheduling, plugins, and an interactive terminal that the SDK doesn't offer out of the box.

They communicate through files: voice agent writes tasks, the core agent executes them, writes results back, voice agent speaks the answer.

---

## Quick start

**Prerequisites:**
- macOS 15+
- [Claude Code](https://docs.anthropic.com/en/docs/claude-code/getting-started) (run `claude` once to complete login)
- Node.js 22+ (`brew install node`)
- fswatch (`brew install fswatch`)
- [Google AI Studio API key](https://ai.google.dev) (free — click "Get API key")

```bash
# Clone
git clone https://github.com/sonichi/sutando.git
cd sutando

# Configure (minimum: GEMINI_API_KEY is required)
cp .env.example .env
# Edit .env — add your GEMINI_API_KEY (from Google AI Studio)

# Start everything
bash src/startup.sh
```

This starts all services (voice agent, web client, dashboard, API) and opens http://localhost:8080 in your browser. The autonomous loop starts automatically — click **Connect** and start talking.

> **Note:** `startup.sh` runs Claude Code with `--dangerously-skip-permissions`, giving Sutando full system access (file operations, terminal commands, browser control). This is required for autonomous operation but means you should review what it does. All actions are logged. Keep the terminal window accessible — you may need to respond there when Claude Code runs out of quota or prompts for input (e.g., CLI commands, permission confirmations).

**macOS permissions** — grant these on first run (System Settings → Privacy & Security):
- **Screen Recording** → add `claude` and `node`
- **Accessibility** → add Shortcuts.app (for context drop)
- **Microphone** → Chrome will ask on first voice connect

**Try saying:**
- "What's on my screen?" — takes a screenshot and describes it
- "Summon" — opens Zoom with screen sharing, join from your phone
- "Join my next meeting" — checks your calendar and joins
- "Take a note: my first idea" — saves a searchable note
- "Tutorial" — walks you through all capabilities step by step

**Verify your setup** (optional):
```bash
bash src/verify-setup.sh
```

**Troubleshooting:**
- Browser shows blank page? Services may still be starting — wait 5 seconds and refresh
- Microphone not working? Chrome will ask for permission on first connect — click Allow
- Voice agent not responding? Check `src/voice-agent.log` for errors. Common causes:
  - `GEMINI_API_KEY` not set or invalid in `.env` — get one at [ai.google.dev](https://ai.google.dev)
  - Port 9900 already in use — run `lsof -i :9900` to check
- `npm install` failed? Make sure Node.js 22+ is installed: `node --version`
- Something broke? Run `bash src/restart.sh` — this kills all services and restarts fresh

---

## Optional integrations

These unlock more capabilities. Add to `.env` when ready:

| Integration | What it unlocks | Setup |
|-------------|----------------|-------|
| Gmail | Read/send/search email from voice | `gws auth setup --login` (OAuth, no app password) |
| Twilio + ngrok | Phone calls, SMS, meeting dial-in, task delegation via phone | [twilio.com](https://www.twilio.com) (~$1/mo) + `brew install ngrok` |
| Telegram | Message Sutando from your phone | [Create bot via @BotFather](https://t.me/BotFather), then `/telegram:configure <token>` |
| Discord | Message Sutando from Discord (DM + channel @mentions) | [Developer portal](https://discord.com/developers), then `/discord:configure <token>` |
| Claude for Chrome | Browser automation — navigate, read pages, fill forms, interact with web apps | [Install extension](https://claude.ai/chrome), log in with the same account as Claude Code |
| Conte

[truncated…]

PUBLIC HISTORY

First discoveredMar 31, 2026

IDENTITY

inferred

Identity inferred from code signals. No PROVENANCE.yml found.

Is this yours? Claim it →

METADATA

platformgithub
first seenMar 28, 2026
last updatedMar 30, 2026
last crawled2 days ago
version

README BADGE

Add to your README:

![Provenance](https://getprovenance.dev/api/badge?id=provenance:github:sonichi/sutando)