WIP almost done with track planning

This commit is contained in:
2026-03-06 15:00:15 -05:00
parent 2c90020682
commit 3b79f2a4e1
77 changed files with 1186 additions and 674 deletions

View File

@@ -0,0 +1,9 @@
# Track Progress Visualization
**Track ID:** track_progress_viz_20260306
**Status:** Planned
**See Also:**
- [Spec](./spec.md)
- [Plan](./plan.md)

View File

@@ -0,0 +1,9 @@
{
"id": "track_progress_viz_20260306",
"name": "Track Progress Visualization",
"status": "planned",
"created_at": "2026-03-06T00:00:00Z",
"updated_at": "2026-03-06T00:00:00Z",
"type": "feature",
"priority": "medium"
}

View File

@@ -1,16 +1,32 @@
# Implementation Plan: Track Progress Visualization (track_progress_viz)
# Implementation Plan: Track Progress Visualization (track_progress_viz_20260306)
## Phase 1: Research & Design
- [ ] Task: Analyze existing backend implementation
- [ ] Task: Design GUI/UX approach
- [ ] Task: Conductor - User Manual Verification
## Phase 1: Progress Calculation
- [ ] Task: Initialize MMA Environment
- [ ] Task: Implement progress calculation
- WHERE: src/gui_2.py or app_controller
- WHAT: Calculate % from ticket states
- HOW: Count completed vs total
## Phase 2: Implementation
- [ ] Task: Implement feature
- [ ] Task: Write tests
- [ ] Task: Conductor - User Manual Verification
## Phase 2: Visualization
- [ ] Task: Render progress bar
- WHERE: src/gui_2.py
- WHAT: Visual progress bar
- HOW: imgui.progress_bar
- [ ] Task: Render percentage text
- WHERE: src/gui_2.py
- WHAT: Numeric % display
- HOW: imgui.text
## Phase 3: Verification
- [ ] Task: Run test suite
- [ ] Task: Verify coverage
- [ ] Task: Conductor - Phase Completion Verification
## Phase 3: Additional Features
- [ ] Task: Implement ticket counts
- WHERE: src/gui_2.py
- WHAT: Completed/remaining counts
- HOW: Text display
- [ ] Task: Implement ETA
- WHERE: src/gui_2.py
- WHAT: Time estimate
- HOW: Average time per ticket
## Phase 4: Verification
- [ ] Task: Test progress display
- [ ] Task: Conductor - Phase Verification

View File

@@ -1,26 +1,21 @@
# Track Specification: Track Progress Visualization
# Track Specification: Track Progress Visualization (track_progress_viz_20260306)
## Overview
Progress bars and completion percentage for tracks/tickets.
Progress bars and percentage completion for active tracks and tickets. Better visualization of DAG execution state.
## Current State Audit
### Already Implemented
- Track/ticket status tracking
- DAG execution state
### Gaps to Fill
- No progress bars
- No completion %
## Goals
- Visual progress bars
- % completion
- Time estimates
## Architectural Constraints
- **Accurate State**: Progress MUST reflect actual ticket status.
- **Efficient Updates**: Status changes MUST trigger efficient UI updates.
## Functional Requirements
- Progress calculation
- Bar rendering
- ETA estimation
- **Progress Bar**: Visual bar showing % complete.
- **Percentage Text**: Display numeric % completion.
- **Ticket Breakdown**: Show completed/remaining counts.
- **ETA Estimate**: Calculate approximate completion time.
## Non-Functional Requirements
- Accurate state sync
## Acceptance Criteria
- [ ] Progress bar renders.
- [ ] Percentage accurate.
- [ ] Counts match actual tickets.
- [ ] ETA calculation works.
- [ ] Updates reflect state changes.