You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 12, 2026. It is now read-only.
README vs scripts
README says to use dev:ui, but only dev:app exists → pnpm run dev:ui fails with "Missing script: dev:ui".
Turbo filter
Root package.json uses --filter='app' and --filter='agent', but package names are @repo/app and @repo/agent. So pnpm run dev:app (and dev:agent) fails with "No package found with name 'app' in workspace".
Fix:
In root package.json, use --filter='@repo/app' and --filter='@repo/agent' (and optionally add a dev:ui script that does the same as dev:app).
In README, we either document dev:app instead of dev:ui, or add dev:ui as above so README is correct.