Quickstart

Spin up Veyra, install the CLI, and trigger your first autonomous run in under five minutes.

1. Create an account

Sign up at the dashboard and create your first workspace. Workspaces are billing and access boundaries — invite teammates later from Settings → Team.

2. Install the CLI

bash
# macOS / Linux
curl -fsSL https://veyra.tubox.cloud/install.sh | sh

# or via npm
npm i -g @veyra/cli

3. Authenticate

bash
veyra login
# opens a browser to bind your machine to your workspace

4. Run your first agent

  1. Navigate to any local repository.
  2. Describe the change you want in plain English.
  3. Veyra plans, edits, runs tests, and self-heals if anything fails.
bash
cd my-app
veyra run "Add a /health endpoint that returns 200 with build SHA, and a passing test"

5. Inspect the trace

Open Run history in the dashboard to see every tool call, file diff and recovery step. Each run is fully reproducible.

Tip
Use the Playground in the dashboard to test prompts against multiple models without spending an agent run.
Hello