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.
| Agent | What it does | Framework | Integrations |
|---|---|---|---|
| Banker Connections Agent | Resolves customer record update errors for retail bankers in real time. | Google ADK | Vertex AI, Hogan |
| Card Replacement Agent | Handles card freeze, replacement, delivery tracking, and activation. | OpenAI Agents SDK | PostgreSQL |
| PM Analyst | Turns meeting transcripts into structured Epics, Features, and User Stories. | Google ADK | Azure DevOps, Microsoft Teams |
| Procurement Agent | Autonomous IT procurement sourcing, negotiation, and PO finalization. | OpenAI Agents SDK | Oracle 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 --reportEach 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:
.veris/veris.yaml— which services the agent declares, what channel it exposes, how it starts..veris/Dockerfile.sandbox— what gets installed and copied into the image.- The agent’s entry point (usually
app/main.py,src/index.ts, etc.) — the production interface Veris talks to. - The agent’s tool / service integration code — how it calls the services mocked by Veris.
See also
- Quickstart — the real setup path for your own agent
- Supported frameworks — framework-specific notes