FORGE DEVKIT

One command. From feature idea to tested code.

Forge scans your repo, detects your stack, and generates a full dev pipeline - architecture guardrails, quality gates, test traceability. Your AI stops guessing and starts following your rules.

50+ quality patterns
7-gate architecture audit
8+ frameworks supported
Terminal

Gate 1: Architecture Audit


Stack:         NestJS 11.0 + TypeScript 5.8 + Prisma 6.4

Architecture:   Clean Architecture (3 layers)

Database:      PostgreSQL 16  |  CI: GitHub Actions

Auth:          JWT + Passport  |  Events: Bull queues

Parallel:      7/10  |  Conflicts: 2 zones


Gate 2: Development Pipeline

   Git: trunk-based · Commits: conventional (92%) · Mode: balanced

Gate 3: Task Tracking GitHub Issues + 3 scripts

Gate 3.5: Script Verification 3/3 syntax + smoke tests


Gate 4: Quality Checklist

   Capabilities: api · database · auth · events · docker

    Loaded: api.md + infra.md + shared.md 53 patterns


Gate 5: Naming Conventions

    Services: *Service (8/8)    DTOs: Create*Dto (12/15)

    Events: inconsistent → adopted *CreatedEvent

Gate 6: Knowledge Export CLAUDE.md updated, 15 rationalization detectors


Gate 6.5: Skill Reconciliation

   dev       35% Replace (5/13 core features)

   deploy    62% Augment (+resume, +tasklist, +self-review)

   testing   90% Keep (12/13 core features)


Generation: Dev-skills & Config


  .claude/

  ├── CLAUDE.md              ← architecture + conventions

  ├── settings.json           ← 3 execution modes

  └── skills/dev/

      ├── SKILL.md            ← 6-phase TDD pipeline

      ├── step-catalog.md     ← 52 scoped steps

      └── quality-patterns/   ← api + infra + shared


Setup complete. 9/9 gates passed. AI is now architecture-aware.


  Works with: Claude Code · Cursor · Windsurf · any AI agent

THE PROBLEM

AI writes code fast. You fix it faster.

“Your AI forgets your architecture every session. You spend 20 minutes re-explaining what NestJS guards do.”

“Your AI patches over bugs with quick fixes until the entire module is unmaintainable spaghetti.”

“I ran 3 agents in parallel. Spent 4 hours resolving merge conflicts. Net productivity: negative.”

“Unit tests pass with 100% coverage. Every assertion uses mock data. Zero real behavior tested.”

“A simple rename task burned 50K tokens because the AI re-read the entire codebase. Every. Single. Time.”

The real problem isn’t AI coding speed - it’s unstructured AI creating technical debt at scale.

THE SOLUTION

Architecture-aware pipeline for AI agents

AUDIT

Understands your project

7-gate wizard auto-detects stack, layers, architecture patterns, and conventions. No manual config.

GUARD

Enforces your standards

50+ quality patterns, naming conventions, 15 LLM rationalization detectors. Prevention, not detection.

PIPELINE

Structures the workflow

Design → Build → Verify. Scoped phases with quality gates. Requirement traceability end to end.

One forge setup → your AI codes like a senior engineer who’s read every file in the repo.

BUILD YOUR PIPELINE

What should Forge build for your project?

Choose your setup. Watch the pipeline assemble.

Terminal

Product Health

Architecture 0%

No guardrails - AI generates code without following your conventions.

Test Quality 0%

No test generation from specs - coverage depends entirely on manual effort.

Task Tracking 0%

AI and task tracker disconnected - status updates remain manual.

Prompt Quality 0%

No regression testing for prompts - changes go unverified.

Parallel Dev 0%

No parallel orchestration - features queue up sequentially.

Market Validation 0%

No structured validation process - product decisions built on assumptions.

SEO & Content 0%

No SEO audit process - technical gaps and content strategy unaddressed.

Growth & Retention 0%

No retention framework - churn causes and growth levers unexamined.

Pipeline Readiness 0%

forge-prompts Consistent prompt quality across every module in your pipeline
ARCHITECTURE AUDIT

Your AI forgets your architecture. Forge doesn’t.

7-gate wizard auto-detects your stack, layers, architecture patterns, and conventions. Generates project-specific dev-skills. No manual config. No prompt engineering.

NestJS Django FastAPI React Vue Angular Go Rails
forge:setup - Gate 1: Architecture Audit

Gate 1: Architecture Audit - Results


Stack: Astro 5.7.0 + TypeScript 5.8.0 + Tailwind CSS 4.1.0

Build: Vite Linter: Biome 2.0.0 Hosting: Cloudflare Pages

Architecture: FSD-adapted (4 layers)


Layers:

  pages:    src/pages/    (15 files) - assembly & routing, i18n (en + ru)

  widgets:  src/widgets/  (32 files, 21 widgets) - composite blocks, zero cross-imports

  shared:   src/shared/   (41 files) - ui(13) + config(22) + i18n(3) + lib

  layouts:  src/layouts/  (2 files) - BaseLayout


Conflict zones: none (0 files)

Parallel readiness: 9/10 - highly parallel


Sibling repos:

Repo Stack Role Forge?
acme-web React 19.2+TanStack frontend ✓ 4.6
acme-api NestJS 11+Prisma backend-api ✓ 4.12
$ forge autopilot "auth, payments, notifications"

✓ Triage: 3 features classified
✓ Conflicts: auth ↔ payments (shared User model)
✓ Wave 1: [auth] [notifications] - parallel
✓ Wave 2: [payments] - after auth merges

⚡ Deploying 2 teammates to worktrees...
FORGE-AUTOPILOT

Agent Teams without merge hell

Agent Teams are powerful - until 3 agents edit the same file. forge-autopilot orchestrates autonomous teammates like Kubernetes orchestrates containers: backlog triage, conflict detection, wave execution, auto-merge.

REQUIREMENT TRACEABILITY

Tests that trace back to requirements. Not AI guesswork.

forge-product creates verifiable acceptance criteria BEFORE code. forge-qa generates tests FROM those criteria. Every test proves a requirement.

// checkout.spec.ts

describe('US-3: Order Confirmation', () => {

  // AC: US-3.AC-1
  it('creates order with valid items
      and shipping address', async () => {
    const order = await checkout(validCart);
    expect(order.status).toBe('confirmed');
    expect(order.items).toHaveLength(3);
  });

  // AC: US-3.AC-2
  it('sends confirmation email within
      5 minutes', async () => {
    await checkout(validCart);
    const email = await getLastEmail(user);
    expect(email.subject).toContain('Order');
    expect(email.sentWithin).toBeLessThan(300);
  });

  // UX: loading-2
  it('shows spinner during payment
      processing', async () => {
    const { getByRole } = render(<Checkout />);
    fireEvent.click(getByRole('button'));
    expect(getByRole('progressbar')).toBeVisible();
  });
});
HOW IT WORKS

One setup. Project-aware AI forever.

1

INSTALL

npm i -g @reumbra/forge

Global CLI install

Or use Forge Manager - desktop app for Windows and macOS

2

ACTIVATE

forge activate <license>

License key from purchase

3

SETUP

forge setup

7-gate wizard analyzes project, generates dev-skills

4

BUILD

/forge:hub "add payments"

Describe what you want - Hub resolves prerequisites and runs the right pipeline

Works everywhere: Claude Code CLI Claude Desktop Cursor Claude Cowork

Generated artifacts work independently. Remove the plugin - your rules stay.

MODULES

7 dev pipeline modules. 8 advisory. One ecosystem.

forge-core

Architecture audit & AI guardrails

★ Start here

7-gate

wizard

50+

quality patterns

15

rationalization detectors

3

template families

Architecture audit Quality patterns Dev-skills generation Pipeline phases

forge-product

Feature design in business language

  • Product archetypes
  • User flow generation
  • User stories with acceptance criteria
  • UX criteria library
8 product archetypes User flows Stories with AC 50 UX criteria

forge-qa

Tests from requirements

  • Multi-framework test generation
  • Acceptance criteria to unit tests
  • Use cases to E2E tests
  • Requirement traceability matrix
8+ test frameworks AC to unit tests UC to E2E Traceability matrix

forge-tracker

Your tracker talks to your AI agent

  • GitHub integration
  • ClickUp integration
  • Linear integration
  • Notion integration
  • Jira integration
5 integrations

forge-autopilot

Agent Teams without merge hell

  • Backlog → conflict detection → wave execution
  • Autonomous teammates in isolated worktrees
  • Auto-merge with conflict prevention
  • 3 autonomy modes: supervised, semi-auto, full-auto
3 autonomy modes 0 merge conflicts

forge-worktree

Parallel branches, zero port conflicts

  • 3 templates: Docker backend, Frontend, Generic
  • Docker port isolation per worktree
  • Auto-cleanup on branch merge
3 templates 0 port conflicts

forge-prompts

Manage prompts like code

  • Prompt inventory and audit
  • CO-STAR, RISEN, TIDD-EC frameworks
  • LLM-as-judge regression tests
  • Learning loop evolution
3 frameworks 5 modes Learning loop

forge-discovery

Validate before you build

  • Ideation and competitive research
  • Problem validation
  • Interview synthesis
  • Cognitive bias protection
4 modes 7 bias detectors

forge-marketing

From problem to go-to-market

  • Positioning strategy
  • Pricing framework
  • Launch planning
  • Content strategy
4 modes 8 bias detectors

forge-analytics

Plan measurement before you code

  • Tracking plans
  • Event schema generation
  • Dashboard specs
  • Naming conventions
3 modes Decision-mapped events

forge-onboarding

From signup to aha moment

  • Activation flow design
  • Empty states strategy
  • First-run experience
  • Onboarding audit
2 modes 5 bias detectors

forge-copy

Consistent voice across every surface

  • UI microcopy generation
  • Email and notification templates
  • Error message design
  • Brand voice enforcement
2 modes 5 bias detectors

forge-seo

SEO grounded in your product, not tricks

  • Technical SEO audit
  • Intent-based keyword research
  • Schema markup generation
  • Content gap analysis
3 modes 4 bias detectors

forge-growth

Retention loops before acquisition tactics

  • Retention loops
  • Referral mechanics
  • Upgrade triggers
  • Churn prevention
3 modes 6 bias detectors

forge-ab

Test with rigor, not hunches

  • Structured hypothesis design
  • Sample size pre-commitment
  • Statistical analysis
  • Documented learnings
3 modes 4 bias detectors

The dev pipeline handles code from spec to deploy. Advisory modules cover product strategy, discovery, marketing, and growth. Every module works standalone.

ECOSYSTEM DASHBOARD

One command. Full ecosystem visibility.

After setup, /forge:setup becomes your dashboard - plugin versions, project profile, integrations, and available actions. Everything your AI needs to know, always up to date.

forge:setup - Ecosystem Dashboard

Forge Ecosystem Dashboard - acme-web


Component Version Status
forge-core v4.13.0 Configured
forge-product v3.9.0 Configured
forge-qa v3.7.0 Configured
forge-tracker v3.3.0 Configured
forge-autopilot v1.4.0 Active (6 batches)
forge-worktree v1.2.0 Active

Project Profile

Property Value
Stack React 19 + TanStack Start + Tailwind v4 + Vite + TypeScript strict
Architecture FSD (5 layers, 13 features)
Pipeline Parallel, trunk-based, conventional commits
Git workflow Trunk-based with worktrees
CI/CD Vercel (SSR Docker)
Backend acme-api (bidirectional propagation)

Ecosystem is fully configured and up to date. Available actions:

   /forge:hub - describe what you want, Hub routes to the right pipeline

   /forge:tracker - task management via Notion

   /forge:autopilot - batch development pipeline

   /forge:qa - testing and coverage

TESTIMONIALS

What developers say

50+ quality patterns 20 min setup time 15 modules
"We had this recurring nightmare where Claude would 'helpfully' refactor our entire auth layer every time someone asked it to add a field to the user model. Forge's architecture audit basically draws a line and says 'this is load-bearing, don't touch it.' QA module catches the rest. Haven't had a rollback in 6 weeks."

Marcus T.

Senior Backend Engineer - Series B healthtech

Pro
"29 euros. 20 min setup. Now Claude actually knows my project has a monorepo with shared packages before it starts generating import paths to nowhere. That's it. That's the review."

Anja Kowalski

Freelance Full-Stack Developer

Starter
"Autopilot is the reason I bought Complete. We run 3 worktrees in parallel for sprint work and before Forge the merge conflicts were genuinely worse than just doing it sequentially. Now the agents actually coordinate. It's not magic - you still review everything - but I stopped mass-closing PRs on Monday mornings."

David Chen

Tech Lead - Seed-stage dev tools startup

Complete
"Showed the product design module to our PM and she asked if she could use it too. The QA traceability alone justified Pro for us - we went from 'Claude wrote tests that test nothing' to actual acceptance criteria coverage. Still annoying that I can't get per-seat billing but whatever, it works."

Priya S.

Engineering Manager - Mid-size fintech

Pro
"Honestly was skeptical about paying for a Claude plugin when Claude itself costs money. But I kept losing 15 minutes at the start of every session re-explaining my stack. Forge just... remembers. Architecture, conventions, the whole thing. Starter is enough for my use case."

Jake Morrison

Indie Dev / OSS Maintainer

Starter
"The prompt management module is lowkey the most underrated part. I had like 9 different system prompts copy-pasted across repos with subtle differences. Now there's one source of truth and it actually evolves based on what works. Also the tracker integration with Linear saves me from context-switching to update tickets manually."

Tomas Herrera

Senior Frontend Engineer - Series A edtech

Pro
"I was mass-evaluating AI dev tools for the team and most of them are either vaporware or just a prettier wrapper around 'paste your codebase into context.' Forge is the only one that actually enforces architecture decisions downstream. The advisory modules are hit or miss depending on your stack but the core pipeline is solid. We standardized on Pro for ICs and Complete for leads."

Lena R.

CTO - B2B SaaS, 15 engineers

Complete
"lol it literally detected my NestJS project structure and stopped Claude from generating Express-style route handlers. worth it for that alone tbh"

Sam K.

Backend Developer - Contract, NestJS

Starter
PRICING

Transparent pricing. No token billing.

STARTER

For solo developers

€29 one-time

Includes 1 year of updates

Stop re-explaining your stack. One setup, forever.

  • 7-gate audit detects your stack, layers, conventions
  • 50+ quality patterns for AI-generated code
  • Project-aware dev-skills - one setup, forever
  • Scoped phases prevent runaway sessions
Get Starter

✓ 14-day money-back guarantee

★ Recommended

PRO

For professional developers

€79 one-time

Includes 1 year of updates

Full pipeline: Design → Code → Test → Track

  • Everything in Starter
  • Describe features in business language - AI builds from spec
  • Tests traced to requirements, not AI guesswork
  • Prompt engineering frameworks - consistent AI output across sessions
  • 6 modules: core, product, qa, tracker, prompts, worktree
Get Pro →

✓ 14-day money-back guarantee

COMPLETE

For developer-founders

€149 one-time

Includes 1 year of updates

Agent Teams. Zero conflicts. Full automation from discovery to growth.

  • Everything in Pro
  • forge-autopilot - Agent Teams on your backlog, zero merge conflicts
  • 8 product advisory modules - from discovery to growth
  • Every future module included
Get Complete

✓ 14-day money-back guarantee

One-time purchase. Your artifacts stay forever.

Includes 1 year of updates. Renewal optional at reduced price.

No per-token charges. No usage limits. No surprise bills.

Devin: €240/yr mandatory. Cursor Pro: €240/yr. Forge: from €29 once.

BUILT BY

By a developer, for developers

Photo of Martin Sikora

Martin Sikora

Senior Engineer · Founder, Reumbra

"I built Forge because I was tired of re-explaining my architecture to AI agents. Every project, every prompt, the same context from scratch. So I encoded 10 years of engineering decisions into a system that does it automatically."

10+ years

Experience

Senior Engineer

Role

Founder, Reumbra

Company

What is Forge DevKit?

Forge DevKit is a commercial plugin ecosystem for AI coding agents (Claude Code, Cursor, Windsurf). One command scans your repository - stack, layers, patterns - and generates architecture-aware guardrails, quality patterns, and dev-skills your AI follows in every session. 15 modules cover the full pipeline from architecture audit to test generation to Agent Teams orchestration. One-time purchase from EUR 29. No subscription. No per-token charges.

FAQ

Frequently asked questions

How is this different from writing .cursorrules myself?

Auto-generated from architecture audit. Full pipeline, not just rules. Platform-agnostic - works in Cursor AND Claude Code AND Cowork.

Does it work with my stack?

8+ frameworks supported. 3 template families (NestJS/Clean Arch, generic backend, frontend). Stack-specific quality patterns auto-detected.

What if I remove Forge?

Disposable meta-tool: generated artifacts (dev-skills, tests, docs) work independently. Your code doesn't depend on Forge.

Does it work outside Claude Code?

.claude/ directory auto-detected by Cursor, Claude Desktop, Claude Cowork. Forge installs there - all platforms pick it up.

Is there a money-back guarantee?

Yes. 14-day money-back guarantee, no questions asked. If Forge doesn't improve your workflow, email us and we'll refund immediately.

Why is there no free trial?

Forge is a one-time purchase, not a subscription. A free trial doesn't make sense for a tool you buy once. Instead, you get a 14-day money-back guarantee - buy it, try it on your project, and if it doesn't work for you, get a full refund. Zero risk.

What's the ROI of using Forge?

One prevented production bug pays for the entire year. At €29-79, Forge costs less than a single hour of debugging AI-generated regressions.

How does Forge compare to Devin?

Devin is an autonomous AI developer - it writes code for you. Forge is infrastructure for YOUR AI agent - it makes your existing tools (Claude Code, Cursor, Windsurf) architecture-aware. Devin costs €240/yr mandatory. Forge starts at €29 one-time.

Does Forge work with Claude Agent Teams?

Yes. forge-autopilot is specifically designed to orchestrate Agent Teams - it handles backlog triage, conflict detection, wave planning, and auto-merge. Think of it as Kubernetes for AI agents.

What AI coding tools does Forge support?

Any tool that reads CLAUDE.md, .cursorrules, or similar config files. This includes Claude Code, Cursor, Windsurf, Cline, and any future AI agent. Forge generates platform-agnostic artifacts.

What happens after the 1-year update period?

Your generated artifacts continue working forever - they're files in your project, not a service. You just won't get new quality patterns or module updates. Optionally renew at a reduced price to stay current.

How does Forge reduce AI token costs?

Three ways. First: execution modes - economy mode skips optional quality steps, cutting ~60% of tokens on routine tasks. Second: pipeline phases communicate through 500-token summaries instead of passing full context (~49K) between phases. Third: subagents receive only their scope, not the entire codebase. Simple bug fix? 5-step economy mode. Complex feature? Full quality pipeline. You choose per task.

Your AI should respect your architecture.

50+ guardrails. 7-gate audit. Tests from requirements. One setup.

One-time purchase. 14-day money-back guarantee.

Get Forge →