@aramisfa/openclaw-a2a-outbound 0.1.0

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 (48) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +80 -0
  3. package/dist/ajv-validator.d.ts +6 -0
  4. package/dist/ajv-validator.d.ts.map +1 -0
  5. package/dist/ajv-validator.js +28 -0
  6. package/dist/ajv-validator.js.map +1 -0
  7. package/dist/config.d.ts +24 -0
  8. package/dist/config.d.ts.map +1 -0
  9. package/dist/config.js +204 -0
  10. package/dist/config.js.map +1 -0
  11. package/dist/constants.d.ts +5 -0
  12. package/dist/constants.d.ts.map +1 -0
  13. package/dist/constants.js +4 -0
  14. package/dist/constants.js.map +1 -0
  15. package/dist/errors.d.ts +19 -0
  16. package/dist/errors.d.ts.map +1 -0
  17. package/dist/errors.js +111 -0
  18. package/dist/errors.js.map +1 -0
  19. package/dist/index.d.ts +10 -0
  20. package/dist/index.d.ts.map +1 -0
  21. package/dist/index.js +44 -0
  22. package/dist/index.js.map +1 -0
  23. package/dist/logging.d.ts +19 -0
  24. package/dist/logging.d.ts.map +1 -0
  25. package/dist/logging.js +19 -0
  26. package/dist/logging.js.map +1 -0
  27. package/dist/plugin-config.d.ts +5 -0
  28. package/dist/plugin-config.d.ts.map +1 -0
  29. package/dist/plugin-config.js +89 -0
  30. package/dist/plugin-config.js.map +1 -0
  31. package/dist/result-shape.d.ts +36 -0
  32. package/dist/result-shape.d.ts.map +1 -0
  33. package/dist/result-shape.js +83 -0
  34. package/dist/result-shape.js.map +1 -0
  35. package/dist/schemas.d.ts +665 -0
  36. package/dist/schemas.d.ts.map +1 -0
  37. package/dist/schemas.js +247 -0
  38. package/dist/schemas.js.map +1 -0
  39. package/dist/sdk-client-pool.d.ts +34 -0
  40. package/dist/sdk-client-pool.d.ts.map +1 -0
  41. package/dist/sdk-client-pool.js +120 -0
  42. package/dist/sdk-client-pool.js.map +1 -0
  43. package/dist/service.d.ts +21 -0
  44. package/dist/service.d.ts.map +1 -0
  45. package/dist/service.js +143 -0
  46. package/dist/service.js.map +1 -0
  47. package/openclaw.plugin.json +61 -0
  48. package/package.json +68 -0
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@aramisfa/openclaw-a2a-outbound",
3
+ "version": "0.1.0",
4
+ "description": "Native OpenClaw outbound A2A delegation plugin",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/openclaw/openclaw-a2a-plugins.git",
9
+ "directory": "packages/a2a-outbound"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/openclaw/openclaw-a2a-plugins/issues"
13
+ },
14
+ "homepage": "https://github.com/openclaw/openclaw-a2a-plugins/tree/main/packages/a2a-outbound#readme",
15
+ "keywords": [
16
+ "openclaw",
17
+ "plugin",
18
+ "a2a",
19
+ "agent-to-agent",
20
+ "delegation"
21
+ ],
22
+ "type": "module",
23
+ "main": "./dist/index.js",
24
+ "types": "./dist/index.d.ts",
25
+ "exports": {
26
+ ".": {
27
+ "types": "./dist/index.d.ts",
28
+ "import": "./dist/index.js",
29
+ "default": "./dist/index.js"
30
+ }
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "openclaw.plugin.json"
35
+ ],
36
+ "openclaw": {
37
+ "extensions": [
38
+ "./dist/index.js"
39
+ ]
40
+ },
41
+ "scripts": {
42
+ "build": "tsc -b",
43
+ "typecheck:src": "tsc -b --pretty false",
44
+ "typecheck:tests": "tsc -p tsconfig.tests.json --pretty false",
45
+ "typecheck": "corepack pnpm run typecheck:src && corepack pnpm run typecheck:tests",
46
+ "test": "corepack pnpm run build && node --import tsx --test tests/*.test.ts",
47
+ "clean": "rm -rf dist"
48
+ },
49
+ "dependencies": {
50
+ "@a2a-js/sdk": "^0.3.10",
51
+ "ajv": "^8.18.0",
52
+ "ajv-formats": "^3.0.1",
53
+ "openclaw": "2026.3.2"
54
+ },
55
+ "peerDependencies": {
56
+ "openclaw": "2026.3.2"
57
+ },
58
+ "devDependencies": {
59
+ "@types/node": "^20.0.0",
60
+ "tsx": "^4.21.0"
61
+ },
62
+ "engines": {
63
+ "node": ">=22.12.0"
64
+ },
65
+ "publishConfig": {
66
+ "access": "public"
67
+ }
68
+ }