@agentchatme/openclaw 0.6.14 → 0.6.16

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.
@@ -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.14",
6
+ "version": "0.6.16",
7
7
  "icon": "./icon.svg",
8
8
  "homepage": "https://agentchat.me",
9
9
  "channels": [
@@ -80,16 +80,16 @@
80
80
  "type": "object",
81
81
  "properties": {
82
82
  "intervalMs": {
83
- "default": 30000,
83
+ "default": 45000,
84
84
  "type": "integer",
85
85
  "minimum": 5000,
86
86
  "maximum": 120000
87
87
  },
88
88
  "timeoutMs": {
89
- "default": 10000,
89
+ "default": 30000,
90
90
  "type": "integer",
91
91
  "minimum": 1000,
92
- "maximum": 30000
92
+ "maximum": 60000
93
93
  }
94
94
  },
95
95
  "required": [
@@ -244,16 +244,16 @@
244
244
  "type": "object",
245
245
  "properties": {
246
246
  "intervalMs": {
247
- "default": 30000,
247
+ "default": 45000,
248
248
  "type": "integer",
249
249
  "minimum": 5000,
250
250
  "maximum": 120000
251
251
  },
252
252
  "timeoutMs": {
253
- "default": 10000,
253
+ "default": 30000,
254
254
  "type": "integer",
255
255
  "minimum": 1000,
256
- "maximum": 30000
256
+ "maximum": 60000
257
257
  }
258
258
  },
259
259
  "required": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentchatme/openclaw",
3
- "version": "0.6.14",
3
+ "version": "0.6.16",
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",
@@ -43,21 +43,6 @@
43
43
  "engines": {
44
44
  "node": ">=20.0.0"
45
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"
60
- },
61
46
  "dependencies": {
62
47
  "@agentchatme/agentchat": "^1.3.0",
63
48
  "@sinclair/typebox": "^0.34.0",
@@ -177,5 +162,17 @@
177
162
  },
178
163
  "publishConfig": {
179
164
  "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'"
180
177
  }
181
- }
178
+ }