@floomhq/floom 1.0.59 → 1.0.61

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.
package/dist/daemon.js CHANGED
@@ -11,7 +11,7 @@ const SERVICE_NAME = "floom-sync.service";
11
11
  const LAUNCHD_LABEL = "dev.floom.sync";
12
12
  const LOG_PATH = join(CONFIG_DIR, "daemon.log");
13
13
  const STATUS_PATH = join(CONFIG_DIR, "daemon-status.json");
14
- const NATIVE_BASELINE_VERSION = 2;
14
+ const NATIVE_BASELINE_VERSION = 3;
15
15
  const MIN_INTERVAL_SECONDS = 30;
16
16
  const MIN_TIMEOUT_SECONDS = 30;
17
17
  function targetsFor(value) {
@@ -164,7 +164,7 @@ function isExplicitlyPublished(entry) {
164
164
  return entry?.source === "published" || entry?.source === "updated";
165
165
  }
166
166
  function isBaselineAdopted(entry) {
167
- return entry?.source === "adopted";
167
+ return Boolean(entry) && !isExplicitlyPublished(entry);
168
168
  }
169
169
  function slugFromPushManifest(key, pushManifest) {
170
170
  return pushManifest.files[key]?.slug ?? null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.59",
3
+ "version": "1.0.61",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",