CoAgent is an AI employee team platform for founders. This MVP demonstrates role-based agents, workflows, runs, approvals, tools, and company memory in a polished dark command-center interface.
- Next.js 14 (App Router) + TypeScript
- Tailwind CSS
- Prisma ORM + SQLite (default for demo)/PostgreSQL (production)
- Mock AI execution + mock integrations
- Zero-config local DB via SQLite for fast demos
npm install
cp .env.example .env
npm run db:generate
npm run db:push
npm run db:seed
npm run devDATABASE_URL is required by Prisma. For the local demo, .env.example points to SQLite at file:./dev.db.
npm run db:generate
npm run db:push
npm run db:seed
# Equivalent Prisma-native seed command now also works:
npx prisma db seed- Open Dashboard or Workflows.
- Run Sponsor Outreach Campaign.
- A new run is created with staged logs.
- Human approval is added before email send.
- Review in Runs + Approvals.
- AI reasoning and delegation engine.
- Tool connector auth and external API calls.
- Real-time streaming and queue workers.
- Add NextAuth and workspace RBAC.
- Replace mocked run executor with queue workers (BullMQ/Temporal).
- Connect OpenAI + tool adapters (Gmail, GitHub, Notion, Slack).
- Add vector memory + retrieval + audit logs.