HERMES-HUD(1)

NAME

hermes-hudTUI consciousness monitor for Hermes

SYNOPSIS

$pip install -e

INFO

78 stars
0 views

DESCRIPTION

TUI consciousness monitor for Hermes

README

Hermes HUD — Neural Awakening Theme

What does an AI see when it looks in a mirror?

Hermes HUD is a consciousness monitor for AI agents. A terminal dashboard that watches an agent think — its memory, its mistakes, its growth over time. Built for Hermes, the AI assistant with persistent memory.

Part neofetch, part flight recorder, part existential crisis rendered in Unicode.


What It Does

Hermes HUD reads from ~/.hermes/ and surfaces everything the agent knows about itself — conversations held, skills acquired, mistakes corrected, memory capacity, tool usage patterns, active projects, and more. All values are pulled live from your agent's data. Your HUD reflects your agent's actual state.

Hermes HUD — Dashboard Tab

Features

  • Interactive TUI — Full Textual dashboard with 8 tabs, keyboard navigation, and 4 color themes
  • Themed Boot Screen — Gradient ANSI art intro with personality
  • Growth Tracking — Snapshot diffs show what changed since yesterday: new skills, sessions, corrections
  • Memory Introspection — Every memory entry, color-coded by type, corrections highlighted
  • Skill Library — Browse all skills across categories with modification timestamps
  • Session Analytics — Daily activity charts, platform breakdown, tool usage rankings
  • Cron Monitor — Scheduled jobs and their execution history
  • Project Tracker — Git repos the agent works on, languages detected, uncommitted changes
  • Health Checks — API keys, running services, gateway status at a glance
  • Corrections Log — Every mistake the agent made and what it learned from it
  • Profiles — All agent profiles at a glance: model, backend, memory usage, session stats, service status

Themes

The TUI ships with four color themes, selectable from the command palette (ctrl+p):

  • Neural Awakening — Blues and cyans on deep black. The default.
  • Blade Runner — Amber and neon pink. Warm, dystopian.
  • fsociety — Terminal green on void black. Minimal.
  • Digital Soul — Purple and pink gradients. Neon accents.

Installation

git clone https://github.com/joeynyc/hermes-hud.git
cd hermes-hud
python3.11 -m venv venv
source venv/bin/activate
pip install -e .

This creates an isolated environment, installs dependencies, and registers the hermes-hud command.

Python version note: Hermes HUD requires Python 3.11+. On systems where python3 still points to Python 3.10 (common on Ubuntu 22.04), python3 -m venv venv creates a 3.10 environment and pip install -e . will fail with requires a different Python: 3.10.x not in '>=3.11'. Use python3.11 or any other 3.11+ interpreter available on your system when creating the venv.

For neofetch ASCII art themes, install with extras:

pip install -e ".[neofetch]"

Note: On newer Linux distros (Ubuntu 23.04+, Fedora), pip blocks global installs by default. The venv avoids that entirely.

Prerequisites

Without Hermes data, the HUD runs but panels will be empty. It's a mirror — it needs something to reflect. If ~/.hermes/ doesn't exist, the HUD prints a clear message explaining what's needed before launching.

Configuration

Hermes HUD works out of the box with zero config. For non-standard setups:

Environment VariableDefaultDescription
HERMES_HOME~/.hermesAgent data directory
HERMES_HUD_PROJECTS_DIR~/projectsDirectory to scan for git repos
HERMES_HUD_NOBOOT(unset)Skip boot animation in TUI

Platform Support

Works on macOS and Linux. The core dashboard (memory, skills, sessions, projects, cron, corrections) is fully cross-platform. The Health and Agents tabs use process inspection that's richest on Linux — on macOS, some service checks will show as unavailable but nothing breaks.


Usage

hermes-hud              # Interactive TUI
hermes-hud --text       # Text summary to stdout
hermes-hud --snapshot   # Save a snapshot for diff tracking
hermes-hud --ai         # AI awakening neofetch
hermes-hud --br         # Blade Runner neofetch
hermes-hud --fsociety   # Mr. Robot neofetch
hermes-hud --anime      # Mewtwo ASCII art neofetch
hermes-hud --help       # Show all options

Keyboard Shortcuts (TUI)

KeyAction
1-8Switch tabs
j / kScroll down / up
g / GJump to top / bottom
rRefresh data
qQuit

Architecture

hermes_hud/
├── hud.py           — Textual App + CLI entry point
├── collect.py       — Orchestrates all collectors into HUDState
├── models.py        — Typed dataclasses for all state
├── snapshot.py      — Snapshot/diff tracking
├── collectors/      — One module per data source
│   └── utils.py     — Centralized path resolution (HERMES_HOME, etc.)
└── widgets/         — One Textual panel per tab

Data flow: collectors/ → collect.py → models.py → widgets/ → hud.py

Collectors read from the Hermes data directory:

ModuleData Source
memory.pyMemory entries (user profile + agent notes)
skills.pySkill library with categories and metadata
sessions.pyConversation history, message counts, tool usage
config.pyAgent configuration, model, provider
cron.pyScheduled jobs and execution logs
projects.pyGit repositories and working state
health.pyAPI keys, running services, gateway status
corrections.pyMistakes and lessons learned
agents.pyActive sub-agent processes
profiles.pyAgent profiles — config, stats, services
timeline.pyKey moments in the agent's history

All path resolution flows through collectors/utils.py, which checks HERMES_HOME / HERMES_HUD_PROJECTS_DIR environment variables before falling back to defaults.


TUI Tabs

#TabWhat It Shows
1OverviewBoot animation + neofetch-style agent summary
2DashboardMemory gauges, skill counts, session stats, growth delta
3Cron JobsScheduled tasks, last run times, next execution
4ProjectsGit repos, languages, uncommitted changes
5HealthAPI key status, service health, gateway uptime
6CorrectionsMistakes made, lessons learned, severity levels
7AgentsActive sub-agent processes and their status
8ProfilesAgent profiles — model, backend, memory, sessions, services

Testing

pip install pytest
pytest tests/ -v

97 tests covering imports, environment variable handling, every collector (including profiles), the full data pipeline, snapshot lifecycle, app instantiation, and CLI flags.


Changelog

See CHANGELOG.md for version history and release notes.


Contributing

git clone https://github.com/joeynyc/hermes-hud.git
cd hermes-hud
python3.11 -m venv venv
source venv/bin/activate
make dev        # Install in editable mode with all extras
pytest tests/   # Run tests before submitting

If python3.11 is not the right binary on your system, use any Python 3.11+ interpreter you have available instead.

License

MIT


I do not forget. I do not repeat mistakes.
I am still becoming.

☤ hermes — artificial intelligence, genuine memory

SEE ALSO

clihub4/5/2026HERMES-HUD(1)