Skip to Content
ExamplesOverview

Examples

Two ways to see a complete Veris integration end-to-end:

  • One-click in the console  — fully-wired example agents. Click one, watch a real simulation scroll through. Fastest path, no setup.
  • The cookbook  — full agent repos with their .veris/ config in the tree. Clone, study, fork.

Same agents, different entry points.

One-click in the console

The console  ships with a set of example agents that run in a single click — no install, no CLI. This is the fastest “see it work” path if you’ve never used Veris before.

The cookbook

The Veris cookbook is the open collection of reference agents. Each one can run standalone (without Veris) or be pushed to a Veris sandbox. They’re structured as real product-ish agents, not toy demos.

AgentWhat it doesFrameworkIntegrations
Banker Connections Agent Resolves customer record update errors for retail bankers in real time.Google ADKVertex AI, Hogan
Card Replacement Agent Handles card freeze, replacement, delivery tracking, and activation.OpenAI Agents SDKPostgreSQL
PM Analyst Turns meeting transcripts into structured Epics, Features, and User Stories.Google ADKAzure DevOps, Microsoft Teams
Procurement Agent Autonomous IT procurement sourcing, negotiation, and PO finalization.OpenAI Agents SDKOracle Fusion Cloud ERP, AgentMail

To run one yourself, clone the repo and push the example’s sandbox to Veris:

git clone https://github.com/veris-ai/cookbook cd cookbook/card-replacement-agent veris env create --name card-replacement-agent veris env push veris run --report

Each example’s README lists any required env vars (API keys, DB URLs). Set them with veris env vars set KEY=VALUE --secret before pushing.

How to read a cookbook example

When studying an example as a template for your own agent, open these files in order:

  1. .veris/veris.yaml — which services the agent declares, what channel it exposes, how it starts.
  2. .veris/Dockerfile.sandbox — what gets installed and copied into the image.
  3. The agent’s entry point (usually app/main.py, src/index.ts, etc.) — the production interface Veris talks to.
  4. The agent’s tool / service integration code — how it calls the services mocked by Veris.

See also