@floomhq/floom 1.0.54 → 1.0.55

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/launch.js +3 -2
  2. package/package.json +1 -1
package/dist/launch.js CHANGED
@@ -40,8 +40,9 @@ export async function launchGate(opts) {
40
40
  const targets = daemon?.targets ?? [];
41
41
  const daemonTargetsOk = targets.length > 0 && targets.every((target) => targetResults[target]?.ok === true);
42
42
  const releaseAligned = health?.version === CLI_VERSION && cliVersion?.latest === CLI_VERSION;
43
+ const daemonAligned = daemon?.running === true && daemon.version === CLI_VERSION;
43
44
  const payload = {
44
- ok: Boolean(health?.ok && releaseAligned && daemon?.running && daemon?.version === CLI_VERSION),
45
+ ok: Boolean(health?.ok && releaseAligned && daemonAligned && daemonTargetsOk),
45
46
  release: {
46
47
  cli: CLI_VERSION,
47
48
  web: health?.version ?? null,
@@ -61,7 +62,7 @@ export async function launchGate(opts) {
61
62
  } : null,
62
63
  escalations: [
63
64
  ...(releaseAligned ? [] : ["CLI, web health, and server latest versions are not aligned."]),
64
- ...(daemon?.running && daemon.version === CLI_VERSION ? [] : ["Daemon is not running on the pinned CLI version."]),
65
+ ...(daemonAligned ? [] : ["Daemon is not running on the pinned CLI version."]),
65
66
  ...(targets.length === 0 || daemonTargetsOk ? [] : ["Latest daemon cycle has not yet passed for every configured target."]),
66
67
  ],
67
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.54",
3
+ "version": "1.0.55",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",