Getting Started

Install the CLI, add a prepaid balance, and run your first real engineering task in under two minutes.

1. Add a prepaid balance

Go to sweetcli.com/billing, sign in with your email (no password — we send a one-time code), and add a balance. Start with as little as $5.

2. Install Sweet

npm install -g @sweet-cli/sweet

Requires Node.js 18+. Verify with node -v.

3. Authenticate

sweet login

Uses the same email as your billing account. Auth is stored in ~/.sweet/config.json.

4. Navigate to your project and run a task

cd my-project
sweet start "fix the failing tests in the auth module"

Sweet will read your codebase, plan the work, and execute it. Hit Ctrl-C at any point to redirect or review.

Verify your setup

sweet --help          # show all commands
sweet --list-sessions # list previous sessions

Next steps