Prompt-to-automation platform. Converts a natural-language instruction into a validated, deployed workflow on n8n / Make / Flowise.
apps/web— Next.js frontend (prompt UI, clarification chat, workflow dashboard)apps/api— FastAPI backend (agents, deterministic services, RAG, data layer)packages/shared-types— TypeScript types shared between web and any Node toolingpackages/ui-components— shared design-system componentsinfra— deployment configs (Docker Compose, Coolify, Kubernetes)docs— architecture, API spec, setup guides
cp .env.example .env
docker compose -f infra/docker-compose.yml up -d # postgres, redis, qdrant
cd apps/api && pip install -e . && uvicorn src.main:app --reload
cd apps/web && npm install && npm run devSee docs/setup.md for full local setup and docs/architecture.md for the system design.