Build and deploy
agentic apps.
Single agents or multi-agent pipelines — with real-time DevTools, Streamlit chat UI, and one-command deploy to Docker or Fly.io. Any framework. Any model.
Deploy your agentic app to
One CLI. Any framework.
Pick your stack. AgentVoy generates the right boilerplate for each framework automatically.
Any model. Bring your key.
OpenAI, Anthropic, Google, Groq, Mistral — or run fully local with Ollama. No GPU required.
See your agent think.
Every app-mode project includes a real-time DevTools dashboard. Start with agentvoy dev and open /dev.
Starts your agent server with hot-reload, opens the DevTools dashboard, and streams trace events via WebSocket. Zero config needed.
$ agentvoy dev/dev—DevTools dashboard/ws/trace—Real-time trace stream/dev/events—All events as JSON/run—Run your agent/health—Health checkThe Streamlit chat UI auto-detects API keys from .env and shows available models — GPT-4o, Claude Sonnet, Gemini Flash, and more. Switch models on the fly without restarting.
Guardrails built in,
not bolted on.
Every AgentVoy project ships with agent.guard.yml — a universal declarative config for permissions, cost limits, and behavior constraints. One format that works across every framework. Enforced at runtime by agentvoy-guard — automatically included in every project.
# Universal guardrails — works across all frameworksversion:"1.0"model:provider:anthropicmodel:claude-sonnet-4-20250514permissions:network:mode:restrictedallow:["*.github.com"]execution:allow_shell:falseguardrails:input:block_prompt_injection:truepii_detection:warnbehavior:max_iterations:20cost_limit:"$1.00"timeout:5m
Everything you need to ship agents.
From zero to production-ready agent project in one command.
One command. Deploy anywhere.
agentvoy deploy builds, configures, and ships your agent. Your agent.guard.yml guardrails flow directly into infrastructure config.
behavior.timeout: 5m→Docker HEALTHCHECK, Cloud Run timeoutbehavior.cost_limit: $1.00→Container memory: 512Miexecution.allow_shell: false→Non-root Docker userBuilds the image, runs the container, exposes API + DevTools
$ agentvoy deploy --target dockerChecks auth, sets secrets from .env, deploys via flyctl
$ agentvoy deploy --target fly-ioGenerates railway.json config for one-click deploy
$ agentvoy deploy --target railwayGenerates Cloud Run service config with health checks
$ agentvoy deploy --target gcp-cloud-runSAM template + Lambda handler for serverless deploy
$ agentvoy deploy --target aws-lambdaAdd deployment to any existing agent project — generates server.py, DevTools, and all deployment files without touching your agent code.
$ agentvoy deploy --target dockerUp and running in 60 seconds.
No installation required. Choose your path — local agent or deployable app.

$ npx agentvoy create my-project --yes$ cp .env.example .env$ pip install -r requirements.txt && python run.py$ # Edit agent.guard.yml$ npx agentvoy create my-project --build-mode app --yes$ cp .env.example .env && pip install -r requirements.txt$ agentvoy dev$ agentvoy deploy --target dockerStart building your agent.
One command. Any framework. Deploy anywhere.