Foundation Phase

Forge

An opinionated toolchain for building applications with coding agents

forge new rally-hq          # scaffolds a deployable app
forge feature "user auth"   # AI generates from spec
forge test                  # verifies correctness
forge deploy                # ships to production
!

The Problem

React-era patterns exceed AI's reasoning capacity. 45% of AI-generated code has security vulnerabilities. Senior engineers are burning out on "vibe coded" spaghetti.

The Approach

Not a new framework. An opinionated workflow on top of proven tools. Build rally-hq first, extract patterns that work, then automate them.

Start Here

New to Forge? Read these in order.

Current Status

Six Conventions

The patterns that make AI-generated code reliable.

1

Finite Component Registry

AI selects from components, doesn't invent them

2

Server-First State

No client state management to confuse the AI

3

Typed Primitives

All functions have Zod schemas AI can reason about

4

Workflow State Machines

Explicit states, not implicit control flow

5

Property-Based Tests

Tests derived from types automatically

6

File-Based Discovery

Structure is in filesystem, not config

Research Archive

Background research from December 2025 that led to Forge. Reference material, not active docs.