Phase 1: Architecture
When you describe your idea, the architecture agent takes over — researching, designing, and producing a complete roadmap:
The output is a living document that serves as the blueprint for the entire build.
Phase 2: Building
Once you approve the spec (or hit Build on Autopilot), the build agents execute:- Task isolation — Each subtask is assigned to a focused agent with only the relevant context
- Code generation — The agent writes implementation code, tests, and configuration
- Acceptance verification — Automated checks validate the work:
- TypeScript/type compilation passes
- Linting rules pass
- Unit tests succeed
- Visual browser verification (for UI tasks)
- PR creation — A feature branch is created and a pull request opened
Agents self-correct. If type checks fail or tests break, the agent automatically fixes the issues before opening a PR. You only see verified, working code.
Phase 3: Review & Ship
You stay in control:- Review PRs — Every task produces a reviewable pull request
- Merge on your terms — The AI never pushes to main
- Track progress — The roadmap view shows real-time status across all milestones
The Sandbox Environment
Build agents run in isolated, secure containers:- Sandboxed execution environment — zero risk to production
- Full development toolchain available (Node.js, Python, system tools)
- Access to your Knowledge Base API keys for real integrations
- Long-running — agents can work for hours on complex tasks without timing out
Parallel Execution
When you click Build All, pre.dev doesn’t build sequentially. Tasks within the same milestone that have no dependencies run in parallel, maximizing throughput.Context & Knowledge
Agents have access to:| Source | Description |
|---|---|
| Specification | The full architectural blueprint for the project |
| Codebase | All code written so far in the repo |
| Knowledge Base | Your stored API keys and documentation |
| External Docs | Scraped documentation from URLs you provide |
The Result
Every project follows the same pipeline: Idea → Architecture Agent → Specification → Build Agents → Verified Code → PRs → You Merge → Deployed App

