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
/work
/dist
/.ra-aid

View File

@ -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': '🧪',