agent-dag 1.33.121 → 1.33.123
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 +3 -1
- package/bin/deck.js +4 -2
- package/dist/web/assets/index-Cw7p5JeZ.js +66 -0
- package/dist/web/assets/{index-C6mARD07.css → index-ni8R0pU0.css} +1 -1
- package/dist/web/index.html +2 -2
- package/package.json +1 -1
- package/src/server/claude-accounts.mjs +11 -1
- package/src/server/cswap-admin.mjs +1 -12
- package/src/server/index.mjs +5 -2
- package/src/server/installer.mjs +19 -24
- package/dist/web/assets/index-CLTqTbGk.js +0 -66
package/README.md
CHANGED
|
@@ -34,7 +34,7 @@ npx ccdeck # or: npx agents-deck · npx agent-dag — same deck
|
|
|
34
34
|
|
|
35
35
|
Opens **http://127.0.0.1:4317** and registers the Claude Code hook on first run. Start any Claude Code or Codex session and the graph fills in live. `Ctrl+C` stops it.
|
|
36
36
|
|
|
37
|
-
No config file. No account. No telemetry — nothing about your sessions is reported anywhere. What does go out is short and ordinary: a ~20-byte version check against the npm registry (plus one small request to confirm a version it has not seen before), installs and daily version checks for the two tools the deck manages (claude-swap from PyPI, ccusage from npm), and, while the page is open, quota reads to Anthropic and OpenAI signed with your own credentials — that is where those numbers live. `AGENTS_DECK_NO_INSTALL=1` turns off everything but the quota reads.
|
|
37
|
+
No config file. No account. No telemetry — nothing about your sessions is reported anywhere. What does go out is short and ordinary: a ~20-byte version check against the npm registry (plus one small request to confirm a version it has not seen before), installs and daily version checks for the two tools the deck manages (claude-swap from PyPI, ccusage from npm), and, while the page is open, quota reads to Anthropic and OpenAI signed with your own credentials — that is where those numbers live. `AGENTS_DECK_NO_INSTALL=1` turns off everything but the quota reads; `AGENTS_DECK_NO_DOWNLOAD=1` is the narrower version — no `uv` binary is fetched, the managed installs stay.
|
|
38
38
|
|
|
39
39
|
## What you get
|
|
40
40
|
|
|
@@ -127,10 +127,12 @@ Environment:
|
|
|
127
127
|
| `AGENT_DAG_PORT` | Default port, same as `-p` |
|
|
128
128
|
| `CODEX_HOME` | Override `~/.codex` |
|
|
129
129
|
| `AGENTS_DECK_NO_INSTALL=1` | Never install or update claude-swap / ccusage, and never ask npm about releases |
|
|
130
|
+
| `AGENTS_DECK_NO_DOWNLOAD=1` | Never download the `uv` binary, but keep the managed installs |
|
|
130
131
|
| `AGENTS_DECK_NO_UPDATE_CHECK=1` | Don't ask npm about releases, but keep everything else |
|
|
131
132
|
| `AGENTS_DECK_NO_FRESHEN=1` | Never nudge claude-swap to collect usage early |
|
|
132
133
|
| `AGENTS_DECK_CSWAP` | Full path to `cswap`, when it lives somewhere unusual |
|
|
133
134
|
| `AGENTS_DECK_CLAUDE` | Full path to the `claude` CLI |
|
|
135
|
+
| `CLAUDE_SWAP_BACKUP` | Override the claude-swap store root the Accounts panel reads |
|
|
134
136
|
|
|
135
137
|
Being told to restart after an upgrade is local only — no network involved — and cannot be turned off, because a deck running superseded code is a bug you cannot see any other way.
|
|
136
138
|
|
package/bin/deck.js
CHANGED
|
@@ -87,8 +87,10 @@ const { installHooks, keepDiscovery, removeDiscovery, hasCodexInstalled } =
|
|
|
87
87
|
const { startServer, hookToken, releaseRestart } =
|
|
88
88
|
await import(pathToFileURL(join(PKG_ROOT, "src/server/index.mjs")).href);
|
|
89
89
|
|
|
90
|
-
//
|
|
91
|
-
//
|
|
90
|
+
// Whether the server starts the Codex rollout watcher. Nothing is installed
|
|
91
|
+
// and no directory is created either way — Codex hooks are not used any more,
|
|
92
|
+
// so `--codex` only means "watch even though ~/.codex/ is not there yet",
|
|
93
|
+
// which is the right answer for a machine where Codex arrives later.
|
|
92
94
|
const wantCodex = flags.noCodex
|
|
93
95
|
? false
|
|
94
96
|
: (flags.codex === true || hasCodexInstalled());
|