agenthud 0.13.1 → 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.
Files changed (2) hide show
  1. package/README.md +9 -3
  2. package/package.json +26 -7
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
- ## Install
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
- Requires Node.js 20+.
21
+ ## Try without installing
22
22
 
23
23
  ```bash
24
24
  npx agenthud
25
+ # or: bunx agenthud
25
26
  ```
26
27
 
27
- Run this in a separate terminal while using Claude Code. Press `?` inside the TUI any time for in-app help.
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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agenthud",
3
- "version": "0.13.1",
4
- "description": "CLI tool to monitor agent status in real-time. Works with Claude Code, multi-agent workflows, and any AI agent system.",
3
+ "version": "0.13.3",
4
+ "description": "Claude Code TUI dashboard: live monitor for parallel sessions and sub-agents, with LLM-generated daily/weekly digest",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "bin": {
@@ -29,13 +29,32 @@
29
29
  "url": "git+https://github.com/neochoon/agenthud.git"
30
30
  },
31
31
  "keywords": [
32
- "cli",
32
+ "claude",
33
+ "claude-code",
34
+ "claude-code-cli",
35
+ "claude-code-tui",
36
+ "anthropic",
33
37
  "agent",
38
+ "ai-agent",
39
+ "coding-agent",
40
+ "sub-agent",
41
+ "tui",
42
+ "terminal",
43
+ "terminal-ui",
44
+ "monitor",
45
+ "live-monitor",
46
+ "observability",
47
+ "session",
48
+ "sessions",
49
+ "session-monitor",
50
+ "session-manager",
34
51
  "dashboard",
35
- "monitoring",
36
- "claude",
37
- "ai",
38
- "terminal"
52
+ "digest",
53
+ "summary",
54
+ "llm",
55
+ "llm-summary",
56
+ "cli",
57
+ "developer-tools"
39
58
  ],
40
59
  "author": "",
41
60
  "license": "MIT",