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': '๐Ÿงช',