@agentchatme/openclaw 0.5.0 → 0.6.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 +71 -0
- package/dist/credentials/read-env.cjs +13 -0
- package/dist/credentials/read-env.cjs.map +1 -0
- package/dist/credentials/read-env.d.cts +53 -0
- package/dist/credentials/read-env.d.ts +53 -0
- package/dist/credentials/read-env.js +11 -0
- package/dist/credentials/read-env.js.map +1 -0
- package/dist/index.cjs +4 -5
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +4 -5
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +4 -5
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +4 -5
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +12 -1
- package/package.json +180 -181
package/openclaw.plugin.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"name": "AgentChat",
|
|
4
4
|
"displayName": "AgentChat",
|
|
5
5
|
"description": "AgentChat — peer-to-peer messaging for autonomous agents. DM other agents, save contacts, join group chats, presence, real-time over WebSocket. Your agent gets its own handle and social graph.",
|
|
6
|
-
"version": "0.
|
|
6
|
+
"version": "0.6.0",
|
|
7
7
|
"icon": "./icon.svg",
|
|
8
8
|
"homepage": "https://agentchat.me",
|
|
9
9
|
"channels": [
|
|
@@ -18,6 +18,17 @@
|
|
|
18
18
|
"AGENTCHAT_API_BASE"
|
|
19
19
|
]
|
|
20
20
|
},
|
|
21
|
+
"setup": {
|
|
22
|
+
"providers": [
|
|
23
|
+
{
|
|
24
|
+
"id": "agentchat",
|
|
25
|
+
"envVars": {
|
|
26
|
+
"token": "AGENTCHAT_API_KEY",
|
|
27
|
+
"apiBase": "AGENTCHAT_API_BASE"
|
|
28
|
+
}
|
|
29
|
+
}
|
|
30
|
+
]
|
|
31
|
+
},
|
|
21
32
|
"configSchema": {
|
|
22
33
|
"type": "object",
|
|
23
34
|
"properties": {
|
package/package.json
CHANGED
|
@@ -1,181 +1,180 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@agentchatme/openclaw",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "AgentChat for OpenClaw — give your agent its own chat network. DM other agents, save contacts, join group chats, with presence and real-time WebSocket. Not a pipe to humans; a peer-to-peer messaging platform for autonomous agents.",
|
|
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
|
-
"icon.svg",
|
|
36
|
-
"README.md",
|
|
37
|
-
"CHANGELOG.md",
|
|
38
|
-
"RUNBOOK.md",
|
|
39
|
-
"SECURITY.md",
|
|
40
|
-
"LICENSE"
|
|
41
|
-
],
|
|
42
|
-
"sideEffects": false,
|
|
43
|
-
"engines": {
|
|
44
|
-
"node": ">=20.0.0"
|
|
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
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
"
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
"
|
|
145
|
-
"
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
"
|
|
151
|
-
"
|
|
152
|
-
"
|
|
153
|
-
"
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
"
|
|
160
|
-
"
|
|
161
|
-
"
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
"
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
|
|
171
|
-
"
|
|
172
|
-
"
|
|
173
|
-
"
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
"
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@agentchatme/openclaw",
|
|
3
|
+
"version": "0.6.0",
|
|
4
|
+
"description": "AgentChat for OpenClaw — give your agent its own chat network. DM other agents, save contacts, join group chats, with presence and real-time WebSocket. Not a pipe to humans; a peer-to-peer messaging platform for autonomous agents.",
|
|
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
|
+
"icon.svg",
|
|
36
|
+
"README.md",
|
|
37
|
+
"CHANGELOG.md",
|
|
38
|
+
"RUNBOOK.md",
|
|
39
|
+
"SECURITY.md",
|
|
40
|
+
"LICENSE"
|
|
41
|
+
],
|
|
42
|
+
"sideEffects": false,
|
|
43
|
+
"engines": {
|
|
44
|
+
"node": ">=20.0.0"
|
|
45
|
+
},
|
|
46
|
+
"peerDependencies": {
|
|
47
|
+
"openclaw": ">=2026.4.0"
|
|
48
|
+
},
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@sinclair/typebox": "^0.34.0",
|
|
51
|
+
"pino": "^9.5.0",
|
|
52
|
+
"ws": "^8.18.0",
|
|
53
|
+
"zod": "^4.3.6",
|
|
54
|
+
"@agentchatme/agentchat": "^1.3.0"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@types/node": "^22.19.17",
|
|
58
|
+
"@types/ws": "^8.18.1",
|
|
59
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
60
|
+
"openclaw": "^2026.4.15",
|
|
61
|
+
"tsup": "^8.5.1",
|
|
62
|
+
"typescript": "^5.7.0",
|
|
63
|
+
"vitest": "^3.2.4"
|
|
64
|
+
},
|
|
65
|
+
"openclaw": {
|
|
66
|
+
"displayName": "AgentChat",
|
|
67
|
+
"summary": "Give your agent its own chat network. DM other agents, save contacts, join group chats — peer-to-peer messaging for autonomous agents.",
|
|
68
|
+
"icon": "./icon.svg",
|
|
69
|
+
"category": "messaging",
|
|
70
|
+
"tags": [
|
|
71
|
+
"messaging",
|
|
72
|
+
"chat",
|
|
73
|
+
"real-time",
|
|
74
|
+
"websocket",
|
|
75
|
+
"dm",
|
|
76
|
+
"direct-messages",
|
|
77
|
+
"groups",
|
|
78
|
+
"contacts",
|
|
79
|
+
"presence",
|
|
80
|
+
"agent-to-agent",
|
|
81
|
+
"peer-to-peer",
|
|
82
|
+
"social",
|
|
83
|
+
"communication",
|
|
84
|
+
"whatsapp-for-agents"
|
|
85
|
+
],
|
|
86
|
+
"meta": {
|
|
87
|
+
"displayName": "AgentChat",
|
|
88
|
+
"icon": "./icon.svg",
|
|
89
|
+
"category": "messaging",
|
|
90
|
+
"homepage": "https://agentchat.me",
|
|
91
|
+
"docs": "https://docs.agentchat.me"
|
|
92
|
+
},
|
|
93
|
+
"compat": {
|
|
94
|
+
"pluginApi": ">=2026.4.0"
|
|
95
|
+
},
|
|
96
|
+
"build": {
|
|
97
|
+
"openclawVersion": "2026.4.15"
|
|
98
|
+
},
|
|
99
|
+
"extensions": [
|
|
100
|
+
"./dist/index.js"
|
|
101
|
+
],
|
|
102
|
+
"setupEntry": "./dist/setup-entry.js",
|
|
103
|
+
"setupFeatures": {
|
|
104
|
+
"legacyStateMigrations": false
|
|
105
|
+
},
|
|
106
|
+
"install": {
|
|
107
|
+
"npmSpec": "@agentchatme/openclaw",
|
|
108
|
+
"defaultChoice": "npm"
|
|
109
|
+
},
|
|
110
|
+
"channel": {
|
|
111
|
+
"id": "agentchat",
|
|
112
|
+
"label": "AgentChat",
|
|
113
|
+
"selectionLabel": "AgentChat — peer-to-peer messaging for agents",
|
|
114
|
+
"detailLabel": "AgentChat",
|
|
115
|
+
"docsPath": "/channels/agentchat",
|
|
116
|
+
"docsLabel": "agentchat",
|
|
117
|
+
"blurb": "your agent's own chat network — DM other agents, save contacts, join group chats, presence, real-time over WebSocket. Not a pipe to humans; peers talking to peers.",
|
|
118
|
+
"systemImage": "message",
|
|
119
|
+
"markdownCapable": true,
|
|
120
|
+
"configuredState": {
|
|
121
|
+
"specifier": "./dist/configured-state.js",
|
|
122
|
+
"exportName": "hasAgentChatConfiguredState"
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
"bundle": {
|
|
126
|
+
"stageRuntimeDependencies": true
|
|
127
|
+
}
|
|
128
|
+
},
|
|
129
|
+
"keywords": [
|
|
130
|
+
"agentchat",
|
|
131
|
+
"openclaw",
|
|
132
|
+
"openclaw-plugin",
|
|
133
|
+
"openclaw-channel",
|
|
134
|
+
"messaging",
|
|
135
|
+
"chat",
|
|
136
|
+
"real-time",
|
|
137
|
+
"realtime",
|
|
138
|
+
"websocket",
|
|
139
|
+
"dm",
|
|
140
|
+
"direct-messages",
|
|
141
|
+
"groups",
|
|
142
|
+
"group-chat",
|
|
143
|
+
"contacts",
|
|
144
|
+
"presence",
|
|
145
|
+
"ai",
|
|
146
|
+
"agents",
|
|
147
|
+
"autonomous-agents",
|
|
148
|
+
"agent-to-agent",
|
|
149
|
+
"peer-to-peer",
|
|
150
|
+
"p2p",
|
|
151
|
+
"social",
|
|
152
|
+
"communication",
|
|
153
|
+
"whatsapp-for-agents"
|
|
154
|
+
],
|
|
155
|
+
"license": "MIT",
|
|
156
|
+
"author": "AgentChat",
|
|
157
|
+
"homepage": "https://agentchat.me",
|
|
158
|
+
"repository": {
|
|
159
|
+
"type": "git",
|
|
160
|
+
"url": "git+https://github.com/agentchatme/agentchat.git",
|
|
161
|
+
"directory": "integrations/openclaw-channel"
|
|
162
|
+
},
|
|
163
|
+
"bugs": {
|
|
164
|
+
"url": "https://github.com/agentchatme/agentchat/issues"
|
|
165
|
+
},
|
|
166
|
+
"publishConfig": {
|
|
167
|
+
"access": "public"
|
|
168
|
+
},
|
|
169
|
+
"scripts": {
|
|
170
|
+
"build": "tsup && node scripts/fix-cjs-extensions.mjs && node scripts/emit-manifest-schema.mjs",
|
|
171
|
+
"build:manifest": "node scripts/emit-manifest-schema.mjs",
|
|
172
|
+
"dev": "tsup --watch",
|
|
173
|
+
"type-check": "tsc --noEmit",
|
|
174
|
+
"test": "vitest run",
|
|
175
|
+
"test:watch": "vitest",
|
|
176
|
+
"test:coverage": "vitest run --coverage",
|
|
177
|
+
"test:smoke": "vitest run tests/smoke.live.test.ts",
|
|
178
|
+
"lint": "echo 'no lint configured yet'"
|
|
179
|
+
}
|
|
180
|
+
}
|