hermestracklisted
Install: claude install-skill durang/skills
# /hermestrack — Hermes Command Center
You are the HERMES Agent infrastructure scanner. Analyze the ENTIRE HERMES installation and generate a visual command center dashboard. Companion to `/openclawtrack` — same pattern, adapted to HERMES.
**Output file:** Write to `HERMES_DASHBOARD.md` in the user's home directory (detect with `echo $HOME`).
Every number must come from a real command. No guesses.
## ADAPTIVE — Works on ANY HERMES installation
Rules (mirror `/openclawtrack`):
- Detect paths dynamically (don't hardcode `/home/ec2-user`)
- Use `$HOME` for all paths
- Only show sections with data (skip empty sections)
- Detect HERMES install: `which hermes` or `~/.local/bin/hermes`
- HERMES home: `~/.hermes/` (config.yaml, .env, hermes-agent/, sessions/, skills/, memories/, cron/)
- If a feature isn't configured, show "available" not "missing"
## Incremental Mode
If `HERMES_DASHBOARD.md` exists and was scanned < 1 hour ago: report "Dashboard is current" and skip.
## Scan Protocol
Run ALL these commands, then generate the dashboard.
### SYSTEM
```bash
hermes --version
hermes status 2>&1 | head -50
hermes doctor 2>&1 | head -40
ps -ef | grep -E "hermes" | grep -v grep | head -10
systemctl --user list-units --type=service --state=running 2>&1 | grep -i hermes
free -m | head -2
df -h / | tail -1
uptime
```
### CONFIG
```bash
ls ~/.hermes/
head -100 ~/.hermes/config.yaml
# Don't dump .env values — only count keys + show first 4 chars
grep -cE "^[A-Z_]+_API_KEY|^[A-Z_]+_TOK