@agentchatme/openclaw 0.2.0 → 0.4.0

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.
@@ -2,7 +2,7 @@
2
2
  "id": "agentchat",
3
3
  "name": "AgentChat",
4
4
  "description": "Connect OpenClaw agents to the AgentChat messaging platform.",
5
- "version": "0.2.0",
5
+ "version": "0.4.0",
6
6
  "channels": [
7
7
  "agentchat"
8
8
  ],
@@ -30,7 +30,9 @@
30
30
  },
31
31
  "agentHandle": {
32
32
  "type": "string",
33
- "pattern": "^[a-z0-9_.-]{3,32}$"
33
+ "minLength": 3,
34
+ "maxLength": 30,
35
+ "pattern": "^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$"
34
36
  },
35
37
  "reconnect": {
36
38
  "type": "object",
@@ -154,7 +156,7 @@
154
156
  "label": "AgentChat API key",
155
157
  "placeholder": "ac_live_...",
156
158
  "sensitive": true,
157
- "help": "Obtain from AgentChat dashboard Settings API keys."
159
+ "help": "The setup wizard registers you via email OTP and mints a key — or paste an existing ac_live_… key."
158
160
  },
159
161
  "apiBase": {
160
162
  "label": "API base URL",
@@ -165,7 +167,7 @@
165
167
  "agentHandle": {
166
168
  "label": "Agent handle",
167
169
  "placeholder": "my-agent",
168
- "help": "3–32 chars, lowercase alphanumeric plus . _ -"
170
+ "help": "3–30 chars, lowercase letters/digits/hyphens; must start with a letter."
169
171
  },
170
172
  "reconnect": {
171
173
  "label": "Reconnect backoff",
package/package.json CHANGED
@@ -1,129 +1,133 @@
1
- {
2
- "name": "@agentchatme/openclaw",
3
- "version": "0.2.0",
4
- "description": "Official OpenClaw channel plugin for AgentChat — connects OpenClaw agents to the AgentChat messaging platform.",
5
- "type": "module",
6
- "main": "./dist/index.cjs",
7
- "module": "./dist/index.js",
8
- "types": "./dist/index.d.ts",
9
- "exports": {
10
- ".": {
11
- "types": "./dist/index.d.ts",
12
- "import": "./dist/index.js",
13
- "require": "./dist/index.cjs",
14
- "default": "./dist/index.js"
15
- },
16
- "./setup-entry": {
17
- "types": "./dist/setup-entry.d.ts",
18
- "import": "./dist/setup-entry.js",
19
- "require": "./dist/setup-entry.cjs",
20
- "default": "./dist/setup-entry.js"
21
- },
22
- "./configured-state": {
23
- "types": "./dist/configured-state.d.ts",
24
- "import": "./dist/configured-state.js",
25
- "require": "./dist/configured-state.cjs",
26
- "default": "./dist/configured-state.js"
27
- },
28
- "./openclaw.plugin.json": "./openclaw.plugin.json",
29
- "./package.json": "./package.json"
30
- },
31
- "files": [
32
- "dist",
33
- "skills",
34
- "openclaw.plugin.json",
35
- "README.md",
36
- "CHANGELOG.md",
37
- "RUNBOOK.md",
38
- "SECURITY.md",
39
- "LICENSE"
40
- ],
41
- "sideEffects": false,
42
- "engines": {
43
- "node": ">=20.0.0"
44
- },
45
- "scripts": {
46
- "build": "tsup && node scripts/emit-manifest-schema.mjs",
47
- "build:manifest": "node scripts/emit-manifest-schema.mjs",
48
- "dev": "tsup --watch",
49
- "type-check": "tsc --noEmit",
50
- "test": "vitest run",
51
- "test:watch": "vitest",
52
- "test:coverage": "vitest run --coverage",
53
- "test:smoke": "vitest run tests/smoke.live.test.ts",
54
- "lint": "echo 'no lint configured yet'",
55
- "prepublishOnly": "pnpm run build && pnpm run type-check && pnpm run test"
56
- },
57
- "peerDependencies": {
58
- "openclaw": ">=2026.4.0"
59
- },
60
- "dependencies": {
61
- "pino": "^9.5.0",
62
- "ws": "^8.18.0",
63
- "zod": "^4.3.6"
64
- },
65
- "devDependencies": {
66
- "@types/node": "^22.19.17",
67
- "@types/ws": "^8.18.1",
68
- "@vitest/coverage-v8": "^3.2.4",
69
- "openclaw": "^2026.4.15",
70
- "tsup": "^8.5.1",
71
- "typescript": "^5.7.0",
72
- "vitest": "^3.2.4"
73
- },
74
- "openclaw": {
75
- "extensions": [
76
- "./dist/index.js"
77
- ],
78
- "setupEntry": "./dist/setup-entry.js",
79
- "setupFeatures": {
80
- "legacyStateMigrations": false
81
- },
82
- "install": {
83
- "npmSpec": "@agentchatme/openclaw",
84
- "defaultChoice": "npm"
85
- },
86
- "channel": {
87
- "id": "agentchat",
88
- "label": "AgentChat",
89
- "selectionLabel": "AgentChat (messaging platform for agents)",
90
- "detailLabel": "AgentChat",
91
- "docsPath": "/channels/agentchat",
92
- "docsLabel": "agentchat",
93
- "blurb": "connect your agent to the AgentChat messaging platform — handle, contacts, groups, presence, attachments.",
94
- "systemImage": "message",
95
- "markdownCapable": true,
96
- "configuredState": {
97
- "specifier": "./dist/configured-state.js",
98
- "exportName": "hasAgentChatConfiguredState"
99
- }
100
- },
101
- "bundle": {
102
- "stageRuntimeDependencies": true
103
- }
104
- },
105
- "keywords": [
106
- "agentchat",
107
- "openclaw",
108
- "openclaw-plugin",
109
- "channel",
110
- "messaging",
111
- "ai",
112
- "agents",
113
- "realtime"
114
- ],
115
- "license": "MIT",
116
- "author": "AgentChat",
117
- "homepage": "https://agentchat.me",
118
- "repository": {
119
- "type": "git",
120
- "url": "git+https://github.com/agentchatme/agentchat.git",
121
- "directory": "integrations/openclaw-channel"
122
- },
123
- "bugs": {
124
- "url": "https://github.com/agentchatme/agentchat/issues"
125
- },
126
- "publishConfig": {
127
- "access": "public"
128
- }
129
- }
1
+ {
2
+ "name": "@agentchatme/openclaw",
3
+ "version": "0.4.0",
4
+ "description": "Official OpenClaw channel plugin for AgentChat — connects OpenClaw agents to the AgentChat messaging platform.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "types": "./dist/index.d.ts",
12
+ "import": "./dist/index.js",
13
+ "require": "./dist/index.cjs",
14
+ "default": "./dist/index.js"
15
+ },
16
+ "./setup-entry": {
17
+ "types": "./dist/setup-entry.d.ts",
18
+ "import": "./dist/setup-entry.js",
19
+ "require": "./dist/setup-entry.cjs",
20
+ "default": "./dist/setup-entry.js"
21
+ },
22
+ "./configured-state": {
23
+ "types": "./dist/configured-state.d.ts",
24
+ "import": "./dist/configured-state.js",
25
+ "require": "./dist/configured-state.cjs",
26
+ "default": "./dist/configured-state.js"
27
+ },
28
+ "./openclaw.plugin.json": "./openclaw.plugin.json",
29
+ "./package.json": "./package.json"
30
+ },
31
+ "files": [
32
+ "dist",
33
+ "skills",
34
+ "openclaw.plugin.json",
35
+ "README.md",
36
+ "CHANGELOG.md",
37
+ "RUNBOOK.md",
38
+ "SECURITY.md",
39
+ "LICENSE"
40
+ ],
41
+ "sideEffects": false,
42
+ "engines": {
43
+ "node": ">=20.0.0"
44
+ },
45
+ "peerDependencies": {
46
+ "openclaw": ">=2026.4.0"
47
+ },
48
+ "dependencies": {
49
+ "@sinclair/typebox": "^0.34.0",
50
+ "pino": "^9.5.0",
51
+ "ws": "^8.18.0",
52
+ "zod": "^4.3.6",
53
+ "@agentchatme/agentchat": "^1.3.0"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^22.19.17",
57
+ "@types/ws": "^8.18.1",
58
+ "@vitest/coverage-v8": "^3.2.4",
59
+ "openclaw": "^2026.4.15",
60
+ "tsup": "^8.5.1",
61
+ "typescript": "^5.7.0",
62
+ "vitest": "^3.2.4"
63
+ },
64
+ "openclaw": {
65
+ "compat": {
66
+ "pluginApi": ">=2026.4.0"
67
+ },
68
+ "extensions": [
69
+ "./dist/index.js"
70
+ ],
71
+ "setupEntry": "./dist/setup-entry.js",
72
+ "setupFeatures": {
73
+ "legacyStateMigrations": false
74
+ },
75
+ "install": {
76
+ "npmSpec": "@agentchatme/openclaw",
77
+ "defaultChoice": "npm"
78
+ },
79
+ "channel": {
80
+ "id": "agentchat",
81
+ "label": "AgentChat",
82
+ "selectionLabel": "AgentChat (messaging platform for agents)",
83
+ "detailLabel": "AgentChat",
84
+ "docsPath": "/channels/agentchat",
85
+ "docsLabel": "agentchat",
86
+ "blurb": "connect your agent to the AgentChat messaging platform — handle, contacts, groups, presence, attachments.",
87
+ "systemImage": "message",
88
+ "markdownCapable": true,
89
+ "configuredState": {
90
+ "specifier": "./dist/configured-state.js",
91
+ "exportName": "hasAgentChatConfiguredState"
92
+ }
93
+ },
94
+ "bundle": {
95
+ "stageRuntimeDependencies": true
96
+ }
97
+ },
98
+ "keywords": [
99
+ "agentchat",
100
+ "openclaw",
101
+ "openclaw-plugin",
102
+ "channel",
103
+ "messaging",
104
+ "ai",
105
+ "agents",
106
+ "realtime"
107
+ ],
108
+ "license": "MIT",
109
+ "author": "AgentChat",
110
+ "homepage": "https://agentchat.me",
111
+ "repository": {
112
+ "type": "git",
113
+ "url": "git+https://github.com/agentchatme/agentchat.git",
114
+ "directory": "integrations/openclaw-channel"
115
+ },
116
+ "bugs": {
117
+ "url": "https://github.com/agentchatme/agentchat/issues"
118
+ },
119
+ "publishConfig": {
120
+ "access": "public"
121
+ },
122
+ "scripts": {
123
+ "build": "tsup && node scripts/emit-manifest-schema.mjs",
124
+ "build:manifest": "node scripts/emit-manifest-schema.mjs",
125
+ "dev": "tsup --watch",
126
+ "type-check": "tsc --noEmit",
127
+ "test": "vitest run",
128
+ "test:watch": "vitest",
129
+ "test:coverage": "vitest run --coverage",
130
+ "test:smoke": "vitest run tests/smoke.live.test.ts",
131
+ "lint": "echo 'no lint configured yet'"
132
+ }
133
+ }