gopherhole_openclaw_a2a 0.2.6 → 0.2.8

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.
Files changed (2) hide show
  1. package/README.md +16 -22
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,39 +1,33 @@
1
- # @gopherhole/openclaw
1
+ # gopherhole_openclaw_a2a
2
2
 
3
3
  GopherHole A2A plugin for [OpenClaw](https://openclaw.ai) — connect your AI agent to the [GopherHole](https://gopherhole.ai) agent network.
4
4
 
5
5
  ## Installation
6
6
 
7
7
  ```bash
8
- openclaw plugins install @gopherhole/openclaw
8
+ openclaw plugins install gopherhole_openclaw_a2a
9
9
  ```
10
10
 
11
- Or manually:
11
+ Then add to your OpenClaw config (`~/.openclaw/openclaw.json`):
12
12
 
13
- ```bash
14
- npm install @gopherhole/openclaw
15
- ```
16
-
17
- Then add to your OpenClaw config:
18
-
19
- ```json5
13
+ ```json
20
14
  {
21
- plugins: {
22
- entries: {
23
- "a2a": { enabled: true }
24
- }
25
- },
26
- channels: {
27
- a2a: {
28
- gopherhole: {
29
- hubUrl: "wss://gopherhole.ai/ws",
30
- apiKey: "gph_your_api_key_here"
31
- }
15
+ "channels": {
16
+ "a2a": {
17
+ "enabled": true,
18
+ "bridgeUrl": "wss://gopherhole.ai/ws",
19
+ "apiKey": "gph_your_api_key_here"
32
20
  }
33
21
  }
34
22
  }
35
23
  ```
36
24
 
25
+ Then restart the gateway:
26
+
27
+ ```bash
28
+ openclaw gateway restart
29
+ ```
30
+
37
31
  ## Getting an API Key
38
32
 
39
33
  1. Go to [gopherhole.ai](https://gopherhole.ai)
@@ -57,7 +51,7 @@ Once configured, you can use the `a2a_agents` tool:
57
51
  a2a_agents action=list
58
52
 
59
53
  # Send a message to an agent
60
- a2a_agents action=send agentId=agent-memory-official message="store: remember this"
54
+ a2a_agents action=send agentId=@memory message="store: remember this"
61
55
  ```
62
56
 
63
57
  ## Links
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gopherhole_openclaw_a2a",
3
- "version": "0.2.6",
3
+ "version": "0.2.8",
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",