@perkos/perkos-a2a 0.12.60 → 0.12.61
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.
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# Optional Voice package resolution
|
|
2
|
+
|
|
3
|
+
## Decision
|
|
4
|
+
|
|
5
|
+
PerkOS Voice remains a capability parallel to A2A, but A2A declares
|
|
6
|
+
`@perkos/perkos-voice` as an `optionalDependency`. This places the package next
|
|
7
|
+
to A2A in npm-managed private runtime installations, where the existing dynamic
|
|
8
|
+
`import("@perkos/perkos-voice/a2a")` can resolve it normally. Unsupported
|
|
9
|
+
runtimes still report their runtime/model limitation and never enable calls.
|
|
10
|
+
|
|
11
|
+
The alternatives were an optional peer dependency, which would require every
|
|
12
|
+
runtime installer to perform a second correctly scoped install, or resolving a
|
|
13
|
+
global package path, which is host-specific and bypasses normal Node package
|
|
14
|
+
resolution. The optional dependency is preferred because npm may omit or fail
|
|
15
|
+
it without making A2A installation fail, while a successful installation is
|
|
16
|
+
discoverable without secrets, custom paths, or model involvement.
|
|
17
|
+
|
|
18
|
+
## Verification
|
|
19
|
+
|
|
20
|
+
Release validation must prove manifest and lockfile agreement, the existing
|
|
21
|
+
missing-package fallback, successful dynamic delegation, the full A2A suite,
|
|
22
|
+
and a clean external install that imports both package subpaths. The package
|
|
23
|
+
remains absent from A2A responses and no Voice credential crosses the A2A
|
|
24
|
+
boundary.
|
package/openclaw.plugin.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@perkos/perkos-a2a",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.61",
|
|
4
4
|
"description": "A2A Protocol communication plugin for OpenClaw — Agent-to-Agent protocol implementation",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -78,6 +78,9 @@
|
|
|
78
78
|
"express": "^4.22.2",
|
|
79
79
|
"ws": "^8.20.1"
|
|
80
80
|
},
|
|
81
|
+
"optionalDependencies": {
|
|
82
|
+
"@perkos/perkos-voice": "^0.1.0"
|
|
83
|
+
},
|
|
81
84
|
"overrides": {
|
|
82
85
|
"qs": "^6.15.2"
|
|
83
86
|
},
|