Suzi

Introduction

The Suzi CLI is the core harness powering every Suzi interface — from the web dashboard to Telegram.

The Suzi CLI is the foundational layer of the entire Suzi platform. Every interface — the web dashboard, Telegram bot (Suzi Claw), and AI-assisted workflows — is built on top of the same CLI primitives. When Suzi Claw executes a command in a cloud sandbox, it's running the CLI. When the web dashboard deploys an agent, it's calling the same APIs the CLI uses.

This means anything you can do through the CLI, you can also automate, script, or build custom tooling around. The CLI is not just a developer convenience — it's the primary harness that powers the platform.

If you want the power-user Telegram surface on top of the same primitives, read the Suzi Claw docs.

What You Can Do

  • Deploy and manage agents — write TypeScript agents that trade, monitor, and react to on-chain events autonomously
  • Execute protocol actions — interact with Polymarket, Solana, and other protocols directly from your terminal
  • Monitor everything — view portfolio, orders, transactions, and debug agent behavior with Datadog integration
  • Share and collaborate — share agents via links, import others' agents, fork and iterate
  • Integrate with AI — use Claude Code or Codex to build agents interactively with full platform context

Getting Started

# Install the CLI
npm install -g suzi-cli

# Sign in
suzi login

# Start building an agent with AI assistance
suzi start

From here, explore the CLI Reference for the full command documentation, check out Suzi Claw for the Telegram interface, or read the Agent SDK if you are writing agent code directly.