mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-27 21:33:41 +02:00
Dev builds (go run / untagged) report cli_version="dev" which is not a valid semver string. Both frontend and server-side version checks treated this as "missing" and blocked the Quick Create flow entirely. Since dev builds are built from HEAD and are always at least as new as any released version, "dev" should always pass the gate. Fixed in both: - packages/core/runtimes/cli-version.ts (frontend pre-check) - server/pkg/agent/version.go (server trust boundary)