agent-dag 1.33.74 → 1.33.76
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 +8 -4
- package/bin/deck.js +2 -1
- package/dist/web/assets/index-BKIhNAkv.js +66 -0
- package/dist/web/index.html +1 -1
- package/package.json +1 -1
- package/dist/web/assets/index-8oJEgTRz.js +0 -66
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ ccdeck draws the tree instead. It is local and needs no configuration: it regist
|
|
|
29
29
|
## Quick start
|
|
30
30
|
|
|
31
31
|
```bash
|
|
32
|
-
npx ccdeck # or: npx agents-deck · npx agent-dag — same
|
|
32
|
+
npx ccdeck # or: npx agents-deck · npx agent-dag — same deck
|
|
33
33
|
```
|
|
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.
|
|
@@ -153,9 +153,8 @@ One canvas. No tabs. No kanban.
|
|
|
153
153
|
|
|
154
154
|
## Names
|
|
155
155
|
|
|
156
|
-
**ccdeck** is the name — of this repo and of the command. On npm
|
|
157
|
-
|
|
158
|
-
whichever you can remember.
|
|
156
|
+
**ccdeck** is the name — of this repo and of the command. On npm it goes out
|
|
157
|
+
under three, and `npx` runs the same deck from any of them.
|
|
159
158
|
|
|
160
159
|
```bash
|
|
161
160
|
npx ccdeck # this repo's name — the short one
|
|
@@ -163,6 +162,11 @@ npx agents-deck # the canonical npm package (in-app updates install this one)
|
|
|
163
162
|
npx agent-dag # the original name; existing installs and scripts keep working
|
|
164
163
|
```
|
|
165
164
|
|
|
165
|
+
A global install is the one place the three differ. `agents-deck` and
|
|
166
|
+
`agent-dag` are one build published twice, so `npm i -g` on either puts all
|
|
167
|
+
three commands on your `PATH`. `ccdeck` is a thin package that depends on
|
|
168
|
+
`agents-deck` and ships only the `ccdeck` command.
|
|
169
|
+
|
|
166
170
|
The repository was previously named `agents-deck`; the old URL redirects here,
|
|
167
171
|
so existing clones, links and bookmarks keep working.
|
|
168
172
|
|
package/bin/deck.js
CHANGED
|
@@ -408,7 +408,8 @@ Options:
|
|
|
408
408
|
--no-persist Don't write or replay events log (RAM-only)
|
|
409
409
|
--codex Force-enable Codex capture even if ~/.codex/ missing
|
|
410
410
|
--no-codex Skip Codex capture (Claude only)
|
|
411
|
-
--uninstall Remove agents-deck
|
|
411
|
+
--uninstall Remove agents-deck's hooks from ~/.claude/settings.json and
|
|
412
|
+
~/.codex/hooks.json, and restore any sound hooks of yours it parked
|
|
412
413
|
-h, --help Show this help
|
|
413
414
|
`);
|
|
414
415
|
}
|