@agora-build/atem 0.4.94 → 0.4.98
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 +7 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @agora-build/atem
|
|
2
2
|
|
|
3
|
-
A terminal that connects
|
|
3
|
+
A terminal that connects builders, Agora platform, and AI agents. Manage Agora projects and tokens, route tasks between [Astation](https://github.com/Agora-Build/Astation) and AI coding agents, generate diagrams, drive voice-powered coding workflows, and more -- all from a single CLI/TUI.
|
|
4
4
|
|
|
5
5
|
## Install
|
|
6
6
|
|
|
@@ -34,10 +34,12 @@ atem logout # Log out from SSO
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
atem token rtc create # Generate RTC token (interactive)
|
|
37
|
-
atem token rtc create --channel test --
|
|
37
|
+
atem token rtc create --channel test --rtc-user-id 0 --expire 3600
|
|
38
|
+
atem token rtc create --channel test --rtc-user-id alice --with-rtm # RTC + RTM in one token (reuses rtc-user-id)
|
|
39
|
+
atem token rtc create --channel test --rtc-user-id 42 --with-rtm --rtm-user-id bob # Separate RTM account
|
|
38
40
|
atem token rtc decode <token> # Decode existing RTC token
|
|
39
41
|
atem token rtm create # Generate Signaling (RTM) token
|
|
40
|
-
atem token rtm create --user-id bob --expire 3600
|
|
42
|
+
atem token rtm create --rtm-user-id bob --expire 3600
|
|
41
43
|
atem token rtm decode <token> # Decode existing Signaling (RTM) token
|
|
42
44
|
```
|
|
43
45
|
|
|
@@ -80,9 +82,9 @@ atem serv kill <ID> # Kill a background server
|
|
|
80
82
|
atem serv killall # Kill all background servers
|
|
81
83
|
```
|
|
82
84
|
|
|
83
|
-
**`serv convo`** — ConvoAI voice agent: live transcription (RTM), preset selection, avatar (Akool, LiveAvatar, Anam), RTC Stats, API History, camera toggle.
|
|
85
|
+
**`serv convo`** — ConvoAI voice agent: live transcription (RTM), preset selection, avatar (Akool, LiveAvatar, Anam), RTC Stats, API History, camera toggle, RTC encryption (key + salt forwarded to the agent).
|
|
84
86
|
|
|
85
|
-
**`serv rtc`** — RTC test page: join/leave, publish/subscribe audio+video, token generation, RTM messaging.
|
|
87
|
+
**`serv rtc`** — RTC test page: join/leave, publish/subscribe audio+video, token generation, RTM messaging, RTC encryption (8 modes; gcm2 modes auto-generate a copyable salt).
|
|
86
88
|
|
|
87
89
|
**`serv diagrams`** — SQLite-backed HTTP server for hosting AI-generated HTML diagrams.
|
|
88
90
|
|