Quickstart
Get Suzent running in under 5 minutes.
1. Install
Prerequisites: Node.js 20+ and Git.
- Windows
- Mac / Linux
irm https://raw.githubusercontent.com/cyzus/suzent/main/scripts/setup.ps1 | iex
curl -fsSL https://raw.githubusercontent.com/cyzus/suzent/main/scripts/setup.sh | bash
The script installs Suzent and any missing dependencies (Python/uv, Rust, build tools).
2. Launch
suzent start
This starts the backend and opens the desktop interface.
3. Add Your Model Provider
Once the UI is open, go to Settings → Providers to configure your API key. The most common starting points:
- OpenAI
- Anthropic
- Google Gemini
Get your key: platform.openai.com/api-keys → Create new secret key (starts with sk-...)
In Settings, open the OpenAI card → API KEYS tab → CHANGE → paste your key. Then go to the MODELS tab → FETCH, select the models you want, and click Save Changes.
Get your key: console.anthropic.com/settings/keys → Create Key (starts with sk-ant-...)
In Settings, open the Anthropic card → API KEYS tab → CHANGE → paste your key. Then go to the MODELS tab → FETCH, select the models you want, and click Save Changes.
Get your key (free tier available): aistudio.google.com/app/apikey → Create API Key (starts with AIza...)
In Settings, open the Google Gemini card → API KEYS tab → CHANGE → paste your key. Then go to the MODELS tab → FETCH, select the models you want, and click Save Changes.
Using DeepSeek, Grok, OpenRouter, Ollama, or another provider? See the full Providers reference.
4. Start Chatting
Pick a model from the model selector in the chat window and send your first message.
That's it. Your agent has memory, tools, and automation ready out of the box.
Troubleshooting
"Command not found: suzent" — Restart your terminal after installation. If it still fails, check the setup script output for how to manually add the scripts folder to your PATH.
"System Health Check Failed"
suzent doctor
Port conflict on startup — suzent start detects conflicts and asks if you want to kill blocking processes. Type y to proceed.
Updating
suzent update
Next Steps
- What is Suzent? — Understand the architecture
- Providers — Full list of supported models and providers
- Tools — See everything your agent can do
- Memory — How persistent memory works
- Automation — Schedule tasks and set up heartbeat monitors