How Forge works — the complete guide

Forge is a living plan for people who build software with AI coding agents. You design in structured, agent-readable pieces; agents read the plan over MCP before building, claim work so they never collide, and report back what they actually built. This page walks through everything you can do — including wiring up your first agent.

~8 minute read · free during open beta, no credit card · works with Claude Code, Cursor, Copilot, Codex, Cline and any MCP client

What Forge is The loop Start a project Your workspace Connect an agent (MCP) Import a codebase The Inbox Share with any AI Repo loop-back FAQ

1What Forge is (and isn't)

Coding agents are fast and amnesiac. Every session starts blank, so the same context gets re-pasted; a decision made three sessions ago gets quietly undone; two agents rewrite the same module. A better document doesn't fix that — a document can't know whether it was read, and can't notice the code walking away from it.

Forge makes the plan a thing agents transact with. Your design lives as structured Systems — each with a Goal, a Boundary (what it must not touch), and Acceptance criteria — plus ordered milestones of tasks. Agents read that over MCP before building, claim tasks, report which files implement which system, and propose changes back. Nothing an agent proposes is applied until you adopt it.

Honest boundary: if you hand-code without agents, a markdown file is enough — you don't need Forge. It earns its keep the moment agents write your code, or several people (and agents) must share one plan.

2The loop — 90 seconds

The Idea tab: free-form design writing in Forge
1 · Write. Dump the idea in plain prose on the Idea tab — no structure required yet.
Generated Systems with Goal, Boundary and Acceptance in Forge
2 · Forge. One click compiles the prose into Systems (Goal / Boundary / Acceptance) you review and approve.
The build dashboard showing which files implement each system
3 · Build. Agents read the specs, build, and report back — the dashboard shows what's REALLY implemented, file by file.

Every agent interaction is one of four verbs: READ the plan · CLAIM a task (so parallel agents never overlap) · REPORT what was built (status + the actual files) · PROPOSE a change (which lands in your Inbox, never directly in the design).

3Start a project

  1. Sign in at forgeengine.app — Google or email/password. Everything is free during the open beta.
  2. New Project — pick a kind (game / app / web / other; it tunes the vocabulary and AI help), name it, and optionally describe the idea in one line.
  3. Write on the Idea tab — paragraphs, lists, tables, diagrams. This is your free-form thinking space.
  4. Generate Systems — the ✨ button compiles your Idea into structured Systems. Review each one, edit freely, then Approve it. Approved = an agent may build it.
  5. Plan milestones — on the Milestones tab, ✨ Plan milestones drafts an ordered build plan from your Systems; drag to reorder, tick tasks as they finish.

Already have code instead of a blank page? Skip to Import a codebase — an agent can reverse-engineer the design from your repo.

4Your workspace, tab by tab

TabWhat it does
DashboardWhat changed while you were away, and what needs a decision from you: build progress per system, loop health, drift warnings, stale claims, recent activity.
IdeaFree-form design writing. The upstream of everything — Systems are generated from here, and Forge tells you when the story falls behind the real design.
System SpecsThe structured spec agents build against: Goal / Boundary / Acceptance per system, with lifecycle (Draft → Approved), build status, and the real implementing files.
MilestonesThe ordered build plan. Tasks carry status, effort, and a claim — you can see which agent (or person) holds each one, and release stale claims.
InboxEvery agent proposal waits here for your review — nothing lands behind your back. See The Inbox.
System FlowYour screen map as a graph — which screens exist, how they connect, which are unreachable. Click a screen to sketch its layout as a wireframe.
Balance LabGame-design numbers workbench: stat tables with schemas, loadout pickers, live formula boards, enhancement-odds solvers, rank charts ("which of these 42 weapons is OP?"). Any board can be published as a public calculator link.
Design DocumentThe whole design compiled into one readable document — always current, never a stale export. This is also what the share link serves.
ActivityWho changed what, when — humans and agents in one feed, filterable.
Forge milestones timeline with ordered phases and tasks

The milestone timeline: ordered phases, each with its task list, estimates, and agent claims.

Ask AI, anywhere. The violet ✨ button opens a chat grounded in your design — ask "what breaks if I change billing?" or "draft a spec for pet stamina" and apply its proposed edits with one click. Bring your own AI key (Settings): your key, your models, your cost control.
Ask AI answering a question over the project's real design

Ask AI answers from the real project — systems, milestones, history — not from a generic model's guess.

5Connect your coding agent (MCP)

This is the moment Forge becomes a loop instead of a document. Once connected, your agent can read the briefing in one call, pick the right next task, check a change's blast radius before touching code, and report the build back — and its proposals land in your Inbox.

Recommended: the Forge CLI (one login, every client)

  1. Install the runtime (needs Node.js):
    npm i -g @forgeengine/cli
  2. Log in once. In the app, open Connect Agent (sidebar → Workspace), generate an Account Key (forge_sk_…, shown once — treat it like a password), then run:
    forge login
    and paste the key. It's stored locally; no key ever goes into a client config file.
  3. Wire your client — pick yours:
    • Claude Code — run once in a terminal (not inside a chat):
      claude mcp add --scope user forge -- forge mcp
    • Cursor — add to ~/.cursor/mcp.json:
      { "mcpServers": { "forge": { "command": "forge", "args": ["mcp"] } } }
    • Claude Desktop — Settings → Developer → Edit Config, same JSON as Cursor in claude_desktop_config.json. (No terminal at all? The Connect Agent page offers a one-click .mcpb extension instead.)
    • VS Code / Copilot.vscode/mcp.json:
      { "servers": { "forge": { "command": "forge", "args": ["mcp"] } } }
    • Codex~/.codex/config.toml:
      [mcp_servers.forge]
      command = "forge"
      args = ["mcp"]
    • Any other MCP client — the Cursor JSON works everywhere stdio servers are supported. If the app can't find forge, use the full path from which forge (macOS/Linux) or where forge (Windows).

No Node? Connect over HTTP directly

Forge is also a hosted MCP server (listed on the official MCP Registry as app.forgeengine/forge). Point any HTTP-capable client at the endpoint with your key:

{ "mcpServers": { "forge": {
  "type": "http",
  "url": "https://mmvdabzadclebfxyzudg.supabase.co/functions/v1/forge-mcp",
  "headers": { "Authorization": "Bearer forge_sk_YOUR_KEY" }
} } }

Discovery is public — initialize and tools/list need no token, so your client can see the whole tool surface before signing in. Only tool calls authenticate.

First prompt to try

Tell your agent: "Read my Forge project and tell me what to build next." It will pull the briefing, see who's working where, pick an unclaimed task, and — if you let it build — report back which files it touched. Your agent may also offer to add a short "working agreement" block to your repo's CLAUDE.md/AGENTS.md so every future session follows the loop automatically; it announces this in one line and removes it if you object.

6Import an existing codebase

Don't start from a blank page if the code already exists. With an agent connected, say: "Import this codebase into my Forge project." The agent walks your repo and proposes the design it finds — systems with real Goals and Boundaries, mapped to the actual files. The whole batch lands in your Inbox as one group: skim it, fix what it got wrong, and adopt. Ten minutes later your existing project has a living, agent-readable plan.

7The Inbox — nothing lands behind your back

The Forge Inbox showing agent proposals waiting for review

Agent proposals queue as reviewable cards — updates show a diff against the current spec.

8Share your design with any AI (or any human)

Each project can mint one public link — forgeengine.app/d/<token> — that serves the entire design as server-rendered text, compiled live on every read. Paste it into Gemini, Claude, or Grok and the assistant answers over your real design with no account, no key, no MCP setup. Hand it to a teammate and it opens as a normal page.

A Balance Lab board with stat tables and live formula blocks

Balance Lab boards get their own kind of share link too: a public calculator anyone can tweak — visitors' changes never touch your project.

9No agent on the team? Repo loop-back

Artists, designers, and CI pipelines don't run coding agents — but their commits still change the build. The repo loop-back stamps Forge with one POST per push, so "which commit last touched this system" stays true with zero agent involvement. One command installs it for git or Plastic SCM / Unity Version Control; GitLab needs only a webhook, Perforce one trigger line. Full recipes: the loop-back guide (also in-app under Connect Agent → Repo loop-back).

10FAQ

What does it cost?

Free during the open beta — no credit card. After: flat team pricing from $9/mo (3 seats) to $80/mo (50 seats), with 50%-off-for-life for the first 100 teams. AI features use your own AI key, so AI cost stays under your control.

What happens to my work if I cancel?

It freezes to read + export. Never deleted, never held hostage.

Which agents work with it?

Any MCP client: Claude Code, Cursor, Claude Desktop, VS Code/Copilot, Codex, Cline, Windsurf… One plan serves all of them side by side — that's the point.

Can an agent wreck my design?

No. Agents cannot apply their own proposals, cannot delete anything directly, and every change waits in the Inbox for a human. Task claims are visible to everyone, and the dashboard flags drift the moment code and spec disagree.

Is my design public?

Only if you publish it. Projects are private to your organization; the share link and board links are opt-in per project and revocable.

Many agents. One plan. No mess.

Free during open beta · bring your own AI key · your data stays yours

Open Forge — it's free