@perkos/perkos-a2a 0.6.0 → 0.6.1

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 +5 -2
  2. package/package.json +6 -5
package/README.md CHANGED
@@ -23,8 +23,11 @@ curl -s -X POST http://localhost:<PORT>/a2a/jsonrpc \
23
23
  ## Quick Start
24
24
 
25
25
  ```bash
26
- # Install the plugin
27
- openclaw plugin install @perkos/perkos-a2a
26
+ # Install the plugin from npm
27
+ openclaw plugins install @perkos/perkos-a2a
28
+
29
+ # Restart gateway to load the plugin
30
+ openclaw gateway restart
28
31
 
29
32
  # Run the setup wizard to detect your environment
30
33
  openclaw perkos-a2a setup
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@perkos/perkos-a2a",
3
- "version": "0.6.0",
4
- "description": "A2A Protocol communication plugin for OpenClaw \u2014 Agent-to-Agent protocol implementation",
3
+ "version": "0.6.1",
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",
@@ -45,15 +45,16 @@
45
45
  "url": "https://github.com/PerkOS-xyz/PerkOS-A2A"
46
46
  },
47
47
  "dependencies": {
48
+ "@perkos/perkos-a2a": "^0.6.0",
48
49
  "express": "^4.21.0",
49
50
  "ws": "^8.18.0"
50
51
  },
51
52
  "devDependencies": {
52
53
  "@sinclair/typebox": "^0.34.0",
53
- "typescript": "^5.7.0",
54
54
  "@types/express": "^5.0.0",
55
55
  "@types/node": "^22.0.0",
56
- "@types/ws": "^8.5.0"
56
+ "@types/ws": "^8.5.0",
57
+ "typescript": "^5.7.0"
57
58
  },
58
59
  "peerDependencies": {
59
60
  "openclaw": ">=2026.3.0"
@@ -61,4 +62,4 @@
61
62
  "publishConfig": {
62
63
  "access": "public"
63
64
  }
64
- }
65
+ }