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