Agent Web scaffolding for MVP execution.
apps/web: Next.js dashboard (URL intake + status + schema viewer)services/control_api: FastAPI control planeservices/runtime_proxy: FastAPI MCP-compatible runtime proxyservices/workers: Async pipeline workers (crawl, synth, validate)packages/contracts: Shared schema/contractsinfra: Local orchestration assetsscripts: Setup and development helpersthoughts: Product and architecture planning docs
- Control API:
cd services/control_apipython -m venv .venv.venv\Scripts\Activate.ps1pip install -e .uvicorn app.main:app --reload --port 8000
- Runtime proxy:
cd services/runtime_proxypython -m venv .venv.venv\Scripts\Activate.ps1pip install -e .uvicorn app.main:app --reload --port 8001
- Web app:
cd apps/webnpm installnpm run dev
- Control API:
http://localhost:8000/health - Runtime proxy:
http://localhost:8001/health