This commit is contained in:
parent
f2ad833c6b
commit
053a70c602
|
|
@ -5,3 +5,4 @@ __pycache__/
|
|||
.env
|
||||
/work
|
||||
/dist
|
||||
/.ra-aid
|
||||
|
|
|
|||
|
|
@ -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': '🧪',
|
||||
|
|
|
|||
Loading…
Reference in New Issue