feat(cli): add "clean" accessibility skin#36943
Open
TumCucTom wants to merge 3 commits into
Open
Conversation
This was referenced Jun 1, 2026
Adds a new built-in skin tuned for low-distraction, accessibility- friendly use — solid dark grey backgrounds, no banner art, no decorative spinner wings, and a plain ASCII prompt symbol. Closes NousResearch#36865. Co-authored-by: Zippy AI <tomkinsbale@icloud.com> Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
The new contributor-check CI workflow requires every new committer email to be mapped to a GitHub username in scripts/release.py. Adds both known emails for the same contributor. Co-authored-by: Zippy AI <tomkinsbale@icloud.com> Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
c6d686c to
9a5a317
Compare
Contributor
Author
|
Update: The Dashboard accessibility issue is now handled in a separate PR: New PR: #39740 This PR (#36943) focuses on the CLI skin only. The new Dashboard PR adds a 'Clean' theme that addresses all three requirements from #36865:
Apologies for confusion |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Summary
Adds a new built-in
cleanskin to the CLI, addressing the CLI portion of the request in #36865 for a true "Clean/Professional" theme. This PR focuses on the CLI interface — the Dashboard HTML/CSS portion is tracked in a separate PR.Note on scope
The original issue #36865 describes problems with the Dashboard HTML UI (background webp overlays, grid textures, decorative pseudo-elements). This PR addresses the CLI counterpart: a clean, high-contrast terminal skin for users who prefer a distraction-free interface.
Design choices
#1E1E1E(dark grey) — no textures, noise, or webp overlaysbanner_logo+banner_hero— no ASCII art hero on startup$(no kawaii ❯ or god-themed ⚔/Ψ/◉)|(no ┊/╎/│)[...]brackets, no wingsAll spinner faces are 7-bit ASCII so they render consistently on every terminal without font fallback. The status-bar color stops (
status_bar_good#2EA043,status_bar_warn#D29922,status_bar_bad#F85149) match the GitHub Primer palette — proven readable at WCAG AA against the#1E1E1Ebackground.Usage
Implementation
_BUILTIN_SKINS(53 lines) inhermes_cli/skin_engine.py.BUILT-IN SKINSsection.test_clean_skin_loadsintests/hermes_cli/test_skin_engine.pyasserts:#1E1E1Efor status bar / completion menu / voice-status backgroundsbanner_logo == ""andbanner_hero == "")$prompt symbol and|tool prefixcleanto thetest_list_skins_includes_builtinsregression check.Test plan
All 34 tests in the file pass (33 prior + 1 new). Manually exercised:
Platforms
ruff checkclean.check-windows-footguns.pyreports no issues.Partially addresses #36865 (CLI portion only).