mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-04-25 00:51:20 +00:00
* feat: web UI dashboard for managing Hermes Agent (salvage of #8204/#7621) Adds an embedded web UI dashboard accessible via `hermes web`: - Status page: agent version, active sessions, gateway status, connected platforms - Config editor: schema-driven form with tabbed categories, import/export, reset - API Keys page: set, clear, and view redacted values with category grouping - Sessions, Skills, Cron, Logs, and Analytics pages Backend: - hermes_cli/web_server.py: FastAPI server with REST endpoints - hermes_cli/config.py: reload_env() utility for hot-reloading .env - hermes_cli/main.py: `hermes web` subcommand (--port, --host, --no-open) - cli.py / commands.py: /reload slash command for .env hot-reload - pyproject.toml: [web] optional dependency extra (fastapi + uvicorn) - Both update paths (git + zip) auto-build web frontend when npm available Frontend: - Vite + React + TypeScript + Tailwind v4 SPA in web/ - shadcn/ui-style components, Nous design language - Auto-refresh status page, toast notifications, masked password inputs Security: - Path traversal guard (resolve().is_relative_to()) on SPA file serving - CORS localhost-only via allow_origin_regex - Generic error messages (no internal leak), SessionDB handles closed properly Tests: 47 tests covering reload_env, redact_key, API endpoints, schema generation, path traversal, category merging, internal key stripping, and full config round-trip. Original work by @austinpickett (PR #1813), salvaged by @kshitijk4poor (PR #7621 → #8204), re-salvaged onto current main with stale-branch regressions removed. * fix(web): clean up status page cards, always rebuild on `hermes web` - Remove config version migration alert banner from status page - Remove config version card (internal noise, not surfaced in TUI) - Reorder status cards: Agent → Gateway → Active Sessions (3-col grid) - `hermes web` now always rebuilds from source before serving, preventing stale web_dist when editing frontend files * feat(web): full-text search across session messages - Add GET /api/sessions/search endpoint backed by FTS5 - Auto-append prefix wildcards so partial words match (e.g. 'nimb' → 'nimby') - Debounced search (300ms) with spinner in the search icon slot - Search results show FTS5 snippets with highlighted match delimiters - Expanding a search hit auto-scrolls to the first matching message - Matching messages get a warning ring + 'match' badge - Inline term highlighting within Markdown (text, bold, italic, headings, lists) - Clear button (x) on search input for quick reset --------- Co-authored-by: emozilla <emozilla@nousresearch.com>
48 lines
1.5 KiB
Markdown
48 lines
1.5 KiB
Markdown
# Hermes Agent — Web UI
|
|
|
|
Browser-based dashboard for managing Hermes Agent configuration, API keys, and monitoring active sessions.
|
|
|
|
## Stack
|
|
|
|
- **Vite** + **React 19** + **TypeScript**
|
|
- **Tailwind CSS v4** with custom dark theme
|
|
- **shadcn/ui**-style components (hand-rolled, no CLI dependency)
|
|
|
|
## Development
|
|
|
|
```bash
|
|
# Start the backend API server
|
|
cd ../
|
|
python -m hermes_cli.main web --no-open
|
|
|
|
# In another terminal, start the Vite dev server (with HMR + API proxy)
|
|
cd web/
|
|
npm run dev
|
|
```
|
|
|
|
The Vite dev server proxies `/api` requests to `http://127.0.0.1:9119` (the FastAPI backend).
|
|
|
|
## Build
|
|
|
|
```bash
|
|
npm run build
|
|
```
|
|
|
|
This outputs to `../hermes_cli/web_dist/`, which the FastAPI server serves as a static SPA. The built assets are included in the Python package via `pyproject.toml` package-data.
|
|
|
|
## Structure
|
|
|
|
```
|
|
src/
|
|
├── components/ui/ # Reusable UI primitives (Card, Badge, Button, Input, etc.)
|
|
├── lib/
|
|
│ ├── api.ts # API client — typed fetch wrappers for all backend endpoints
|
|
│ └── utils.ts # cn() helper for Tailwind class merging
|
|
├── pages/
|
|
│ ├── StatusPage # Agent status, active/recent sessions
|
|
│ ├── ConfigPage # Dynamic config editor (reads schema from backend)
|
|
│ └── EnvPage # API key management with save/clear
|
|
├── App.tsx # Main layout and navigation
|
|
├── main.tsx # React entry point
|
|
└── index.css # Tailwind imports and theme variables
|
|
```
|