@floomhq/floom 1.0.34 → 1.0.35

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.
@@ -155,7 +155,14 @@ export async function pushWatchOnce(opts) {
155
155
  const hash = hashPackage(key, skillPackage.skillBody, skillPackage.packageFiles);
156
156
  const pushed = pushManifest.files[pushKey];
157
157
  if (pushed?.hash === hash) {
158
- skipped += 1;
158
+ if (!isUnchangedSyncedPackage(root, skillPackage, syncManifest)) {
159
+ markPackageSynced(root, skillPackage, syncManifest, pushed.slug);
160
+ await writeSyncManifest(syncManifest);
161
+ adopted += 1;
162
+ }
163
+ else {
164
+ skipped += 1;
165
+ }
159
166
  continue;
160
167
  }
161
168
  if (!opts.yolo) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@floomhq/floom",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "description": "Sync AI skills across agents and machines.",
5
5
  "license": "MIT",
6
6
  "type": "module",