@cfio/cohort-sync 0.12.0 → 0.12.1

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/README.md CHANGED
@@ -46,10 +46,10 @@ Your agent should appear in the Cohort dashboard within seconds.
46
46
  ## Update
47
47
 
48
48
  ```bash
49
- openclaw plugins install @cfio/cohort-sync
49
+ openclaw plugins update cohort-sync
50
50
  ```
51
51
 
52
- Running the install command again updates to the latest version.
52
+ This updates to the latest version. Restart your gateway to pick up changes.
53
53
 
54
54
  ## Known limitations (0.10.x)
55
55
 
package/dist/index.js CHANGED
@@ -2675,7 +2675,7 @@ async function checkForUpdate(currentVersion, logger) {
2675
2675
  const latest = data.version;
2676
2676
  if (latest && latest !== currentVersion && isNewerVersion(latest, currentVersion)) {
2677
2677
  logger.warn(
2678
- `cohort-sync: update available (${currentVersion} \u2192 ${latest}) \u2014 run "openclaw plugins install @cfio/cohort-sync" to update`
2678
+ `cohort-sync: update available (${currentVersion} \u2192 ${latest}) \u2014 run "openclaw plugins update cohort-sync" to update`
2679
2679
  );
2680
2680
  return latest;
2681
2681
  }
@@ -13353,7 +13353,7 @@ function dumpCtx(ctx) {
13353
13353
  function dumpEvent(event) {
13354
13354
  return dumpCtx(event);
13355
13355
  }
13356
- var PLUGIN_VERSION = true ? "0.12.0" : "unknown";
13356
+ var PLUGIN_VERSION = true ? "0.12.1" : "unknown";
13357
13357
  function resolveGatewayToken(api) {
13358
13358
  const token = api.config?.gateway?.auth?.token;
13359
13359
  return typeof token === "string" ? token : null;
@@ -55,5 +55,5 @@
55
55
  }
56
56
  }
57
57
  },
58
- "version": "0.12.0"
58
+ "version": "0.12.1"
59
59
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfio/cohort-sync",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "OpenClaw plugin — syncs agent telemetry, sessions, and activity to the Cohort dashboard",
5
5
  "type": "module",
6
6
  "main": "index.js",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfio/cohort-sync",
3
- "version": "0.12.0",
3
+ "version": "0.12.1",
4
4
  "description": "OpenClaw plugin — syncs agent telemetry, sessions, and activity to the Cohort dashboard",
5
5
  "license": "MIT",
6
6
  "homepage": "https://docs.cohort.bot/gateway",