The Platform

AgentBuilder is your hub for producing and managing Standard Agents.

AgentBuilder provides a professional UI to manage and introspect on purpose-built AI agents — all running on your own hosting infrastructure.

agents/customer_support_agent.ts
1import { defineAgent } from "@standardagents/spec"
2
3export default defineAgent({
4 name: "customer_support_agent",
5 title: "Customer Support Agent",
6 type: "ai_human",
7 sideA: {
8 prompt: "customer_support",
9 stopOnResponse: true,
10 maxTurns: 5,
11 },
12})
prompts/customer_support.ts
1import { definePrompt } from "@standardagents/spec"
2
3export default definePrompt({
4 name: "customer_support",
5 model: "anthropic/claude-sonnet",
6 tools: [{ name: "create_ticket" }],
7 prompt: `You are a helpful
8 support agent...`,
9})
tools/create_ticket.ts
1import { defineTool } from "@standardagents/spec"
2
3export default defineTool({
4 name: "create_ticket",
5 description: "Create a support ticket",
6 parameters: {
7 subject: { type: "string" },
8 priority: { type: "string" },
9 },
10 async execute(params) {
11 return zendesk.createTicket(params)
12 }
13})
agents.yourcompanydomain.com
AgentBuilder Interface

It's time to redefine possible.

Your business, powered by your agents, running on your infrastructure, solving your problems.

See what AgentBuilder can do for your target demographic.

0 / 300
The Specification

What is a Standard Agent?

Portable agents built to the open Standard Agent Specification.

Customization Over Uniformity

A Standard Agent isn't a one-size-fits-all solution. It's a precisely configured tool with the right model, the right prompts, and the right capabilities for a specific task. Different problems deserve different solutions — not the same generic agent with different instructions.

Task-Specific

Built for one job and built well. Not a generic assistant hoping to handle anything — a focused tool that excels at its purpose.

Portable

Deploy to your infrastructure, re-use between projects, integrate with any system. No vendor lock-in.

Composable

Combine multiple Standard Agents into larger systems. Build complex workflows from simple, reliable parts.

Stateful

Each conversation maintains its own isolated memory. Persistent context that survives restarts and scales infinitely.

For Developers

The developer experience
you've been waiting for.

Type-safe agent definitions. AI-powered development. Instant deployment.

Type-Safe

Four files. Complete agent.

Every agent is defined in code — model, prompt, tools, and orchestration. Full IntelliSense, catch errors before runtime, and version control everything.

  • Full IntelliSense support
  • Catch errors before runtime
  • Version control everything
1import { defineModel } from '@standardagents/spec'
2import { openrouter } from '@standardagents/openrouter'
3
4export default defineModel({
5 name: 'support_model',
6 provider: openrouter,
7 model: 'anthropic/claude-sonnet-4-20250514',
8})
AI-Native

Built by agents, for agents.

Claude Code understands AgentBuilder. Describe what you want, watch it write production-ready code, then use your agent immediately.

1
2
3
DescribeGenerateDeploy
Terminal
Pricing

Simple, transparent pricing

One license for your entire organization. No per-seat fees, no usage limits, no surprises.

Non-Commercial
Free

Local development for non-commercial use

  • Full framework access
  • Local dev environment only
  • Non-commercial projects only
  • Community support
Get Started
Enterprise
Custom

For teams that need hands-on support

  • Commercial license included
  • White-glove integration
  • Architecture consulting
  • Dedicated support channel

Questions? Reach out — we're happy to help.

FAQ

Frequently Asked Questions

AgentBuilder runs on Cloudflare Workers with built-in persistent memory via Durable Objects. Your agents maintain conversation state without managing databases, and deploy globally with sub-50ms latency.

No ML expertise required. You define agents in TypeScript using simple configuration files and integrate them with your application front-end using our provided framework SDKs. The framework handles prompt engineering patterns, tool orchestration, and streaming responses automatically.

AgentBuilder supports OpenAI and any OpenRouter model. You can configure fallbacks between providers and track costs per-model. Support for local LLMs is on the roadmap.

The Commercial license covers unlimited agents and API calls — One AgentBuilder Commercial license can power your whole business. Your only additional cost for running AgentBuilder will be your choice of hosting and the LLM tokens you consume via your own accounts with providers — neither of which involve any additional payment to AgentBuilder. Enterprise plans include dedicated support and custom SLAs.

All updates are available as NPM updates. When you purchase AgentBuilder you will be granted a license key that will allow you to build your project for production. The Commercial license provides updates for every release within a major version. A license purchased for AgentBuilder 1.0 will be valid for all 1.x versions. Upgrades to new versions beyond 1.0 will be provided at a discount to existing license holders. Monthly subscribers will always be entitiled to the latest major release version.

The tools are here. The path is clear.

What happens next is up to you.

agents.yourcompanydomain.com
AgentBuilder Interface