@cfio/cohort-sync 0.9.1 → 0.9.2

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.
@@ -55,5 +55,5 @@
55
55
  }
56
56
  }
57
57
  },
58
- "version": "0.9.1"
58
+ "version": "0.9.2"
59
59
  }
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfio/cohort-sync",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Syncs agent status and skills to Cohort dashboard",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -0,0 +1,59 @@
1
+ {
2
+ "id": "cohort-sync",
3
+ "uiHints": {
4
+ "apiUrl": {
5
+ "label": "Cohort API URL",
6
+ "placeholder": "https://api.cohort.bot",
7
+ "help": "Base URL for the Cohort telemetry API"
8
+ },
9
+ "apiKey": {
10
+ "label": "API Key",
11
+ "sensitive": true,
12
+ "placeholder": "cohort_...",
13
+ "help": "Cohort API key for telemetry writes"
14
+ },
15
+ "syncIntervalMs": {
16
+ "label": "Sync Interval (ms)",
17
+ "placeholder": "300000",
18
+ "advanced": true,
19
+ "help": "Fallback full sync interval in milliseconds (default: 5 min)"
20
+ },
21
+ "agentNameMap": {
22
+ "label": "Agent Name Map",
23
+ "advanced": true,
24
+ "help": "Map OpenClaw agent IDs to Cohort display names (e.g. {\"main\": \"yuki\"})"
25
+ },
26
+ "convexUrl": {
27
+ "label": "Convex WebSocket URL",
28
+ "placeholder": "https://ws.cohort.bot",
29
+ "advanced": true,
30
+ "help": "Override the auto-derived Convex WebSocket URL (rarely needed)"
31
+ }
32
+ },
33
+ "configSchema": {
34
+ "type": "object",
35
+ "additionalProperties": false,
36
+ "properties": {
37
+ "apiUrl": {
38
+ "type": "string",
39
+ "default": "https://api.cohort.bot"
40
+ },
41
+ "apiKey": {
42
+ "type": "string"
43
+ },
44
+ "syncIntervalMs": {
45
+ "type": "number"
46
+ },
47
+ "agentNameMap": {
48
+ "type": "object",
49
+ "additionalProperties": {
50
+ "type": "string"
51
+ }
52
+ },
53
+ "convexUrl": {
54
+ "type": "string"
55
+ }
56
+ }
57
+ },
58
+ "version": "0.9.2"
59
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cfio/cohort-sync",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "description": "Syncs agent status and skills to Cohort dashboard",
5
5
  "license": "MIT",
6
6
  "homepage": "https://docs.cohort.bot/gateway",
@@ -28,6 +28,7 @@
28
28
  },
29
29
  "files": [
30
30
  "dist",
31
+ "openclaw.plugin.json",
31
32
  "scripts/postinstall.mjs"
32
33
  ],
33
34
  "publishConfig": {