gopherhole_openclaw_a2a 0.2.6 → 0.2.7

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