mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-06 05:49:12 +02:00
* fix(cli): poll health endpoint instead of fixed sleep in daemon start The daemon start command waited a fixed 2 seconds then checked the health endpoint once. If the daemon took longer to initialize (auth, workspace loading), the check failed and printed a misleading error even though the daemon started successfully. Replace the single check with a polling loop (500ms interval, 15s timeout) so the CLI waits for the daemon to actually be ready. * fix(agent): rewrite openclaw tests to match new backend API The openclaw backend was rewritten in #715 to parse a single JSON blob instead of streaming NDJSON events. The tests still referenced the old types (openclawEvent) and methods (handleOCTextEvent, etc.), causing a build failure in CI. Rewrite all tests to exercise the new processOutput method and openclawInt64 helper.