Hire AI Employees. Scale Without Hiring.
A production-ready SaaS platform for businesses to hire and manage AI Employees — dashboard, AI agents, workflows, knowledge base, tasks, integrations, billing, and analytics.
.
├── frontend/ # Next.js 15 web application
├── mobile-app/ # native clients — android · ios (Phase 5)
├── backend/ # Spring Boot monolith (Phase 3) — migration source
├── services/ # microservices (Phase 4): api-gateway, auth/user/org,
│ # agent, workflow, kb, notification, billing, audit,
│ # marketplace, analytics, vector
├── platform/ # marketplace ecosystem (Phase 5): marketplace, agent-sdk,
│ # plugin-engine, billing, review-system, analytics, developer-portal
└── deploy/ # IaC: kubernetes + monitoring (prometheus · grafana · elk)
See ARCHITECTURE.md for the full phase-by-phase roadmap and the 5-year enterprise vision.
- Phase 3 — modular monolith in
backend/. - Phase 4 — microservices under
services/(seeservices/README.md). - Phase 5 — marketplace, SDKs, and plugins under
platform/.
The web app lives in frontend/.
Tech stack: Next.js 15 (App Router) · TypeScript · Tailwind CSS v4 · shadcn-style UI · Zustand · TanStack Query · Framer Motion · Recharts · Lucide Icons.
cd frontend
npm install
npm run devThen open http://localhost:3000.
cd frontend
npm run build
npm start