Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 775 Bytes

File metadata and controls

47 lines (31 loc) · 775 Bytes

Prototype Monorepo

This repository is now split into two nested monorepos:

  • assistant/: assistant-side code and integrations.
  • executor/: executor infrastructure (sandbox runtime, approvals API, task history, web UI).

Focus Area

The active prototype work is in executor/.

Quick Start

bun install --cwd executor

Terminal 1:

bun run --cwd executor dev:convex

Terminal 2:

bun run --cwd executor dev

Terminal 3:

bun run --cwd executor dev:worker

Terminal 4:

bun run --cwd executor dev:web

This starts:

  • Local Convex backend
  • Executor API server (control plane + internal runtime callbacks)
  • Executor worker (queued task execution)
  • Executor web UI (pending approvals + task history)