@agora-build/atem 0.4.59 → 0.4.61

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 +6 -9
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @agora-build/atem
2
2
 
3
- A development terminal that connects human developers, 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.
3
+ A terminal that connects people, 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
 
@@ -14,6 +14,7 @@ This downloads a prebuilt binary for your platform (linux-x64, linux-arm64, darw
14
14
 
15
15
  ```bash
16
16
  atem # Launch TUI
17
+ atem repl # Interactive REPL with AI command interpretation
17
18
  ```
18
19
 
19
20
  ### Authentication
@@ -73,17 +74,14 @@ atem agent visualize "topic" --no-browser # Skip opening browser
73
74
  atem serv rtc # Launch browser-based RTC test page (HTTPS)
74
75
  atem serv rtc --channel test --port 8443
75
76
  atem serv rtc --background # Run as background daemon
77
+ atem serv diagrams # Host diagrams from SQLite (HTTP)
78
+ atem serv diagrams --port 9000 # Custom port (default: 8787)
79
+ atem serv diagrams --background # Run as background daemon
76
80
  atem serv list # List running background servers
77
81
  atem serv kill <ID> # Kill a background server
78
82
  atem serv killall # Kill all background servers
79
83
  ```
80
84
 
81
- ### Other
82
-
83
- ```bash
84
- atem repl # Interactive REPL with AI command interpretation
85
- ```
86
-
87
85
  ## TUI Modes
88
86
 
89
87
  | Mode | Description |
@@ -100,8 +98,7 @@ Credentials are encrypted at rest using AES-256-GCM with a machine-bound key.
100
98
 
101
99
  ```
102
100
  Priority: Astation sync (live) > env vars > encrypted store
103
- Storage: ~/.config/atem/credentials.enc (Linux)
104
- ~/Library/Application Support/atem/credentials.enc (macOS)
101
+ Storage: ~/.config/atem/credentials.enc
105
102
  ```
106
103
 
107
104
  ### Via Astation (recommended)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@agora-build/atem",
3
- "version": "0.4.59",
4
- "description": "Agora AI development terminal TUI for managing projects, Claude Code, and eval agents",
3
+ "version": "0.4.61",
4
+ "description": "A terminal that connects people, Agora platform, and AI agents.",
5
5
  "bin": {
6
6
  "atem": "bin/atem"
7
7
  },