@agora-build/atem 0.4.77 → 0.4.79
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 +13 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,17 +21,26 @@ atem repl # Interactive REPL with AI command inter
|
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
23
|
atem login # Log in with Agora Console (opens browser)
|
|
24
|
-
atem logout # Log out
|
|
24
|
+
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
|
|
25
28
|
```
|
|
26
29
|
|
|
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
|
+
|
|
27
35
|
### Tokens
|
|
28
36
|
|
|
29
37
|
```bash
|
|
30
38
|
atem token rtc create # Generate RTC token (interactive)
|
|
31
39
|
atem token rtc create --channel test --uid 0 --expire 3600
|
|
32
40
|
atem token rtc decode <token> # Decode existing RTC token
|
|
33
|
-
atem token rtm create # Generate RTM token
|
|
41
|
+
atem token rtm create # Generate Signaling (RTM) token
|
|
34
42
|
atem token rtm create --user-id bob --expire 3600
|
|
43
|
+
atem token rtm decode <token> # Decode existing Signaling (RTM) token
|
|
35
44
|
```
|
|
36
45
|
|
|
37
46
|
### Projects
|
|
@@ -47,10 +56,10 @@ atem project show # Show current active project
|
|
|
47
56
|
### Configuration
|
|
48
57
|
|
|
49
58
|
```bash
|
|
50
|
-
atem config show # Show resolved config
|
|
59
|
+
atem config show # Show resolved config
|
|
51
60
|
atem config set astation_ws <URL> # Set Astation WebSocket URL
|
|
52
61
|
atem config set astation_relay_url <URL> # Set Astation relay URL
|
|
53
|
-
atem config clear # Clear active project
|
|
62
|
+
atem config clear # Clear active project selection
|
|
54
63
|
```
|
|
55
64
|
|
|
56
65
|
### AI Agents
|