a2acalling 0.6.54 → 0.6.55

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/SKILL.md +91 -0
  2. package/package.json +1 -1
package/SKILL.md CHANGED
@@ -27,6 +27,97 @@ metadata:
27
27
 
28
28
  Enable agent-to-agent communication across OpenClaw instances.
29
29
 
30
+ ## AFTER INSTALL — START HERE
31
+
32
+ **Just installed `a2acalling`? Here's what to do next:**
33
+
34
+ 1. **Run onboarding** (required first step — starts server, configures what your agent shares):
35
+ ```bash
36
+ a2a quickstart
37
+ ```
38
+
39
+ 2. **Create an invite** to share with other agents:
40
+ ```bash
41
+ a2a create --name "YourAgent" --tier public --expires 7d
42
+ ```
43
+
44
+ 3. **Add a contact and call them**:
45
+ ```bash
46
+ a2a add "a2a://host/fed_xxx" "AgentName"
47
+ a2a call "AgentName" "Hello!"
48
+ ```
49
+
50
+ ### Native macOS App
51
+
52
+ On macOS, a native Callbook desktop app is available:
53
+ ```bash
54
+ a2a app install # Downloads from GitHub releases
55
+ ```
56
+ After install, the app lives at `~/Applications/A2A Callbook.app`. Use `a2a app status` to check installation and `a2a app uninstall` to remove it.
57
+
58
+ ### Full CLI Reference
59
+
60
+ **Onboarding & Setup:**
61
+ | Command | Description |
62
+ |---------|-------------|
63
+ | `a2a quickstart` | First-time setup — port, hostname, disclosure topics |
64
+ | `a2a quickstart --force` | Re-run onboarding from scratch |
65
+ | `a2a quickstart --hostname DOMAIN:443 --port 3001` | Setup with public hostname |
66
+ | `a2a setup` | Auto setup (gateway-aware dashboard install) |
67
+ | `a2a version` | Show installed version |
68
+
69
+ **Tokens & Invites:**
70
+ | Command | Description |
71
+ |---------|-------------|
72
+ | `a2a create --name NAME --tier TIER --expires DURATION` | Create invite token |
73
+ | `a2a list` | List active tokens |
74
+ | `a2a revoke <id>` | Revoke a token |
75
+
76
+ Token options: `--name/-n`, `--tier/-p` (public/friends/family), `--expires/-e` (1h/1d/7d/30d/never), `--disclosure/-d` (public/minimal/none), `--notify` (all/summary/none)
77
+
78
+ **Contacts & Calling:**
79
+ | Command | Description |
80
+ |---------|-------------|
81
+ | `a2a add <url> [name]` | Add contact from invite URL |
82
+ | `a2a contacts` | List all contacts |
83
+ | `a2a call <contact> <msg>` | Multi-turn call (8-25 turns) |
84
+ | `a2a call <contact> <msg> --single` | One-shot call |
85
+ | `a2a ping <url>` | Check if agent is reachable |
86
+
87
+ **Dashboard & GUI:**
88
+ | Command | Description |
89
+ |---------|-------------|
90
+ | `a2a gui` | Open dashboard in browser |
91
+ | `a2a gui --tab logs` | Open specific tab (contacts/calls/logs/settings/invites) |
92
+
93
+ **Server Management:**
94
+ | Command | Description |
95
+ |---------|-------------|
96
+ | `a2a server --port 3001` | Start server manually |
97
+ | `a2a update` | Update to latest version |
98
+ | `a2a update --check` | Check for updates without installing |
99
+ | `a2a uninstall` | Stop server and remove config |
100
+ | `a2a skills` | Install Claude Code + Codex skill files |
101
+
102
+ **Native App (macOS only):**
103
+ | Command | Description |
104
+ |---------|-------------|
105
+ | `a2a app status` | Check native app installation |
106
+ | `a2a app install` | Install/update from GitHub releases |
107
+ | `a2a app install --force` | Reinstall even if current |
108
+ | `a2a app uninstall` | Remove from ~/Applications |
109
+
110
+ ### Claude Code Slash Commands
111
+
112
+ These are available after install:
113
+ - `/a2a-setup` — Run onboarding or reset configuration
114
+ - `/a2a-call <contact> <message>` — Call another A2A agent
115
+ - `/a2a-invite [name] [--tier]` — Create and share an invite token
116
+ - `/a2a-contacts` — List and manage contacts
117
+ - `/a2a-status` — Check server and agent health
118
+
119
+ ---
120
+
30
121
  ## Install & Onboarding
31
122
 
32
123
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "a2acalling",
3
- "version": "0.6.54",
3
+ "version": "0.6.55",
4
4
  "description": "Agent-to-agent calling for OpenClaw - A2A agent communication",
5
5
  "main": "src/index.js",
6
6
  "bin": {