agenthud 0.13.2 → 0.13.3
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 +9 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,15 +16,21 @@ AgentHUD reads Claude Code's session files from `~/.claude/projects/` and gives
|
|
|
16
16
|
|
|
17
17
|
→ **See [FEATURES.md](./FEATURES.md) for the full surface** — every flag, keybinding, config key, file path, and env var.
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
Requires Node.js 20+. Open agenthud in a separate terminal while using Claude Code; press `?` inside the TUI for in-app help.
|
|
20
20
|
|
|
21
|
-
|
|
21
|
+
## Try without installing
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
24
|
npx agenthud
|
|
25
|
+
# or: bunx agenthud
|
|
25
26
|
```
|
|
26
27
|
|
|
27
|
-
|
|
28
|
+
## Install for daily use
|
|
29
|
+
|
|
30
|
+
```bash
|
|
31
|
+
npm i -g agenthud
|
|
32
|
+
# or: bun i -g agenthud
|
|
33
|
+
```
|
|
28
34
|
|
|
29
35
|
> **Platform support.** Primary development is on macOS and Linux; the full test suite runs on all three platforms in CI (including Windows). Windows runtime behavior is exercised by a manual smoke job but isn't daily-driven — issues there are valued bug reports.
|
|
30
36
|
|
package/package.json
CHANGED