@perkos/perkos-a2a 0.12.22 → 0.12.28

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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "id": "perkos-a2a",
3
3
  "name": "PerkOS A2A",
4
- "version": "0.8.34",
4
+ "version": "0.12.28",
5
5
  "description": "Agent-to-Agent (A2A) protocol communication for OpenClaw agents",
6
6
  "author": "PerkOS",
7
7
  "configSchema": {
@@ -132,6 +132,10 @@
132
132
  "type": "string",
133
133
  "description": "Target session key. OpenClaw default: agent:main. Hermes default: main"
134
134
  },
135
+ "model": {
136
+ "type": "string",
137
+ "description": "Optional runtime-owned model override. Official external invitations omit it so the runtime uses its own active default."
138
+ },
135
139
  "hermesUrl": {
136
140
  "type": "string",
137
141
  "description": "Hermes Workspace base URL, e.g. http://127.0.0.1:3000"
@@ -205,6 +209,29 @@
205
209
  }
206
210
  },
207
211
  "description": "PerkOS-Chat client config — opt-in. The agent owns conversation history on local disk; the PerkOS cloud stores metadata only."
212
+ },
213
+ "platform": {
214
+ "type": "object",
215
+ "additionalProperties": false,
216
+ "required": [
217
+ "heartbeatUrl"
218
+ ],
219
+ "properties": {
220
+ "agentId": {
221
+ "type": "string",
222
+ "description": "Stable PerkOS agent id issued by the official invitation. Used to detect an already-configured identity without rewriting credentials."
223
+ },
224
+ "heartbeatUrl": {
225
+ "type": "string",
226
+ "description": "Per-agent PerkOS API heartbeat URL issued by the official invitation."
227
+ },
228
+ "heartbeatIntervalMs": {
229
+ "type": "number",
230
+ "default": 60000,
231
+ "description": "Platform presence heartbeat cadence in milliseconds."
232
+ }
233
+ },
234
+ "description": "PerkOS control-plane presence reporting for invited/BYO OpenClaw agents."
208
235
  }
209
236
  }
210
237
  },
package/package.json CHANGED
@@ -1,14 +1,15 @@
1
1
  {
2
2
  "name": "@perkos/perkos-a2a",
3
- "version": "0.12.22",
3
+ "version": "0.12.28",
4
4
  "description": "A2A Protocol communication plugin for OpenClaw — Agent-to-Agent protocol implementation",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
8
8
  "bin": {
9
- "perkos-a2a-agent": "./dist/agent.js",
10
- "perkos-a2a-hermes": "./dist/hermes-cli.js",
11
- "perkos-a2a-bridge": "./dist/bridge-agent.js"
9
+ "perkos-a2a": "dist/repair-cli.js",
10
+ "perkos-a2a-agent": "dist/agent.js",
11
+ "perkos-a2a-hermes": "dist/hermes-cli.js",
12
+ "perkos-a2a-bridge": "dist/bridge-agent.js"
12
13
  },
13
14
  "exports": {
14
15
  ".": {
@@ -43,7 +44,8 @@
43
44
  "lint": "tsc --noEmit",
44
45
  "test": "vitest run",
45
46
  "test:watch": "vitest",
46
- "prepublishOnly": "npm run lint && npm test && npm run build",
47
+ "verify:version": "node scripts/verify-version.mjs",
48
+ "prepublishOnly": "npm run verify:version && npm run lint && npm test && npm run build",
47
49
  "release": "npm run prepublishOnly && git tag v$npm_package_version && git push --follow-tags"
48
50
  },
49
51
  "openclaw": {