Unified local AI workstation for model lifecycle, chat/agent workflows, orchestration, observability, and remote deployment.
This release consolidates major repo changes currently in the tree, including:
- OpenAI proxy activation policy controls for
load_if_idleandswitch_on_request - lifecycle-aware run aborts when model eviction happens
- SSE run stream termination fixes across backend and frontend
- Daytona toolbox reliability hardening (route fallback, quota cleanup retry, alias-safe command parsing)
- dashboard launch-state cleanup improvements
- expanded controller/daytona test coverage for run termination and toolbox behavior
- Overview: docs/README.md
- Setup and deployment: setup/README.md
- Environment variables: docs/environment.md
controller/: Bun/Hono backend, orchestration, chat runtime, lifecycle, metricsfrontend/: Next.js app, chat UI, proxy endpoints, client statecli/: Bun CLI for controller accessswift-client/: iOS/macOS client (XcodeGen)shared/: shared types/contractsconfig/: runtime and integration configsdocs/: documentation index and environment notesscripts/: operational scripts (deployment + controller daemon helpers)docker-compose.yml: full stack service definitionsscripts/daemon-*.sh: start/status/stop helpers for background controller runs
- Controller (local):
cd controller
npx tsc --noEmit
bun test
bun src/main.ts- Frontend:
cd frontend
npm run test
npm run lint
npm run build
npm run dev- Full stack with Docker (controller + frontend + infra):
docker compose up -d --build controller frontend- Run controller as a background daemon:
./scripts/daemon-start.sh
./scripts/daemon-status.sh
./scripts/daemon-stop.shcurl -sS http://localhost:8080/health
curl -I http://localhost:3000See setup/README.md for complete setup, deployment, and verification instructions.
- Development branch:
dev - Production integration branch:
main - Release tags:
vX.Y.Z
For this release:
- merge release work into
mainanddev - tag
v1.13.0 - create a new post-release working branch