Install
$ agentstack add skill-atlasomnia-donna-starter-hermes-themes ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Hermes Themes Skill
Author a Hermes skin — one YAML file that themes the CLI, the TUI, and the desktop GUI at once. The skin engine (hermes_cli/skin_engine.py) resolves the active skin and the gateway pushes it to every surface, so a file dropped in ~/.hermes/skins/ is the theme analogue of a plugin: no code, all surfaces. This skill covers writing a good skin and activating it; it does not build GUI theme editors or ship built-in presets.
When to Use
- The user asks for a custom look ("make me a synthwave theme", "dark forest
vibes", "match my brand colors") for Hermes itself.
- The user wants the CLI/TUI/desktop to share one coordinated palette.
- The user wants to iterate live ("that coral is too loud, make it teal") — edit
the active skin's YAML and every surface repaints as your tool finishes.
Prerequisites
- Write access to the Hermes home dir —
~/.hermesby default, or$HERMES_HOME
/ the active profile's dir. Skins live in /skins/.
- Native tools:
write_file(create the YAML),read_file/search_files
(inspect existing skins), terminal (activate via hermes config set).
How to Run
- Pick a lowercase, hyphen-safe
name(e.g.synthwave). - Copy
templates/skin.yamland fill in the palette (keep every key — missing
keys inherit the default skin).
write_fileit to/skins/.yaml.- Activate it (see Procedure). Confirm the change landed.
Quick Reference — element → key
Hex (#rrggbb). Theming is semantic: one key colors every element that plays that role, so match the element to its key. To recolor a specific element, set the key in its row (element-specific keys fall back to the shared one when unset).
| Visible element | Key to set | Falls back to | |---|---|---| | App background (whole TUI + GUI) | background | terminal default | | Tool-call marker (●, tool spinner) | ui_tool | ui_accent | | Thinking / reasoning text | ui_thinking | banner_dim | | Accent — headings, links, chevrons, Σ | ui_accent / banner_accent | — | | Heading / primary text | banner_title / ui_primary | — | | Body / label text, user messages | ui_text / banner_text, ui_label | — | | Muted / secondary, tree connectors | banner_dim | — | | Borders, rules, gutters | ui_border / banner_border | — | | Prompt symbol color | prompt | banner_text | | Success / warn / error | ui_ok / ui_warn / ui_error | — | | Status bar text + usage | status_bar_text, status_bar_good/warn/bad/critical | — | | Diff add/remove (line + word) | diff_added / diff_removed / diff_added_word / diff_removed_word | built-in | | Code syntax (string/number/keyword/comment) | syntax_string / syntax_number / syntax_keyword / syntax_comment | accent/text/border/muted | | Completion menu | completion_menu_bg / completion_menu_current_bg / …_meta_bg | — |
Note the sharing: ui_accent colors tool markers and headings/links/chevrons, so to recolor only tool calls (the classic "change the gold ●") set ui_tool. branding (agent_name, prompt_symbol, welcome, goodbye, help_header), spinner, and tool_prefix are optional flavor; full schema in hermes_cli/skin_engine.py.
Procedure
- Design the palette. Choose a
backgroundfirst, then anui_accentthat
clears WCAG AA against it (~4.5:1) so labels stay legible — the GUI enforces contrast but a low-contrast accent still looks washed out. Keep ui_ok/ui_warn/ui_error recognizably green/amber/red.
- Write the file to
/skins/.yaml. Every top-level
colors key from the template should be present.
- Apply it yourself — never hand-edit
config.yaml. Run the safe writer via
terminal: `` hermes config set display.skin ` The gateway's skin watcher notices the change and **repaints every surface live within ~a second** — CLI, TUI, and desktop — and the skin appears in Appearance / Cmd-K / /skin. You apply it; do NOT tell the user to run /skin (they still can, but it's your job). The writer emits valid YAML — a hand-edit can corrupt the file and break the live gateway (including /`).
- Confirm the new look landed and tell the user how to revert: run
hermes config set display.skin default (or they can /skin default).
Tweak the active look (change one thing)
When the user wants to adjust the CURRENT look ("make the tool ● cyan", "warmer background"), use the one deterministic command — it edits the ACTIVE skin's ONE key in place, so everything else (background included) is untouched:
hermes skin set # e.g. hermes skin set ui_tool "#00FFFF"
It edits the active skin's file (a built-in is forked into an editable copy that keeps its full palette), the watcher repaints live, and nothing else moves. Do NOT hand-write a new skin from default for a tweak — that drops the current palette and resets the background. hermes skin set background "#08201f" changes only the background; hermes skin use / hermes skin list switch and enumerate.
Pitfalls
- Don't hardcode
~/.hermeswhen a profile is active — resolve the real home
from $HERMES_HOME first, falling back to ~/.hermes.
- Keep
#rrggbbhex. Shorthand#rgb,rgb(), and named colors are not
guaranteed to parse on every surface.
- Set
background. Without it the GUI has to guess a base surface from text
luminance — usable, but you lose control of the app background.
- Name collisions: a skin named like a desktop built-in (
mono,slate,
cyberpunk, nous, midnight, ember) won't override that built-in on the GUI. Pick a fresh name.
- Never hand-edit
config.yamlto activate. Use `hermes config set
display.skin — a stray indent in a manual edit corrupts the file and can break the live gateway (including /`). One command, always valid.
- You apply it, not the user.
hermes config set display.skinis
enough — the gateway's watcher repaints every surface within ~a second. Don't defer to "type /skin yourself"; that's the old behavior.
- To change one color, edit the ACTIVE skin — never fork
default. Forking
default for a tweak drops the current palette: a skin with no background resets the terminal to its own default (often black). Patch the active skin's file in place so background and everything else survive.
Verification
read_filethe written/skins/.yamland confirm valid
YAML with the intended name and colors.
- Run
hermes config get display.skinand confirm it reports ``. - The repaint lands as this turn ends — ask the user to confirm the new look.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: AtlasOmnia
- Source: AtlasOmnia/donna-starter
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.