Describe your backend requirements in natural language through AutoBE's chat interface.
AutoBE will analyze your requirements and build the backend application for you. The generated backend application is designed to be 100% buildable by AI-friendly compilers and ensures stability through powerful e2e test functions.
With such AutoBE, build your first backend application quickly, then maintain and extend it with AI code assistants like Claude Code for enhanced productivity and stability.
AutoBE will generate complete specifications, detailed database and API documentation, comprehensive test coverage for stability, and clean implementation logic that serves as a learning foundation for juniors while significantly improving senior developer productivity.
Check out these complete backend application examples generated by AutoBE:
720p.mp4
- To Do List:
todo - Discussion Board:
bbs - Reddit Community: `reddit
- E-Commerce:
shopping- Requirements Analysis: Report
- Database Design: Entity Relationship Diagram / Prisma Schema
- API Design: API Controllers / DTO Structures
- E2E Test Functions:
test/features/api - API Implementations:
src/providers
git clone https://github.com/wrtnlabs/autobe --depth=1
cd autobe
pnpm install
pnpm run playgroundTo use AutoBE, clone the repository and run the playground application locally. This allows you to chat with AutoBE's AI agents, manage multiple sessions, and use various LLM providers including local models like qwen3-next-80b-a3b-instruct.
After installation, the playground will be available at http://localhost:5713. You can interact with AutoBE through a chat interface - simply describe what you want to build, and AutoBE will generate the backend application for you.
Here's an example conversation script that guides AutoBE to create an "Economic/Political Discussion Board":
- Requirements Analysis: "I want to create an economic/political discussion board. Since I'm not familiar with programming, please write a requirements analysis report as you see fit."
- Database Design: "Design the database schema."
- API Specification: "Create the API interface specification."
- Testing: "Make the e2e test functions."
- Implementation: "Implement API functions."
The playground includes a replay feature at http://localhost:5713/replay/index.html where you can view chat sessions from the AutoBE development team's testing and benchmarks.
Find comprehensive resources at our official website.
- ππ»ββοΈ Introduction
- π¦ Setup
- π Concepts
- π€ Agent Library
- π‘ WebSocket Protocol
- π οΈ Backend Stack
- π No-Code Ecosystem
- π Roadmap
- π§ API Documentation
flowchart
subgraph "Backend Coding Agent"
coder("Facade Controller")
end
subgraph "Functional Agents"
coder --"Requirements Analysis"--> analyze("Analyze")
coder --"ERD"--> database("Database")
coder --"API Design"--> interface("Interface")
coder --"Test Codes" --> test("Test")
coder --"Main Program" --> realize("Realize")
end
subgraph "Compiler Feedback"
database --"validates" --> prismaCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/database/AutoBeDatabase.ts" target="_blank">Prisma Compiler</a>")
interface --"generates" --> openapiCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/openapi/AutoBeOpenApi.ts" target="_blank">OpenAPI Compiler</a>")
test --"analyzes" --> testCompiler("<a href="https://github.com/wrtnlabs/autobe/blob/main/packages/interface/src/test/AutoBeTest.ts" target="_blank">Test Compiler</a>")
realize --"compiles" --> realizeCompiler("TypeScript Compiler")
end
AutoBE follows a waterfall methodology to generate backend applications, with 40+ specialized agents handling each phase. The agents work in coordinated teams throughout the development process.
Each waterfall stage includes AI-friendly compilers that guarantee type safety of the generated code. Rather than generating code directly, AutoBE's agents first construct language-neutral Abstract Syntax Trees using predefined schemas. Each AST node undergoes validation against type rules before any code generation occurs, catching structural errors at the conceptual level rather than during compilation.
This approach is designed to ensure that the final generated TypeScript and Prisma code is 100% buildable. Based on our testing with multiple example projects including e-commerce platforms, discussion boards, and task management systems, AutoBE maintains this compilation guarantee across diverse application types.
To illustrate this process, here are the phase outputs from our "Economic/Political Discussion Board" example:
- Requirements Analysis: Report
- Database Design: Entity Relationship Diagram / Prisma Schema
- API Specification: API Controllers / DTO Structures
- E2E Test Functions:
test/features/api - API Implementations:
src/providers
Also, you don't need to use all phases - stop at any stage that fits your needs. Whether you want just requirements analysis, database design, API specification, or e2e testing, AutoBE adapts to your workflow.
Additionally, if you're skipping the full pipeline because of language preference rather than workflow needs, this capability is in development - AutoBE's language-neutral AST structure will soon support additional programming languages beyond TypeScript.
Every AutoBE-generated backend automatically includes a type-safe client SDK, making frontend integration seamless and error-free. This SDK provides:
- Zero Configuration: SDK is auto-generated alongside your backend - no manual setup required
- 100% Type Safety: Full TypeScript support with autocomplete and compile-time validation
- Framework Agnostic: Works with React, Vue, Angular, or any TypeScript/JavaScript project
- E2E Test Integration: Powers AI-generated test suites for comprehensive backend testing
import api, { IPost } from "autobe-generated-sdk";
// Type-safe API calls with full autocomplete
const connection: api.IConnection = {
host: "http://localhost:1234",
};
await api.functional.users.login(connection, {
body: {
email: "[email protected]",
password: "secure-password",
},
});
// TypeScript catches errors at compile time
const post: IPost = await api.functional.posts.create(connection, {
body: {
title: "Hello World",
content: "My first post",
// authorId: "123" <- TypeScript error if this field is missing!
},
});This SDK eliminates the traditional pain points of API integration - no more manual type definitions, no more runtime surprises, and no more API documentation lookups. Your frontend developers can focus on building features, not wrestling with API contracts.
Beyond Frontend Integration: The SDK powers both frontend development and E2E test generation. AutoBE uses the same type-safe SDK internally to generate comprehensive test suites, ensuring every API endpoint is thoroughly tested. This creates a robust feedback loop that enhances backend stability - AI writes tests using the SDK, the SDK ensures type safety, and your backend becomes more reliable with every generated test.
gantt
dateFormat YYYY-MM-DD
title AutoBE Delta Roadmap Timeline (2026 Q1)
section Local LLM Benchmark
Qwen3 Database Phase : done, 2026-01-01, 31d
Qwen3 Interface Phase : done, 2026-01-16, 31d
Qwen3 Test Phase : done, 2026-02-01, 21d
Qwen3 Realize Phase : active, 2026-02-01, 59d
section Validation Logic Enhancement
Dynamic Function Calling Schema : done, 2026-01-01, 7d
Validation Feedback Stringify : done, 2026-01-08, 12d
JSON Schema Validator : done, 2026-01-08, 12d
Schema Review Validation Logic : done, 2026-01-20, 35d
Test Mapping Plan Enhancement : planned, 2026-02-05, 24d
Realize Mapping Plan Enhancement : planned, 2026-02-15, 45d
section RAG Optimization
Hybrid Search (Vector + BM25) : done, 2026-01-01, 14d
Dynamic K Retrieval : done, 2026-01-15, 14d
RAG Preliminary Prompting : active, 2026-01-15, 28d
RAG Benchmark & Tuning : active, 2026-02-01, 28d
Analyze Agent Restructuring : planned, 2026-02-01, 28d
section Design Integrity
DB Coverage Agent : done, 2026-01-15, 28d
API Endpoint Coverage Agent : done, 2026-01-22, 28d
Schema Relation Agent : done, 2026-02-01, 28d
Schema Structure Agent : done, 2026-02-01, 28d
Schema Content Agent : done, 2026-03-01, 28d
section Multi-lingual Support
Java Compiler PoC : done, 2026-01-01, 30d
Java Database : done, 2026-01-01, 14d
Java Interface : done, 2026-01-15, 21d
Java Test : active, 2026-02-05, 28d
Java Realize : active, 2026-03-01, 31d
section Human Modification Support
Database Schema Parser : active, 2026-02-15, 28d
Interface Schema Parser : planned, 2026-02-22, 28d
Requirements Sync Agent : planned, 2026-03-08, 24d
section Miscellaneous
System Prompt Simplification : planned, 2026-02-01, 28d
Playground Service Enhancement : planned, 2026-02-15, 28d
PR Articles Writing : planned, 2026-02-15, 30d
AutoBE has successfully completed Alpha, Beta, and Gamma development phases, establishing a solid foundation with 100% compilation success rate. The current Delta Release focuses on transitioning from horizontal expansion to vertical deepening.
Strategic Shift: In Gamma, we rapidly implemented features like RAG, Modularization, and Complementation under a "just ship it" philosophy. Delta fills the stability gaps that remained by systematically discovering and fixing hidden defects through Local LLM benchmarks.
Key Focus Areas:
- Local LLM Benchmark: Using open-source models like Qwen3 as a touchstone to discover hidden defects that commercial models mask, ensuring more robust operation across all model types
- Validation Logic Enhancement: Strengthening schemas and validation logic through dynamic function calling schemas, JSON Schema validators, and progressive validation pipelines
- RAG Optimization: Completing the Hybrid Search system (Vector + BM25) with dynamic K retrieval and comprehensive benchmark tuning
- Design Integrity: Building mechanisms to verify and ensure design consistency between Database and Interface phases through coverage and schema review agents
- Multi-lingual Support: Launching Java/Spring code generation alongside TypeScript/NestJS, with language-neutral AST structures enabling future language additions
- Human Modification Support: Enabling maintenance continuity by parsing user-modified code back into AutoBE's internal AST representation, ensuring AutoBE remains useful beyond initial generation
This roadmap prioritizes stability and depth over feature breadth, informed by real-world production experience from Gamma.
While AutoBE achieves 100% compilation success, please note these current limitations:
Runtime Behavior: Generated applications compile successfully, but runtime behavior may require testing and refinement. Unexpected runtime errors can occur during server execution, such as database connection issues, API endpoint failures, or business logic exceptions that weren't caught during compilation. We strongly recommend thorough testing in development environments before deploying to production. Our v1.0 release targets 100% runtime success to address these issues.
Design Interpretation: AutoBE's database and API designs may differ from your expectations. We recommend thoroughly reviewing generated specifications before proceeding with implementation, especially before production deployment.
Token Consumption: AutoBE requires significant AI token usage for complex projects. Based on our testing, projects typically consume 30M-250M+ tokens depending on complexity (simple todo apps use ~4M tokens, while complex e-commerce platforms may require 250M+ tokens). We are working on RAG optimization to reduce this overhead in future releases.
Maintenance: AutoBE focuses on initial generation and does not provide ongoing maintenance capabilities. Once your backend is generated, you'll need to handle bug fixes, feature additions, performance optimizations, and security updates manually. We recommend establishing a development workflow that combines the generated codebase with AI coding assistants like Claude Code for efficient ongoing development and maintenance tasks.
AutoBE is licensed under the GNU Affero General Public License v3.0 (AGPL-3.0). If you modify AutoBE itself or offer it as a network service, you must make your source code available under the same license.
However, backend applications generated by AutoBE can be relicensed under any license you choose, such as MIT. This means you can freely use AutoBE-generated code in commercial projects without open source obligations, similar to how other code generation tools work.

