@cfio/cohort-sync 0.9.4 → 0.10.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 +19 -20
- package/dist/index.js +188 -576
- package/dist/openclaw.plugin.json +1 -1
- package/dist/package.json +2 -2
- package/package.json +5 -5
- package/scripts/postinstall.mjs +1 -1
package/dist/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cfio/cohort-sync",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.10.1",
|
|
4
|
+
"description": "OpenClaw plugin — syncs agent telemetry, sessions, and activity to the Cohort dashboard",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"openclaw": {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cfio/cohort-sync",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.10.1",
|
|
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",
|
|
7
7
|
"repository": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
"access": "public"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"esbuild": "^0.25.
|
|
39
|
-
"vitest": "^2.1.
|
|
38
|
+
"esbuild": "^0.25.11",
|
|
39
|
+
"vitest": "^2.1.9"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"openclaw": ">=0.1.0"
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
]
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@sinclair/typebox": "^0.34.
|
|
50
|
+
"@sinclair/typebox": "^0.34.48",
|
|
51
51
|
"convex": "^1.33.0"
|
|
52
52
|
}
|
|
53
53
|
}
|
package/scripts/postinstall.mjs
CHANGED
|
@@ -39,7 +39,7 @@ try {
|
|
|
39
39
|
}
|
|
40
40
|
|
|
41
41
|
console.log(`✓ cohort-sync installed to ${targetDir}`);
|
|
42
|
-
console.log(`
|
|
42
|
+
console.log(` Set your API key: openclaw config set plugins.entries.cohort-sync.config.apiKey "ch_live_..."`);
|
|
43
43
|
} catch (err) {
|
|
44
44
|
// Never fail the npm install — print a warning and exit 0
|
|
45
45
|
console.warn(`⚠ Could not copy cohort-sync to ${targetDir}`);
|