From 053a70c6026ce814cd609b4dd61077fd5e7f363f Mon Sep 17 00:00:00 2001 From: AI Christianson Date: Wed, 11 Dec 2024 17:22:37 -0500 Subject: [PATCH] ux --- .gitignore | 1 + ra_aid/console/formatting.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6873fb1..8ba8814 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ __pycache__/ .env /work /dist +/.ra-aid diff --git a/ra_aid/console/formatting.py b/ra_aid/console/formatting.py index 4b026c5..fb11829 100644 --- a/ra_aid/console/formatting.py +++ b/ra_aid/console/formatting.py @@ -11,11 +11,11 @@ def print_stage_header(stage: str) -> None: Args: stage: The stage name to print (automatically formatted to Title Case) """ - # Define stage icons mapping + # Define stage icons mapping - using single-width emojis to prevent line wrapping issues icons = { 'research stage': '๐Ÿ”Ž', 'planning stage': '๐Ÿ“', - 'implementation stage': '๐Ÿ› ๏ธ', + 'implementation stage': '๐Ÿ”ง', # Changed from ๐Ÿ› ๏ธ to prevent wrapping 'task completed': 'โœ…', 'debug stage': '๐Ÿ›', 'testing stage': '๐Ÿงช',