Veris Sandbox

Spin up a full
simulation sandbox
for your
customer support agent

Isolated cloud environments pre-loaded with
hundreds of generated test scenarios
simulated interactive user personas
simulated tools populated with data
Intercom Zendesk Slack Email
Test every aspect of your agent and get a detailed report in minutes.
1

Install & log in

Requires Docker running and Python 3.10+.

$ uv tool install veris-cli
$ veris login
2

Initialize your project

Run this inside your agent's repo to scaffold the Veris config.

$ veris init

Created .veris/Dockerfile.sandbox
Created .veris/veris.yaml
3

Configure your Sandbox

Edit .veris/veris.yaml and .veris/Dockerfile.sandbox to match your agent.

agent:
  code_path: /agent
  entry_point: uv run uvicorn app.main:app
services:
  - name: postgres
  - name: google-calendar
  - name: salesforce
persona:
  modality:
    type: http
    method: POST
    url: http://localhost:8008/api/{session_id}/messages
4

Push your Sandbox

Publish your Sandbox image. Config and secrets stay local.

$ veris env push