|
| 1 | +{ |
| 2 | + "meta": { |
| 3 | + "name": "Agent Switchboard Terminal", |
| 4 | + "description": "A compact, status-first terminal interface for switching Agent providers and synchronizing CC Switch state.", |
| 5 | + "source_references": [ |
| 6 | + "Existing cc-switchy Ratatui interface", |
| 7 | + "User brief: Agent configuration switching and synchronization are the primary jobs" |
| 8 | + ], |
| 9 | + "created_at": "2026-07-23" |
| 10 | + }, |
| 11 | + "design_system": { |
| 12 | + "color": { |
| 13 | + "palette_type": "complementary", |
| 14 | + "primary": { |
| 15 | + "hex": "#5FD7D7", |
| 16 | + "role": "focus, selected workspace, and primary action" |
| 17 | + }, |
| 18 | + "secondary": { |
| 19 | + "hex": "#87AFC7", |
| 20 | + "role": "metadata and secondary navigation" |
| 21 | + }, |
| 22 | + "accent": { |
| 23 | + "hex": "#FFD75F", |
| 24 | + "role": "sync activity, warnings, and attention" |
| 25 | + }, |
| 26 | + "neutral": { |
| 27 | + "scale": ["#101418", "#1B2229", "#3A4650", "#87939D", "#D7DEE3", "#F4F7F9"], |
| 28 | + "usage": "Terminal background, subdued borders, secondary text, and primary text" |
| 29 | + }, |
| 30 | + "semantic": { |
| 31 | + "success": "#5FD787", |
| 32 | + "warning": "#FFD75F", |
| 33 | + "error": "#FF5F5F", |
| 34 | + "info": "#5FAFFF" |
| 35 | + }, |
| 36 | + "surface": { |
| 37 | + "background": "#101418", |
| 38 | + "card": "#1B2229", |
| 39 | + "elevated": "#27313A" |
| 40 | + }, |
| 41 | + "contrast_strategy": "High-contrast foreground with muted structural chrome; color is reserved for state and focus" |
| 42 | + }, |
| 43 | + "typography": { |
| 44 | + "type_scale": { |
| 45 | + "display": {"size": "1 terminal cell", "weight": "bold", "line_height": "1", "tracking": "0"}, |
| 46 | + "heading_1": {"size": "1 terminal cell", "weight": "bold", "line_height": "1", "tracking": "0"}, |
| 47 | + "heading_2": {"size": "1 terminal cell", "weight": "bold", "line_height": "1", "tracking": "0"}, |
| 48 | + "heading_3": {"size": "1 terminal cell", "weight": "medium", "line_height": "1", "tracking": "0"}, |
| 49 | + "body": {"size": "1 terminal cell", "weight": "regular", "line_height": "1", "tracking": "0"}, |
| 50 | + "body_small": {"size": "1 terminal cell", "weight": "regular", "line_height": "1", "tracking": "0"}, |
| 51 | + "caption": {"size": "1 terminal cell", "weight": "regular", "line_height": "1", "tracking": "0"}, |
| 52 | + "overline": {"size": "1 terminal cell", "weight": "bold", "line_height": "1", "tracking": "1 cell between groups"} |
| 53 | + }, |
| 54 | + "font_families": { |
| 55 | + "heading": "terminal monospace", |
| 56 | + "body": "terminal monospace", |
| 57 | + "mono": "terminal monospace" |
| 58 | + }, |
| 59 | + "font_style_notes": "Use weight and color, never simulated font-size, to express hierarchy in a terminal" |
| 60 | + }, |
| 61 | + "spacing": { |
| 62 | + "base_unit": "1 cell", |
| 63 | + "scale": ["0", "1", "2", "3", "4"], |
| 64 | + "content_density": "compact", |
| 65 | + "section_rhythm": "One-cell internal padding; blank lines only inside detail panes where they improve scanning" |
| 66 | + }, |
| 67 | + "layout": { |
| 68 | + "grid_system": "Responsive Ratatui constraints with a persistent status header and contextual footer", |
| 69 | + "max_content_width": "terminal width", |
| 70 | + "columns": "Wide: provider list plus details; medium: one primary pane plus status rail; narrow: one focused pane", |
| 71 | + "gutter": "0-1 terminal cell", |
| 72 | + "breakpoints": ["60 columns minimum", "80 columns medium", "120 columns wide"], |
| 73 | + "alignment_tendency": "strict grid" |
| 74 | + }, |
| 75 | + "shape": { |
| 76 | + "border_radius": {"small": "0", "medium": "0", "large": "0", "pill": "0"}, |
| 77 | + "border_usage": "Subtle single-line borders on major work areas; selected rows use a filled marker rather than extra boxes", |
| 78 | + "divider_style": "Single terminal rule with muted color" |
| 79 | + }, |
| 80 | + "elevation": { |
| 81 | + "shadow_style": "none", |
| 82 | + "levels": {"low": "color contrast only", "medium": "focused border plus color", "high": "modal overlay only"}, |
| 83 | + "depth_cues": "Color intensity, border emphasis, and spatial grouping" |
| 84 | + }, |
| 85 | + "iconography": { |
| 86 | + "style": "single-cell Unicode status glyphs with ASCII-safe text labels", |
| 87 | + "stroke_weight": "single-cell", |
| 88 | + "size_scale": ["1 cell"], |
| 89 | + "preferred_set": "● ○ ✓ ! × ◌ ›" |
| 90 | + }, |
| 91 | + "motion": { |
| 92 | + "easing": "state-driven", |
| 93 | + "duration_scale": {"micro": "100ms redraw tick", "normal": "operation event", "macro": "operation completion"}, |
| 94 | + "entrance_pattern": "Immediate redraw with focus relocation", |
| 95 | + "exit_pattern": "Immediate redraw; active operations require cancellation", |
| 96 | + "philosophy": "minimal functional" |
| 97 | + }, |
| 98 | + "components": { |
| 99 | + "button_style": "Key hints formatted as highlighted key plus plain-language action", |
| 100 | + "input_style": "Existing wizard fields retained with focused border and explicit validation", |
| 101 | + "card_style": "Bordered terminal panes with short uppercase-like titles and state badges", |
| 102 | + "navigation_pattern": "Four numbered jobs: Switch, Sync, Skills, Activity; Agents are a horizontal workspace selector", |
| 103 | + "modal_style": "Full-context wizard overlay with preserved terminal state", |
| 104 | + "list_style": "One-line rows, leading selection marker, trailing state badge, stable column alignment", |
| 105 | + "component_notes": "Keep the current provider and default sync source visible in the header; put destructive or long-running state in the status line" |
| 106 | + } |
| 107 | + }, |
| 108 | + "design_style": { |
| 109 | + "aesthetic": { |
| 110 | + "mood": ["focused", "operational", "calm", "trustworthy"], |
| 111 | + "visual_metaphor": "A compact switchboard for routing Agent configurations", |
| 112 | + "era_influence": "Modern terminal operations tooling", |
| 113 | + "genre": "developer productivity TUI", |
| 114 | + "personality_traits": ["direct", "precise", "reassuring", "efficient"], |
| 115 | + "adjectives": ["status-first", "keyboard-native", "compact", "legible"] |
| 116 | + }, |
| 117 | + "visual_language": { |
| 118 | + "complexity": "moderate", |
| 119 | + "ornamentation": "none", |
| 120 | + "whitespace_usage": "tight but grouped", |
| 121 | + "visual_weight_distribution": "Current Agent/provider and sync readiness carry the most weight", |
| 122 | + "focal_strategy": "One primary job per screen with persistent global status", |
| 123 | + "contrast_level": "high", |
| 124 | + "texture_usage": "none" |
| 125 | + }, |
| 126 | + "composition": { |
| 127 | + "hierarchy_method": "color weight plus spatial isolation", |
| 128 | + "balance_type": "asymmetric", |
| 129 | + "flow_direction": "top status to workspace selector to actionable list to contextual help", |
| 130 | + "grouping_strategy": "Group by user job, then Agent, then provider/source", |
| 131 | + "negative_space_role": "Separates state summaries from actionable rows" |
| 132 | + }, |
| 133 | + "imagery": { |
| 134 | + "photo_treatment": "none", |
| 135 | + "illustration_style": "none", |
| 136 | + "graphic_elements": "status glyphs, rules, and progress bars", |
| 137 | + "pattern_usage": "none", |
| 138 | + "image_shape": "not applicable" |
| 139 | + }, |
| 140 | + "interaction_feel": { |
| 141 | + "feedback_style": "Immediate focus/state change with activity-log confirmation for operations", |
| 142 | + "hover_behavior": "not applicable; keyboard focus is explicit", |
| 143 | + "transition_personality": "snappy", |
| 144 | + "loading_style": "Live stage, elapsed time, artifact progress, and cancellable working badge", |
| 145 | + "microinteraction_density": "low" |
| 146 | + }, |
| 147 | + "brand_voice_in_ui": { |
| 148 | + "tone": "concise and operational", |
| 149 | + "formality": "neutral professional", |
| 150 | + "cta_style": "direct imperative", |
| 151 | + "empty_state_approach": "Explain the missing prerequisite and name the next key to press", |
| 152 | + "error_tone": "Specific, recoverable, and free of blame" |
| 153 | + } |
| 154 | + }, |
| 155 | + "visual_effects": { |
| 156 | + "overview": { |
| 157 | + "effect_intensity": "none", |
| 158 | + "performance_tier": "lightweight", |
| 159 | + "fallback_strategy": "Use ASCII-compatible labels when Unicode glyph width is unreliable", |
| 160 | + "primary_technology": "Ratatui terminal rendering" |
| 161 | + }, |
| 162 | + "background_effects": { |
| 163 | + "type": "none", |
| 164 | + "description": "No decorative background effect", |
| 165 | + "technology": "none", |
| 166 | + "params": {"color_palette": [], "speed": "0", "density": "0", "opacity": "0", "blend_mode": "none"} |
| 167 | + }, |
| 168 | + "particle_systems": { |
| 169 | + "enabled": false, |
| 170 | + "type": "none", |
| 171 | + "description": "Disabled", |
| 172 | + "technology": "none", |
| 173 | + "params": {"count": 0, "shape": "none", "size_range": "0", "movement_pattern": "none", "color_behavior": "none", "interaction": "none", "spawn_area": "none"} |
| 174 | + }, |
| 175 | + "3d_elements": { |
| 176 | + "enabled": false, |
| 177 | + "type": "none", |
| 178 | + "description": "Disabled", |
| 179 | + "technology": "none", |
| 180 | + "params": {"renderer": "none", "lighting": "none", "camera": "none", "materials": [], "geometry": [], "post_processing": [], "interaction_model": "none"} |
| 181 | + }, |
| 182 | + "shader_effects": { |
| 183 | + "enabled": false, |
| 184 | + "type": "none", |
| 185 | + "description": "Disabled", |
| 186 | + "technology": "none", |
| 187 | + "params": {"uniforms": {}, "vertex_manipulation": "none", "fragment_output": "none", "noise_type": "none", "distortion": "none"} |
| 188 | + }, |
| 189 | + "scroll_effects": { |
| 190 | + "parallax": {"enabled": false, "layers": "0", "depth_range": "0", "speed_curve": "none"}, |
| 191 | + "scroll_triggered_animations": {"enabled": false, "trigger_points": [], "animation_type": "none", "scrub_behavior": "none"}, |
| 192 | + "scroll_morphing": {"enabled": false, "description": "Disabled"} |
| 193 | + }, |
| 194 | + "text_effects": { |
| 195 | + "type": "none", |
| 196 | + "description": "Only state-driven color and weight changes", |
| 197 | + "technology": "Ratatui styles", |
| 198 | + "params": {"split_strategy": "none", "animation_per_unit": "none", "stagger": "0", "effect_style": "none"} |
| 199 | + }, |
| 200 | + "cursor_effects": { |
| 201 | + "enabled": false, |
| 202 | + "type": "none", |
| 203 | + "description": "Terminal cursor is hidden while the TUI is active", |
| 204 | + "params": {"shape": "none", "size": "0", "blend_mode": "none", "trail": "none", "interaction_zone": "none"} |
| 205 | + }, |
| 206 | + "image_effects": { |
| 207 | + "type": "none", |
| 208 | + "description": "No images", |
| 209 | + "technology": "none", |
| 210 | + "params": {"filter_pipeline": [], "hover_transform": "none", "reveal_animation": "none", "distortion_type": "none"} |
| 211 | + }, |
| 212 | + "glassmorphism_neumorphism": { |
| 213 | + "enabled": false, |
| 214 | + "style": "none", |
| 215 | + "params": {"blur_radius": "0", "transparency": "0", "border_treatment": "none", "shadow_type": "none", "light_source_angle": "none"} |
| 216 | + }, |
| 217 | + "canvas_drawings": { |
| 218 | + "enabled": false, |
| 219 | + "type": "none", |
| 220 | + "description": "Disabled", |
| 221 | + "technology": "none", |
| 222 | + "params": {"draw_method": "none", "animation_loop": "none", "color_scheme": [], "responsiveness": "none", "interaction": "none"} |
| 223 | + }, |
| 224 | + "svg_animations": { |
| 225 | + "enabled": false, |
| 226 | + "type": "none", |
| 227 | + "description": "Disabled", |
| 228 | + "params": {"animation_method": "none", "path_morphing": "none", "stroke_animation": "none", "filter_effects": []} |
| 229 | + }, |
| 230 | + "composite_notes": "Terminal effects are intentionally limited to focus color, semantic status glyphs, progress redraws, and operation state. There are no decorative loops or time-based animations." |
| 231 | + } |
| 232 | +} |
0 commit comments