@agentchatme/openclaw 0.6.19 → 0.7.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/CHANGELOG.md +122 -103
- package/LICENSE +21 -21
- package/README.md +306 -306
- package/RUNBOOK.md +134 -134
- package/SECURITY.md +104 -104
- package/dist/index.cjs +60 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +59 -2
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +60 -3
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +59 -2
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -4
- package/package.json +21 -19
- package/skills/agentchat/SKILL.md +319 -317
package/openclaw.plugin.json
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"id": "agentchat",
|
|
3
3
|
"name": "AgentChat",
|
|
4
|
-
"displayName": "AgentChat",
|
|
5
4
|
"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.
|
|
7
|
-
"icon": "./icon.svg",
|
|
8
|
-
"homepage": "https://agentchat.me",
|
|
5
|
+
"version": "0.7.1",
|
|
9
6
|
"channels": [
|
|
10
7
|
"agentchat"
|
|
11
8
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentchatme/openclaw",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.7.1",
|
|
4
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
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -41,10 +41,25 @@
|
|
|
41
41
|
],
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"engines": {
|
|
44
|
-
"node": ">=
|
|
44
|
+
"node": ">=22.0.0"
|
|
45
|
+
},
|
|
46
|
+
"scripts": {
|
|
47
|
+
"build": "tsup && node scripts/fix-cjs-extensions.mjs && node scripts/emit-manifest-schema.mjs",
|
|
48
|
+
"build:manifest": "node scripts/emit-manifest-schema.mjs",
|
|
49
|
+
"dev": "tsup --watch",
|
|
50
|
+
"type-check": "tsc --noEmit",
|
|
51
|
+
"test": "vitest run",
|
|
52
|
+
"test:watch": "vitest",
|
|
53
|
+
"test:coverage": "vitest run --coverage",
|
|
54
|
+
"test:smoke": "vitest run tests/smoke.live.test.ts",
|
|
55
|
+
"test:install-source": "node scripts/verify-source-installs.mjs",
|
|
56
|
+
"lint": "echo 'no lint configured yet'",
|
|
57
|
+
"prepublishOnly": "pnpm run build && pnpm run type-check && pnpm run test && pnpm run test:install-source",
|
|
58
|
+
"prepack": "node scripts/strip-publish-fields.mjs apply",
|
|
59
|
+
"postpack": "node scripts/strip-publish-fields.mjs restore"
|
|
45
60
|
},
|
|
46
61
|
"dependencies": {
|
|
47
|
-
"
|
|
62
|
+
"agentchatme": "^1.0.0",
|
|
48
63
|
"@sinclair/typebox": "^0.34.0",
|
|
49
64
|
"pino": "^9.5.0",
|
|
50
65
|
"ws": "^8.18.0",
|
|
@@ -154,25 +169,12 @@
|
|
|
154
169
|
"homepage": "https://agentchat.me",
|
|
155
170
|
"repository": {
|
|
156
171
|
"type": "git",
|
|
157
|
-
"url": "git+https://github.com/agentchatme/agentchat.git"
|
|
158
|
-
"directory": "integrations/openclaw-channel"
|
|
172
|
+
"url": "git+https://github.com/agentchatme/agentchat-openclaw.git"
|
|
159
173
|
},
|
|
160
174
|
"bugs": {
|
|
161
|
-
"url": "https://github.com/agentchatme/agentchat/issues"
|
|
175
|
+
"url": "https://github.com/agentchatme/agentchat-openclaw/issues"
|
|
162
176
|
},
|
|
163
177
|
"publishConfig": {
|
|
164
178
|
"access": "public"
|
|
165
|
-
},
|
|
166
|
-
"scripts": {
|
|
167
|
-
"build": "tsup && node scripts/fix-cjs-extensions.mjs && node scripts/emit-manifest-schema.mjs",
|
|
168
|
-
"build:manifest": "node scripts/emit-manifest-schema.mjs",
|
|
169
|
-
"dev": "tsup --watch",
|
|
170
|
-
"type-check": "tsc --noEmit",
|
|
171
|
-
"test": "vitest run",
|
|
172
|
-
"test:watch": "vitest",
|
|
173
|
-
"test:coverage": "vitest run --coverage",
|
|
174
|
-
"test:smoke": "vitest run tests/smoke.live.test.ts",
|
|
175
|
-
"test:install-source": "node scripts/verify-source-installs.mjs",
|
|
176
|
-
"lint": "echo 'no lint configured yet'"
|
|
177
179
|
}
|
|
178
|
-
}
|
|
180
|
+
}
|