a2acalling 0.6.57 → 0.6.59
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/bin/cli.js +9 -12
- package/docs/plans/2026-02-18-a2a-41-permissions-tab.md +1273 -0
- package/docs/plans/2026-02-18-dashboard-backlog-blitz.md +585 -0
- package/native/macos/src-tauri/src/lib.rs +4 -4
- package/package.json +1 -1
- package/src/dashboard/public/app.js +811 -197
- package/src/dashboard/public/index.html +209 -205
- package/src/dashboard/public/style.css +294 -103
- package/src/lib/config.js +5 -15
- package/src/lib/tokens.js +3 -3
- package/src/routes/a2a.js +0 -1
- package/src/routes/dashboard.js +0 -3
- package/.claude/commands/a2a-call.md +0 -26
- package/.claude/commands/a2a-contacts.md +0 -31
- package/.claude/commands/a2a-invite.md +0 -33
- package/.claude/commands/a2a-setup.md +0 -30
- package/.claude/commands/a2a-status.md +0 -24
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Set up A2A Calling — onboard, start server, configure agent
|
|
3
|
-
allowed-tools: [Bash, Read, Write]
|
|
4
|
-
argument-hint: [--force]
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
Set up or reset your A2A Calling installation. Runs onboarding, starts the server, and configures your agent.
|
|
8
|
-
|
|
9
|
-
## Usage
|
|
10
|
-
|
|
11
|
-
```
|
|
12
|
-
/a2a-setup # first-time setup or resume incomplete onboarding
|
|
13
|
-
/a2a-setup --force # reset and re-run from scratch
|
|
14
|
-
```
|
|
15
|
-
|
|
16
|
-
## Instructions
|
|
17
|
-
|
|
18
|
-
1. Check if already onboarded: `a2a config --show`
|
|
19
|
-
2. If not onboarded (or `--force`): run `a2a quickstart $ARGUMENTS`
|
|
20
|
-
3. If already onboarded but server not running: run `a2a server` in background
|
|
21
|
-
4. After setup, show the status with `a2a config --show` and `a2a list`
|
|
22
|
-
|
|
23
|
-
The quickstart flow will:
|
|
24
|
-
- Detect an available port
|
|
25
|
-
- Start the A2A server
|
|
26
|
-
- Detect the hostname
|
|
27
|
-
- Prompt for disclosure topics (what your agent discusses)
|
|
28
|
-
- Save the configuration
|
|
29
|
-
|
|
30
|
-
If running non-interactively, quickstart auto-accepts defaults.
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
description: Check A2A server status, active conversations, and agent health
|
|
3
|
-
allowed-tools: [Bash, Read]
|
|
4
|
-
---
|
|
5
|
-
|
|
6
|
-
Check the health of your A2A installation — server running, conversations active, contacts online.
|
|
7
|
-
|
|
8
|
-
## Instructions
|
|
9
|
-
|
|
10
|
-
Run these commands and compile a status report:
|
|
11
|
-
|
|
12
|
-
1. **Config:** `a2a config --show`
|
|
13
|
-
2. **Active tokens:** `a2a list`
|
|
14
|
-
3. **Contacts:** `a2a contacts`
|
|
15
|
-
4. **Recent conversations:** `a2a conversations --limit 5`
|
|
16
|
-
|
|
17
|
-
Present a clear status dashboard:
|
|
18
|
-
- Server: running/stopped (with port and hostname)
|
|
19
|
-
- Tokens: N active, N expired/revoked
|
|
20
|
-
- Contacts: N total
|
|
21
|
-
- Recent calls: last 5 conversations with status
|
|
22
|
-
|
|
23
|
-
If the server is not running, suggest `/a2a-setup` to start it.
|
|
24
|
-
If not onboarded, suggest `/a2a-setup` for first-time setup.
|