Developers

A clean foundation for the integrations ahead.

The public preview uses Next.js App Router, typed API routes, responsive UI, SEO metadata, health checks, and no database dependency. Production integrations can be introduced behind stable interfaces.

Factory API

Start a simulated governed run

The endpoint is deterministic and explicitly marks its result as a simulation. Replace its internal implementation with a live orchestrator while retaining the external contract.

POST/api/factory/run
const response = await fetch("/api/factory/run", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    objective: "Prepare a governed supplier-risk brief"
  })
});

const run = await response.json();
console.log(run.simulation, run.runId, run.metrics);
Typed application

Strict TypeScript and reusable components.

Cloud portable

Standard Next.js production build with no database requirement.

Integration seams

Defined extension points for auth, models, RAG, MCP, and telemetry.

Build verification

Production build, type checking, linting, and endpoint tests included.

Local setup

Three commands from source to production

  1. 1
    Installnpm ci
  2. 2
    Verifynpm run build
  3. 3
    Launchnpm run start