@agora-build/atem 0.4.69 → 0.4.71
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 +4 -38
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -20,9 +20,8 @@ atem repl # Interactive REPL with AI command inter
|
|
|
20
20
|
### Authentication
|
|
21
21
|
|
|
22
22
|
```bash
|
|
23
|
-
atem login #
|
|
24
|
-
atem
|
|
25
|
-
atem logout # Clear saved session
|
|
23
|
+
atem login # Log in with Agora Console (opens browser)
|
|
24
|
+
atem logout # Log out
|
|
26
25
|
```
|
|
27
26
|
|
|
28
27
|
### Tokens
|
|
@@ -40,15 +39,15 @@ atem token rtm create --user-id bob --expire 3600
|
|
|
40
39
|
```bash
|
|
41
40
|
atem list project # List Agora projects
|
|
42
41
|
atem list project --show-certificates # List with app certificates visible
|
|
43
|
-
atem project use <APP_ID> # Set active project by App ID
|
|
44
42
|
atem project use <N> # Set active project by index (1-based)
|
|
43
|
+
atem project use <APP_ID> # Set active project by App ID
|
|
45
44
|
atem project show # Show current active project
|
|
46
45
|
```
|
|
47
46
|
|
|
48
47
|
### Configuration
|
|
49
48
|
|
|
50
49
|
```bash
|
|
51
|
-
atem config show # Show resolved config (
|
|
50
|
+
atem config show # Show resolved config (SSO state, active project)
|
|
52
51
|
atem config set astation_ws <URL> # Set Astation WebSocket URL
|
|
53
52
|
atem config set astation_relay_url <URL> # Set Astation relay URL
|
|
54
53
|
atem config clear # Clear active project
|
|
@@ -92,39 +91,6 @@ atem serv killall # Kill all background servers
|
|
|
92
91
|
| **Token Gen** | Generate Agora RTC/RTM tokens locally |
|
|
93
92
|
| **Projects** | Browse Agora projects via API |
|
|
94
93
|
|
|
95
|
-
## Credential Management
|
|
96
|
-
|
|
97
|
-
Credentials are encrypted at rest using AES-256-GCM with a machine-bound key.
|
|
98
|
-
|
|
99
|
-
```
|
|
100
|
-
Priority: Astation sync (live) > env vars > encrypted store
|
|
101
|
-
Storage: ~/.config/atem/credentials.enc
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
### Via Astation (recommended)
|
|
105
|
-
|
|
106
|
-
```bash
|
|
107
|
-
atem login # Pair with Astation, credentials sync automatically
|
|
108
|
-
```
|
|
109
|
-
|
|
110
|
-
### Via environment variables
|
|
111
|
-
|
|
112
|
-
```bash
|
|
113
|
-
export AGORA_CUSTOMER_ID="..."
|
|
114
|
-
export AGORA_CUSTOMER_SECRET="..."
|
|
115
|
-
```
|
|
116
|
-
|
|
117
|
-
## Astation Pairing
|
|
118
|
-
|
|
119
|
-
Atem registers with the Station relay service on startup and prints a pairing code:
|
|
120
|
-
|
|
121
|
-
```
|
|
122
|
-
Pairing code: ABCD-EFGH
|
|
123
|
-
Open: https://station.agora.build/pair?code=ABCD-EFGH
|
|
124
|
-
```
|
|
125
|
-
|
|
126
|
-
Enter the code in Astation's Dev Console to pair. If a local Astation is running on `ws://127.0.0.1:8080/ws`, Atem connects directly instead.
|
|
127
|
-
|
|
128
94
|
## Supported Platforms
|
|
129
95
|
|
|
130
96
|
| Platform | Architecture |
|