openclaw-a2a 0.1.0-beta.1 → 0.1.0-beta.2

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.
package/README.md CHANGED
@@ -8,6 +8,7 @@
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
9
  ![Status: Beta](https://img.shields.io/badge/status-beta-orange)
10
10
  ![A2A: v1.0](https://img.shields.io/badge/A2A-v1.0-blue)
11
+ [![Docs](https://img.shields.io/badge/docs-openclaw--a2a.cloud-blue)](https://openclaw-a2a.cloud)
11
12
 
12
13
  **openclaw-a2a** is a bridge that lets any A2A-compatible agent chat with your
13
14
  self-hosted [OpenClaw](https://openclaw.ai) assistant. Think of it as giving your
@@ -256,6 +257,16 @@ A2A = how AGENTS talk to EACH OTHER (horizontal: agent ↔ agent)
256
257
 
257
258
  They're complementary, not competing.
258
259
 
260
+ ## Documentation
261
+
262
+ Full docs at **[openclaw-a2a.cloud](https://openclaw-a2a.cloud)**
263
+
264
+ - [Installation](https://openclaw-a2a.cloud/installation.md)
265
+ - [Configuration](https://openclaw-a2a.cloud/configuration.md)
266
+ - [Deployment](https://openclaw-a2a.cloud/deployment.md)
267
+ - [Development](https://openclaw-a2a.cloud/development.md)
268
+ - [A2A Protocol](https://openclaw-a2a.cloud/a2a-protocol.md)
269
+
259
270
  ## License
260
271
 
261
272
  MIT
package/dist/index.js CHANGED
@@ -499,7 +499,7 @@ function buildAgentCard(config2) {
499
499
  return {
500
500
  name: "OpenClaw A2A Bridge",
501
501
  description: "A2A v1.0 bridge to OpenClaw AI assistant gateway",
502
- version: true ? "0.1.0-beta.1" : "0.1.0-beta.1",
502
+ version: true ? "0.1.0-beta.2" : "0.1.0-beta.1",
503
503
  provider: {
504
504
  organization: "OpenClaw",
505
505
  url: "https://github.com/freema/openclaw-a2a"
@@ -925,7 +925,7 @@ function startServer(config2) {
925
925
  }
926
926
 
927
927
  // src/index.ts
928
- var argv = yargs(hideBin(process.argv)).scriptName("openclaw-a2a").version(true ? "0.1.0-beta.1" : "0.1.0-beta.1").option("port", {
928
+ var argv = yargs(hideBin(process.argv)).scriptName("openclaw-a2a").version(true ? "0.1.0-beta.2" : "0.1.0-beta.1").option("port", {
929
929
  alias: "p",
930
930
  type: "number",
931
931
  description: "Server port"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openclaw-a2a",
3
- "version": "0.1.0-beta.1",
3
+ "version": "0.1.0-beta.2",
4
4
  "description": "A2A v1.0 bridge for OpenClaw AI assistant — agent-to-agent communication",
5
5
  "author": "Tomas Grasl <https://www.tomasgrasl.cz/>",
6
6
  "license": "MIT",
@@ -66,7 +66,7 @@
66
66
  "README.md",
67
67
  "LICENSE"
68
68
  ],
69
- "homepage": "https://github.com/freema/openclaw-a2a#readme",
69
+ "homepage": "https://openclaw-a2a.cloud",
70
70
  "repository": {
71
71
  "type": "git",
72
72
  "url": "git+https://github.com/freema/openclaw-a2a.git"