This commit is contained in:
AI Christianson 2024-12-11 17:22:37 -05:00
parent f2ad833c6b
commit 053a70c602
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ __pycache__/
.env .env
/work /work
/dist /dist
/.ra-aid

View File

@ -11,11 +11,11 @@ def print_stage_header(stage: str) -> None:
Args: Args:
stage: The stage name to print (automatically formatted to Title Case) 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 = { icons = {
'research stage': '🔎', 'research stage': '🔎',
'planning stage': '📝', 'planning stage': '📝',
'implementation stage': '🛠️', 'implementation stage': '🔧', # Changed from 🛠️ to prevent wrapping
'task completed': '', 'task completed': '',
'debug stage': '🐛', 'debug stage': '🐛',
'testing stage': '🧪', 'testing stage': '🧪',