agenthud 0.5.17 → 0.6.1
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 +13 -2
- package/dist/index.js +934 -577
- package/dist/templates/config.yaml +2 -0
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# AgentHUD
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/agenthud)
|
|
4
4
|
[](https://github.com/neochoon/agenthud/actions/workflows/ci.yml)
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
When working with AI coding agents like Claude Code, you lose visibility into what's happening. The agent reads files, runs commands, makes changes - but you're staring at a single terminal, waiting.
|
|
8
8
|
|
|
9
|
-
**
|
|
9
|
+
**AgentHUD** gives you a live dashboard in a separate terminal. See exactly what Claude is doing, track git changes, monitor test results - all updating in real-time.
|
|
10
10
|
|
|
11
11
|

|
|
12
12
|
|
|
@@ -121,6 +121,17 @@ Shows test results with staleness detection:
|
|
|
121
121
|
- **⚠ Outdated**: Warning if tests are behind commits
|
|
122
122
|
- **Failures**: Shows failing test file and name
|
|
123
123
|
|
|
124
|
+
**Auto-detection**: During `agenthud init`, the test framework is automatically detected:
|
|
125
|
+
|
|
126
|
+
| Framework | Detection |
|
|
127
|
+
|-----------|-----------|
|
|
128
|
+
| vitest | package.json devDependencies |
|
|
129
|
+
| jest | package.json devDependencies |
|
|
130
|
+
| mocha | package.json devDependencies |
|
|
131
|
+
| pytest | pytest.ini, conftest.py, pyproject.toml, requirements.txt |
|
|
132
|
+
|
|
133
|
+
If the test command fails, the panel is automatically disabled.
|
|
134
|
+
|
|
124
135
|
### Project Panel
|
|
125
136
|
|
|
126
137
|
Shows project overview and structure:
|