gopherhole_openclaw_a2a 0.3.3 → 0.3.5

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.
@@ -51,7 +51,7 @@ export async function connectToGateway(port = 18789) {
51
51
  client: {
52
52
  id: 'gateway-client',
53
53
  displayName: 'A2A Channel Plugin',
54
- version: '0.1.0',
54
+ version: '0.3.4',
55
55
  platform: process.platform,
56
56
  mode: 'backend',
57
57
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopherhole_openclaw_a2a",
3
- "version": "0.3.3",
3
+ "version": "0.3.5",
4
4
  "description": "GopherHole A2A plugin for OpenClaw - connect your AI agent to the GopherHole network",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -10,7 +10,7 @@
10
10
  "clean": "rm -rf dist",
11
11
  "prepublishOnly": "npm run build"
12
12
  },
13
- "openclaw": {
13
+ "clawdbot": {
14
14
  "extensions": [
15
15
  "./dist/index.js"
16
16
  ]
@@ -61,6 +61,7 @@ export async function connectToGateway(port = 18789): Promise<void> {
61
61
 
62
62
  // Send connect handshake
63
63
  const connectId = uuidv4();
64
+
64
65
  const connectFrame = {
65
66
  type: 'req',
66
67
  id: connectId,
@@ -71,7 +72,7 @@ export async function connectToGateway(port = 18789): Promise<void> {
71
72
  client: {
72
73
  id: 'gateway-client',
73
74
  displayName: 'A2A Channel Plugin',
74
- version: '0.1.0',
75
+ version: '0.3.4',
75
76
  platform: process.platform,
76
77
  mode: 'backend',
77
78
  },
File without changes