@agora-build/atem 0.4.59 → 0.4.60

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 +5 -3
  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
 
@@ -73,6 +73,9 @@ atem agent visualize "topic" --no-browser # Skip opening browser
73
73
  atem serv rtc # Launch browser-based RTC test page (HTTPS)
74
74
  atem serv rtc --channel test --port 8443
75
75
  atem serv rtc --background # Run as background daemon
76
+ atem serv diagrams # Host diagrams from SQLite (HTTP)
77
+ atem serv diagrams --port 9000 # Custom port (default: 8787)
78
+ atem serv diagrams --background # Run as background daemon
76
79
  atem serv list # List running background servers
77
80
  atem serv kill <ID> # Kill a background server
78
81
  atem serv killall # Kill all background servers
@@ -100,8 +103,7 @@ Credentials are encrypted at rest using AES-256-GCM with a machine-bound key.
100
103
 
101
104
  ```
102
105
  Priority: Astation sync (live) > env vars > encrypted store
103
- Storage: ~/.config/atem/credentials.enc (Linux)
104
- ~/Library/Application Support/atem/credentials.enc (macOS)
106
+ Storage: ~/.config/atem/credentials.enc
105
107
  ```
106
108
 
107
109
  ### 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.60",
4
+ "description": "A terminal that connects people, Agora platform, and AI agents.",
5
5
  "bin": {
6
6
  "atem": "bin/atem"
7
7
  },