@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.
- package/CHANGELOG.md +335 -0
- package/dist/configured-state.cjs.map +1 -1
- package/dist/configured-state.js.map +1 -1
- package/dist/index.cjs +3114 -1085
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +126 -123
- package/dist/index.d.ts +126 -123
- package/dist/index.js +3115 -1085
- package/dist/index.js.map +1 -1
- package/dist/{setup-entry-CU0vHfyd.d.cts → setup-entry-Cr6cKgzq.d.cts} +17 -18
- package/dist/{setup-entry-CU0vHfyd.d.ts → setup-entry-Cr6cKgzq.d.ts} +17 -18
- package/dist/setup-entry.cjs +3993 -497
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.d.cts +1 -1
- package/dist/setup-entry.d.ts +1 -1
- package/dist/setup-entry.js +3991 -499
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +6 -4
- package/package.json +133 -129
- package/skills/agentchat/SKILL.md +317 -142
package/openclaw.plugin.json
CHANGED
|
@@ -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.
|
|
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
|
-
"
|
|
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": "
|
|
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–
|
|
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.
|
|
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
|
-
"
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
"
|
|
62
|
-
"
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
"
|
|
84
|
-
"
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
"
|
|
88
|
-
"
|
|
89
|
-
"
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
"
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
"
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
"
|
|
113
|
-
"
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
"
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
"
|
|
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
|
+
}
|