agenthud 0.5.16 → 0.5.17
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 +75 -3
- package/dist/templates/config.yaml +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,16 +67,88 @@ panels:
|
|
|
67
67
|
interval: 10s
|
|
68
68
|
```
|
|
69
69
|
|
|
70
|
+
## Panels
|
|
71
|
+
|
|
72
|
+
### Claude Panel
|
|
73
|
+
|
|
74
|
+
Shows real-time Claude Code activity:
|
|
75
|
+
|
|
76
|
+
```
|
|
77
|
+
┌─ Claude ─────────────────────────────────────────────┐
|
|
78
|
+
│ [10:23:45] ○ Read: src/components/Button.tsx │
|
|
79
|
+
│ [10:23:46] ~ Edit: src/components/Button.tsx │
|
|
80
|
+
│ [10:23:47] $ Bash: npm test │
|
|
81
|
+
│ [10:23:50] < Response: Tests passed successfully... │
|
|
82
|
+
└──────────────────────────────────────────────────────┘
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
- **○ Read**: File being read
|
|
86
|
+
- **~ Edit/Write**: File being modified
|
|
87
|
+
- **$ Bash**: Command being executed
|
|
88
|
+
- **< Response**: Claude's text response
|
|
89
|
+
|
|
90
|
+
### Git Panel
|
|
91
|
+
|
|
92
|
+
Shows today's git activity and current state:
|
|
93
|
+
|
|
94
|
+
```
|
|
95
|
+
┌─ Git ────────────────────────────────────────────────┐
|
|
96
|
+
│ feat/add-dashboard · +142 -23 · 3 commits · 5 files │
|
|
97
|
+
│ • abc1234 Add dashboard component │
|
|
98
|
+
│ • def5678 Fix styling issues │
|
|
99
|
+
└──────────────────────────────────────────────────────┘
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
- **Branch name**: Current working branch (green)
|
|
103
|
+
- **Stats**: Lines added/deleted, commits, files changed
|
|
104
|
+
- **dirty**: Shows uncommitted change count (yellow)
|
|
105
|
+
|
|
106
|
+
### Tests Panel
|
|
107
|
+
|
|
108
|
+
Shows test results with staleness detection:
|
|
109
|
+
|
|
110
|
+
```
|
|
111
|
+
┌─ Tests ──────────────────────────────────────────────┐
|
|
112
|
+
│ ✓ 42 passed ✗ 1 failed ○ 2 skipped · abc1234 │
|
|
113
|
+
│ ⚠ Outdated (3 commits behind) │
|
|
114
|
+
│──────────────────────────────────────────────────────│
|
|
115
|
+
│ ✗ Button.test.tsx │
|
|
116
|
+
│ • should render correctly │
|
|
117
|
+
└──────────────────────────────────────────────────────┘
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
- **✓ passed** (green), **✗ failed** (red), **○ skipped**
|
|
121
|
+
- **⚠ Outdated**: Warning if tests are behind commits
|
|
122
|
+
- **Failures**: Shows failing test file and name
|
|
123
|
+
|
|
124
|
+
### Project Panel
|
|
125
|
+
|
|
126
|
+
Shows project overview and structure:
|
|
127
|
+
|
|
128
|
+
```
|
|
129
|
+
┌─ Project ────────────────────────────────────────────┐
|
|
130
|
+
│ agenthud · TypeScript · MIT │
|
|
131
|
+
│ Stack: react, ink, vitest │
|
|
132
|
+
│ Files: 45 .ts · Lines: 3.2k │
|
|
133
|
+
│ Deps: 12 prod · 8 dev │
|
|
134
|
+
└──────────────────────────────────────────────────────┘
|
|
135
|
+
```
|
|
136
|
+
|
|
137
|
+
- **Name/Language/License**: Project basics
|
|
138
|
+
- **Stack**: Detected frameworks and tools
|
|
139
|
+
- **Files/Lines**: Source code stats
|
|
140
|
+
- **Deps**: Dependency counts
|
|
141
|
+
|
|
70
142
|
### Other Sessions Panel
|
|
71
143
|
|
|
72
144
|
Shows activity from your other Claude Code projects:
|
|
73
145
|
|
|
74
146
|
```
|
|
75
147
|
┌─ Other Sessions ─────────────────────────────────────┐
|
|
76
|
-
│ 📁 dotfiles, pain-radar, myapp +4 | ⚡ 1 active
|
|
148
|
+
│ 📁 dotfiles, pain-radar, myapp +4 | ⚡ 1 active │
|
|
77
149
|
│ │
|
|
78
|
-
│ 🔵 dotfiles (2m ago)
|
|
79
|
-
│ "Updated the config file as requested..."
|
|
150
|
+
│ 🔵 dotfiles (2m ago) │
|
|
151
|
+
│ "Updated the config file as requested..." │
|
|
80
152
|
└──────────────────────────────────────────────────────┘
|
|
81
153
|
```
|
|
82
154
|
|
package/package.json
CHANGED