Installation Guide
Standard Agents projects are created through the Standard Agents platform. One command signs you in, provisions your project repository, and starts a local dev server — building and running agents locally is free, and upgrading to Pro deploys the same project to the managed global edge.Create a Project
Run the CLI from the directory where you want your project:- Open Standard Agents in your browser for login and project creation
- Create and seed a platform-owned repository with the Standard Agents project template
- Clone that repository back to the directory where you ran the command
- Write local-only project credentials to
.dev.vars - Configure Git credentials for future pushes to the platform repository
- Install dependencies with the detected package manager, start the local dev server, and open it in your browser
builder() Vite plugin in the generated project owns the Worker entry, Cloudflare bindings, Durable Object migrations, and TypeScript type generation.
Building and running agents locally is free on the Hobby plan. When you’re ready to ship, upgrade to Pro and every push to your platform repository deploys to the managed global edge.
Install the Coding Skill
Most Standard Agents projects are built with an AI coding agent. Theagentbuilder skill teaches your coding agent when to reach for defineModel, definePrompt, defineTool, defineAgent, defineHook, defineThreadEndpoint, and dual_ai subagents — install it before you start building:
- Claude Code: installs a user subagent into
~/.claude/agents/agentbuilder.md - Codex: installs a skill folder into
$CODEX_HOME/skillsor~/.codex/skills
Adding to an Existing Project
If you already have a Vite project and want to add Standard Agents:scaffold command intelligently modifies your existing project:
- Adds or updates
@standardagents/builderinpackage.json - Adds the
builder()plugin to yourvite.config.ts - Lets
builder()generate the Cloudflare Worker entry, assets config, Durable Object bindings, compatibility flags, and migrations at build time - Creates the
agents/directory structure
Use
--force flag to overwrite existing configuration if needed.Project Structure
After installation, your project will have this structure:Next Steps
Architecture
Learn how Standard Agents works
API Reference
Explore the complete API