An integrated creative-technology platform for AI orchestration, production-grade print RIP, and GPU-accelerated image editing. Built with Fastify, Next.js, React, SQLite, and WebGL.
- Cortex AI — Autonomous AI constellation with governance, memory, knowledge graphs, and multi-agent orchestration. Brain visualization with 3D tesseract topology.
- EFOS RIP Engine — Deterministic raster image processor with LCMS2 color management, per-channel screening, 8-gate policy enforcement, and blockchain attestation.
- Chroma Master Studio — GPU-accelerated image editor with 47 WebGL shaders, real-time adjustment pipeline, brush/paint engine, and ONNX-based selection tools.
- Trust & Provenance — Full provenance chain: AIx authenticity scoring, fingerprint stack, Merkle accumulation, and sealed color transforms.
git clone https://github.com/efa-arc/arc-platform.git
cd arc-platform
cp .env.example .env
docker compose upOpen http://localhost:3000 for the API health dashboard.
git clone https://github.com/efa-arc/arc-platform.git
cd arc-platform
nvm use # Node 20 (via .nvmrc)
npm install
npm run migrate # Set up SQLite
npm run dev # Start API + portals| Portal | Port | Description |
|---|---|---|
| API | 3000 | Fastify backend + health dashboard |
| Cortex | 3960 | AI constellation interface |
| Cortex Lab | 3965 | Experimental AI features |
| Chroma Studio | 3970 | Image editor |
| Eagle Portal | 3980 | Print production management |
See ARCHITECTURE.md for the full system map.
Backend: Fastify 5 + TypeScript, SQLite (WAL mode), JWT + CBAC auth (160+ capabilities)
Frontend: Next.js 15 + React 19, Tailwind CSS 4, WebGL2
Packages: packages/efos/ (RIP engine), packages/shared/ (shared types)
# Backend
npm run test:arc
# Frontend
cd web && npx vitest run
# E2E
npx playwright testSee CONTRIBUTING.md.