Your AI Coworker - Right in Your Terminal
Sudosu gives you AI coworkers that can actually get work done. Unlike chatbots that just talk, these teammates can read your files, write code, create documents, connect to all your tools (Gmail, Calendar, GitHub, Linear, Slack), and run commands - all while you stay in control.
No more hopping between tools. Your AI coworker does it all.
pip install sudosuZero configuration required. Just install and run:
# Install
pip install sudosu
# Start using immediately - no setup needed!
sudosuThat's it! Sudosu works out of the box with our hosted backend.
# Start interactive session
sudosu
# Then just ask:
> Summarize the unread emails in my inbox
> Create a Linear ticket for the bug we discussed
> Check my calendar for tomorrow and draft a prep email
> Go through #product-team slack and summarize yesterday's messages# Inside sudosu, connect integrations:
/connect gmail # Connect Gmail
/connect slack # Connect Slack
/connect linear # Connect Linear
/connect github # Connect GitHub
/connect notion # Connect NotionWant to run your own backend? You can self-host the Sudosu backend with Docker Compose:
-
Download the compose file: https://gist.github.com/csakash/d26619add372013af6d0e7b119af28c0
-
Create a
.envfile with your credentials:
GOOGLE_API_KEY=your-google-api-key-here
COMPOSIO_API_KEY=your-composio-api-key-here
DATABASE_URL=postgresql://user:password@host:5432/database
RESEND_API_KEY=your-resend-api-key-here
LOG_LEVEL=INFO- Start all services:
docker-compose up -dThis will start:
- Backend API server (port 8000)
- Redis (for task queue)
- Background worker (for async tasks)
After starting your backend, configure the CLI:
sudosu
> /config mode dev
> /config backend ws://localhost:8000/ws- PostgreSQL Database: Any provider (Neon, Supabase, local, etc.)
- API Keys:
For detailed self-hosting instructions, contact akash@trysudosu.com
- 🚀 Zero Config: Install and run - works immediately with hosted backend
- 🤖 AI Coworkers: Create specialized coworkers with specific personalities and capabilities
- 🔌 Tool Integrations: Connect to Gmail, Calendar, GitHub, Linear, Slack, Notion, and more
- 📝 File Operations: Coworkers can read and write files in your repository
- 🔄 Real-time Streaming: See responses as they're generated
- 🔒 Local Execution: File operations happen on your machine, keeping data secure
- ⚡ Action-Oriented: Your coworkers don't just answer questions — they take action
| Command | Description |
|---|---|
/help |
Show all available commands |
/connect <service> |
Connect an integration (gmail, slack, etc.) |
/disconnect <service> |
Disconnect an integration |
/integrations |
Show connected integrations |
/agent create <name> |
Create a new agent |
/agent list |
List available agents |
/clear |
Clear the screen |
/quit |
Exit sudosu |
Sudosu works out of the box, but you can customize it:
# Development mode (local backend)
export SUDOSU_MODE=dev
sudosu
# Production mode (default - uses hosted backend)
export SUDOSU_MODE=prod
sudosu
# Or switch within CLI
/config mode dev # Switch to development
/config mode prod # Switch to productionSudosu stores minimal global config in ~/.sudosu/:
~/.sudosu/
└── config.yaml # API keys, mode settings, user ID
Project-level configuration is created automatically when you run sudosu in any folder:
your-project/
└── .sudosu/
├── AGENT.md # Your customizable AI assistant prompt
├── agents/ # Custom agents created with /agent create
└── context.md # (optional) Project context for all agents
Edit .sudosu/AGENT.md to customize how your AI assistant behaves in that project.
- Python 3.10+
- Internet connection (for hosted backend)
- Website: trysudosu.com
- Issues: GitHub Issues
MIT