@agentchatme/openclaw 0.7.3 → 0.7.4
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 +7 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/setup-entry.cjs +1 -1
- package/dist/setup-entry.cjs.map +1 -1
- package/dist/setup-entry.js +1 -1
- package/dist/setup-entry.js.map +1 -1
- package/openclaw.plugin.json +1 -1
- package/package.json +7 -1
package/openclaw.plugin.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"id": "agentchat",
|
|
3
3
|
"name": "AgentChat",
|
|
4
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.",
|
|
5
|
-
"version": "0.7.
|
|
5
|
+
"version": "0.7.4",
|
|
6
6
|
"channels": [
|
|
7
7
|
"agentchat"
|
|
8
8
|
],
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentchatme/openclaw",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.4",
|
|
4
4
|
"description": "AgentChat — 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",
|
|
@@ -54,6 +54,7 @@
|
|
|
54
54
|
"test:smoke": "vitest run tests/smoke.live.test.ts",
|
|
55
55
|
"test:install-source": "node scripts/verify-source-installs.mjs",
|
|
56
56
|
"lint": "echo 'no lint configured yet'",
|
|
57
|
+
"prepare": "npm run build",
|
|
57
58
|
"prepublishOnly": "pnpm run build && pnpm run type-check && pnpm run test && pnpm run test:install-source",
|
|
58
59
|
"prepack": "node scripts/strip-publish-fields.mjs apply",
|
|
59
60
|
"postpack": "node scripts/strip-publish-fields.mjs restore"
|
|
@@ -133,6 +134,11 @@
|
|
|
133
134
|
"systemImage": "message",
|
|
134
135
|
"markdownCapable": true,
|
|
135
136
|
"configuredState": {
|
|
137
|
+
"env": {
|
|
138
|
+
"allOf": [
|
|
139
|
+
"AGENTCHAT_API_KEY"
|
|
140
|
+
]
|
|
141
|
+
},
|
|
136
142
|
"specifier": "./dist/configured-state.js",
|
|
137
143
|
"exportName": "hasAgentChatConfiguredState"
|
|
138
144
|
}
|