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.
@@ -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.