Task State Color Coding
Visual Reference
Based on Claude Code TUI design patterns.
Requirements
Task Status Icons & Colors
| State | Icon | Color | Example |
|---|
| Completed | ✓ | Green | ✓ #1 Create project structure |
| Pending | □ | Dim/Gray | □ #2 Implement views |
| Running | ● | Green | ● Developer Task "Fix streaming" |
| In-Progress | ◇ | Yellow/Orange | ◇ Swooping… |
Message Attribution Colors
- Agent role icon: Purple square
🟪 - Agent name: Cyan/Blue
- Model name: Dim gray
- Response time: Dim gray
Status Bar Colors
- User badge: Cyan background with dark text
- File counts: Green for additions, red for deletions
- Keyboard hints: Dim gray
Running Task Banner
- Background: Subtle highlight
- Spinner/icon: Animated or colored
- Format:
| 🔄 Task name (#issue) | Status |
ANSI Color Codes to Use
constcolors={green: "\x1b[32m",// completed, additionsyellow: "\x1b[33m",// in-progresscyan: "\x1b[36m",// agent names, user badgedim: "\x1b[2m",// pending, hintsred: "\x1b[31m",// errors, deletionsmagenta: "\x1b[35m",// role iconsreset: "\x1b[0m"}Acceptance Criteria
Task State Color Coding
Visual Reference
Based on Claude Code TUI design patterns.
Requirements
Task Status Icons & Colors
✓✓ #1 Create project structure□□ #2 Implement views●● Developer Task "Fix streaming"◇◇ Swooping…Message Attribution Colors
🟪Status Bar Colors
Running Task Banner
| 🔄 Task name (#issue) | Status |ANSI Color Codes to Use
Acceptance Criteria