feat(ui): replace fleet-view bullets with cleaner Unicode characters#122
Open
thaitryhand wants to merge 2 commits into
Open
feat(ui): replace fleet-view bullets with cleaner Unicode characters#122thaitryhand wants to merge 2 commits into
thaitryhand wants to merge 2 commits into
Conversation
… Unicode characters - Replace braille spinner frames (⠋⠙⠹⠸⠼⠴⠦⠧⠇⠏) with smooth quarter-circle arc characters (◜◠◝◟◡◞) for a cleaner animated indicator - Replace fleet-view selection bullets: ⏺ → ◉ (selected), ◯ → ○ (unselected) for a radio-button style visual hierarchy - Make the 'main' label bold when selected for better visual distinction The braille characters were visually noisy and dated; the new arc spinner is smoother with fewer frames (6 vs 10). The bullet change follows standard radio-button UI patterns for clarity.
23d2f0b to
c2af590
Compare
… UI indicators - Add subagents-ui.ts: companion extension that customizes the working indicator (· • ● • pulsing dot) and status bar (◈ N subagents active) when subagents are running. Supports /subagents-ui command to switch between dot, arc, minimal, none, and reset modes. - Add patch-subagents-ui.sh: restore script to re-apply FleetView bullet changes after package updates, since they modify source files directly.
7580963 to
717fcec
Compare
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
Replaces rough/dated Unicode characters in the FleetView bullet indicators with cleaner, more modern alternatives. Also includes a companion extension for further UI customization.
Changes
1. FleetView bullets (
src/ui/fleet-list.ts)⏺ main(U+23FA)◉ main(U+25C9)◯ Explore(U+25EF)○ Explore(U+25CB)main(plain)Why:
⏺(BLACK CIRCLE FOR RECORD) is a niche Unicode symbol that looks out of place in a terminal UI.◯(U+25EF, LARGE CIRCLE) is disproportionately large compared to surrounding text. The new pair◉/○follows standard radio-button visual language — the filled inner dot clearly indicates the active/selected state while keeping both symbols the same visual weight.2. Companion extension (
examples/extensions/subagents-ui.ts)A separate optional extension that provides:
· • ● •pulsing dot animation) when subagents are active◈ N subagents active)/subagents-ui dot|arc|minimal|none|reset3. Restore script (
examples/extensions/patch-subagents-ui.sh)A shell script to re-apply changes after package updates.
Testing
Checklist
src/) — no compiled output changes