agentbreeder

No Code — Dashboard UI

Build and deploy agents with drag-and-drop. No YAML or code required.

No Code — Dashboard UI

Build, configure, and deploy production agents entirely from the AgentBreeder dashboard. No YAML. No code. No DevOps knowledge required.

Who this is for: Product managers, analysts, business users, executives, and anyone who wants to ship agents without touching a terminal.


Supported Frameworks

Every framework works in the dashboard. Pick the one that fits your use case from a dropdown — AgentBreeder handles the runtime scaffolding automatically.

FrameworkBest for
LangGraphMulti-step agents with loops, human-in-the-loop, complex state
OpenAI AgentsSimple, fast agents with handoffs between specialists
Claude SDKReasoning-heavy tasks, extended thinking, document analysis
CrewAIRole-based teams of agents working toward a shared goal
Google ADKAgents that live in Google Workspace and use Gemini natively
CustomBring your own agent code — wrap any Python or TypeScript agent

Supported Deployment Targets

All deployment targets are available from the "Deploy to" dropdown. No cloud credentials to configure manually — connect your cloud account once in Settings, then deploy anywhere.

TargetWhat it runs onBest for
LocalDocker Compose on your machineDevelopment, testing
AWS App RunnerServerless containers on AWSLow-ops production, auto-scaling
AWS ECS FargateContainer orchestration on AWSHigh-traffic, VPC-controlled
GCP Cloud RunServerless containers on Google CloudGoogle Workspace integrations
Azure Container AppsServerless containers on AzureMicrosoft ecosystem teams
Claude ManagedAnthropic-managed runtimeZero infrastructure — Anthropic handles everything

Getting Started

1. Open the dashboard

http://localhost:3001        # local dev stack

Or log in to your org's hosted AgentBreeder instance.

Default local credentials:

FieldValue
Emailadmin@agentbreeder.local
Passwordplant

2. Create a new agent

Click New Agent in the top-right corner. The visual builder opens.

3. Configure in the form

The builder asks you for:

FieldWhat to set
NameSlug-friendly name (e.g. support-agent)
FrameworkChoose from the 6 supported frameworks
ModelPrimary model + optional fallback
ToolsSearch and add MCP servers or built-in tools from the registry
Knowledge BasesOptional — attach RAG indexes
PromptsSelect a versioned system prompt from the registry, or write inline
Deploy toTarget cloud and region
TeamAssigns RBAC and cost attribution automatically

4. Deploy

Click Deploy Agent. The dashboard runs the 8-step pipeline and shows live progress:

✅  YAML parsed & validated
✅  RBAC check passed
✅  Dependencies resolved
✅  Container built
✅  Deployed
✅  Health check passed
✅  Registered in org registry
✅  Endpoint returned

If any step fails, the deploy rolls back automatically.

5. Your agent is live

The endpoint URL appears in the dashboard. You can immediately:

  • Chat with the agent from the playground tab
  • View logs in real time
  • Monitor costs per token, per day, per team
  • Share the endpoint URL with your team

Editing an Agent

Open an agent from the registry → click Edit → change any field → Redeploy.

Every redeploy is versioned. You can roll back to any previous version from the History tab.


Eject to Low Code (View the YAML)

At any point, click View YAML to see the agent.yaml that the dashboard generated. This is human-readable and version-controllable.

To take full ownership of the YAML:

  1. Click Export agent.yaml
  2. Run agentbreeder deploy agent.yaml from your terminal
  3. You are now in Low Code mode — see Low Code →

The exported YAML is identical to what the dashboard used. Nothing is hidden.


Tier Mobility

No Code (Dashboard)
  └─▶  View YAML          → copy into your IDE → Low Code
  └─▶  agentbreeder eject → full SDK scaffold  → Full Code

You can always go deeper — you never lose what you built. See Full Code →.


All Frameworks × All Deployment Targets

Every combination works. This matrix applies to No Code, Low Code, and Full Code equally.

LocalApp RunnerECS FargateCloud RunContainer AppsClaude Managed
LangGraph
OpenAI Agents
Claude SDK
CrewAI
Google ADK
Custom

Claude Managed note

When deploying to claude-managed, no container is built — Anthropic manages the runtime. The framework field is still required and controls how the agent logic is structured inside the managed environment.


Next Steps

WhatWhere
Write YAML yourselfLow Code →
Use the Python or TypeScript SDKFull Code →
All agent.yaml fieldsagent.yaml Reference →
Deploy from the CLIQuickstart →
All CLI commandsCLI Reference →

On this page