agenthud 0.9.4 → 0.11.0
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 -5
- package/dist/index.js +1 -1
- package/dist/{main-26QL33AJ.js → main-KTFHI6KH.js} +705 -250
- package/package.json +1 -1
- package/scripts/record-demo.sh +72 -0
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
An observability layer for [Claude Code](https://github.com/anthropics/claude-code). **See** your live sessions, **export** structured activity logs, and **summarize** a day or a week into an LLM digest — all from one CLI.
|
|
8
8
|
|
|
9
|
-

|
|
10
10
|
|
|
11
11
|
AgentHUD reads Claude Code's session files from `~/.claude/projects/` and gives you three things:
|
|
12
12
|
|
|
@@ -43,8 +43,7 @@ AgentHUD's TUI splits the screen into a project tree and an activity viewer:
|
|
|
43
43
|
│ [10:23] ~ Edit src/ui/App.tsx │
|
|
44
44
|
│ [10:23] $ Bash npm test │
|
|
45
45
|
│ [10:23] < Response Tests passed successfully │
|
|
46
|
-
│ [10:25]
|
|
47
|
-
│ › │
|
|
46
|
+
│ [10:25] ⠧ Edit src/auth/oauth.ts ← bold + spinner = live │
|
|
48
47
|
└──────────────────────────────────────────────────────────┘
|
|
49
48
|
```
|
|
50
49
|
|
|
@@ -59,7 +58,7 @@ AgentHUD's TUI splits the screen into a project tree and an activity viewer:
|
|
|
59
58
|
|
|
60
59
|
**Activity viewer (bottom pane)**
|
|
61
60
|
- Real-time feed for the selected session: file reads, edits, bash, responses, thinking, git commits. Newest at the bottom, like `tail -f`.
|
|
62
|
-
-
|
|
61
|
+
- The **newest visible row is rendered "alive"** while in LIVE mode: its icon is replaced with a spinning glyph and the text turns bold. When a new activity arrives, the spinner moves to the new bottom row. Hidden when paused or empty.
|
|
63
62
|
- Press `f` to cycle through filter presets (configurable).
|
|
64
63
|
- Press `↵` on any row to open a scrollable detail view; on a commit row this shows `git show --stat --patch`.
|
|
65
64
|
|
|
@@ -106,10 +105,13 @@ Full reference is also available inside the app — press `?`.
|
|
|
106
105
|
| `Tab` | Switch focus to activity viewer |
|
|
107
106
|
| `PgUp` / `Ctrl+B` | Page up |
|
|
108
107
|
| `PgDn` / `Ctrl+F` | Page down |
|
|
108
|
+
| `t` | Track — auto-follow the newest live sub-agent (any nav key turns it off) |
|
|
109
109
|
| `r` | Refresh now |
|
|
110
110
|
| `?` | Help |
|
|
111
111
|
| `q` | Quit |
|
|
112
112
|
|
|
113
|
+
When tracking is on, the tree panel's title shows `[LIVE ⠧]` and the status bar replaces `t: track` with `TRK ●`. Any explicit selection-changing key (`↑/k`, `↓/j`, `PgUp/PgDn`, `↵`, `h`, or `t` again) turns tracking off.
|
|
114
|
+
|
|
113
115
|
#### Activity viewer focus
|
|
114
116
|
|
|
115
117
|
| Key | Action |
|
|
@@ -132,7 +134,8 @@ Full reference is also available inside the app — press `?`.
|
|
|
132
134
|
|
|
133
135
|
| Key | Action |
|
|
134
136
|
|-----|--------|
|
|
135
|
-
| `↑` / `k` / `↓` / `j` | Scroll |
|
|
137
|
+
| `↑` / `k` / `↓` / `j` | Scroll one line |
|
|
138
|
+
| `Ctrl+U` / `Ctrl+D` | Half page up / down |
|
|
136
139
|
| `↵` / `Esc` / `q` | Close |
|
|
137
140
|
|
|
138
141
|
Detail view colors the content based on activity type:
|
package/dist/index.js
CHANGED