@agora-build/atem 0.4.91 → 0.4.94

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/README.md +34 -26
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,7 +8,13 @@ A terminal that connects people, Agora platform, and AI agents. Manage Agora pro
8
8
  npm install -g @agora-build/atem
9
9
  ```
10
10
 
11
- This downloads a prebuilt binary for your platform (linux-x64, linux-arm64, darwin-x64, darwin-arm64).
11
+ Or via shell script:
12
+
13
+ ```bash
14
+ curl -fsSL https://dl.agora.build/atem/install.sh | bash
15
+ ```
16
+
17
+ Both download a prebuilt binary for your platform (linux-x64, linux-arm64, darwin-x64, darwin-arm64).
12
18
 
13
19
  ## Commands
14
20
 
@@ -22,16 +28,8 @@ atem repl # Interactive REPL with AI command inter
22
28
  ```bash
23
29
  atem login # Log in with Agora Console (opens browser)
24
30
  atem logout # Log out from SSO
25
- atem pair # Pair with Astation
26
- atem pair --save # Pair and save credentials for offline use
27
- atem unpair # Unpair from Astation
28
31
  ```
29
32
 
30
- Two ways to authenticate:
31
-
32
- - **`atem login`** — your own Agora Console login. Auto-refreshes.
33
- - **`atem pair`** — receive credentials from a connected Astation. Paired tokens take priority when connected; own login is the fallback.
34
-
35
33
  ### Tokens
36
34
 
37
35
  ```bash
@@ -60,36 +58,46 @@ atem config show # Show resolved config
60
58
  atem config set astation_ws <URL> # Set Astation WebSocket URL
61
59
  atem config set astation_relay_url <URL> # Set Astation relay URL
62
60
  atem config clear # Clear active project selection
63
- ```
64
-
65
- ### AI Agents
66
-
67
- ```bash
68
- atem agent list # Scan and list detected AI agents
69
- atem agent launch # Launch Claude Code as PTY agent
70
- atem agent launch codex # Launch Codex as PTY agent
71
- atem agent connect <WS_URL> # Connect to ACP agent and show info
72
- atem agent prompt <WS_URL> "text" # Send prompt to ACP agent
73
- atem agent probe <WS_URL> # Probe URL for ACP support
74
- atem agent visualize "topic" # Generate visual HTML diagram via ACP agent
75
- atem agent visualize "topic" --url ws://localhost:8765 # Explicit agent URL
76
- atem agent visualize "topic" --no-browser # Skip opening browser
61
+ atem config convo # Interactive wizard to configure ConvoAI agent
62
+ atem config convo --validate # Validate existing config without modifying
63
+ atem config convo --config <PATH> # Use a specific config file
77
64
  ```
78
65
 
79
66
  ### Dev Servers
80
67
 
81
68
  ```bash
82
- atem serv rtc # Launch browser-based RTC test page (HTTPS)
69
+ atem serv convo # Launch ConvoAI test page (HTTPS)
70
+ atem serv convo --config ~/convo.toml # Use custom config
71
+ atem serv convo --background # Headless mode (no browser)
72
+ atem serv rtc # Launch RTC test page (HTTPS)
83
73
  atem serv rtc --channel test --port 8443
84
74
  atem serv rtc --background # Run as background daemon
85
75
  atem serv diagrams # Host diagrams from SQLite (HTTP)
86
- atem serv diagrams --port 9000 # Custom port (default: 8787)
87
- atem serv diagrams --background # Run as background daemon
76
+ atem serv diagrams --port 9000
77
+ atem serv diagrams --background
88
78
  atem serv list # List running background servers
89
79
  atem serv kill <ID> # Kill a background server
90
80
  atem serv killall # Kill all background servers
91
81
  ```
92
82
 
83
+ **`serv convo`** — ConvoAI voice agent: live transcription (RTM), preset selection, avatar (Akool, LiveAvatar, Anam), RTC Stats, API History, camera toggle.
84
+
85
+ **`serv rtc`** — RTC test page: join/leave, publish/subscribe audio+video, token generation, RTM messaging.
86
+
87
+ **`serv diagrams`** — SQLite-backed HTTP server for hosting AI-generated HTML diagrams.
88
+
89
+ ### AI Agents (WIP)
90
+
91
+ ```bash
92
+ atem agent list # Scan and list detected AI agents
93
+ atem agent launch # Launch Claude Code as PTY agent
94
+ atem agent launch codex # Launch Codex as PTY agent
95
+ atem agent connect <WS_URL> # Connect to ACP agent and show info
96
+ atem agent prompt <WS_URL> "text" # Send prompt to ACP agent
97
+ atem agent probe <WS_URL> # Probe URL for ACP support
98
+ atem agent visualize "topic" # Generate visual HTML diagram via ACP agent
99
+ ```
100
+
93
101
  ## TUI Modes
94
102
 
95
103
  | Mode | Description |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agora-build/atem",
3
- "version": "0.4.91",
3
+ "version": "0.4.94",
4
4
  "description": "A terminal that connects people, Agora platform, and AI agents.",
5
5
  "bin": {
6
6
  "atem": "bin/atem"