feat: animated progress display for parallel task execution#93
Merged
rileyhilliard merged 1 commit intomainfrom Jan 13, 2026
Merged
feat: animated progress display for parallel task execution#93rileyhilliard merged 1 commit intomainfrom
rileyhilliard merged 1 commit intomainfrom
Conversation
- Add ParallelProgress component with braille spinner animation - Color cycling through gradient (pink -> purple -> cyan -> green) - In-place terminal updates using ANSI cursor movement - Running tasks animate, completed tasks show final symbol in place - Add syncing vs executing state distinction for clearer progress - Document parallel execution feature in README and configuration.md Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
|
Caution Review failedThe pull request is closed. WalkthroughThis PR introduces parallel task execution with animated progress visualization. Changes include configuration documentation, a new UI component for real-time task status rendering, orchestration initialization logic, and refined task state transitions distinguishing syncing and executing phases. Changes
Sequence DiagramsequenceDiagram
participant Orchestrator
participant Worker
participant OutputManager
participant ParallelProgress UI
Orchestrator->>OutputManager: InitTasks([task names])
OutputManager->>ParallelProgress UI: InitTasks([task names])
ParallelProgress UI->>ParallelProgress UI: Mark all as Pending
Orchestrator->>Worker: Execute task
Worker->>OutputManager: TaskSyncing(name, host)
OutputManager->>ParallelProgress UI: TaskSyncing(name, host)
ParallelProgress UI->>ParallelProgress UI: Update task to Syncing state
Worker->>Worker: ensureSync (wait for lock)
Worker->>OutputManager: TaskExecuting(name)
OutputManager->>ParallelProgress UI: TaskExecuting(name)
ParallelProgress UI->>ParallelProgress UI: Update task to Running state
Worker->>Worker: Run task
Worker->>OutputManager: TaskCompleted(name, success)
OutputManager->>ParallelProgress UI: TaskCompleted(name, success)
ParallelProgress UI->>ParallelProgress UI: Update task to Passed/Failed
Estimated code review effort🎯 4 (Complex) | ⏱️ ~45 minutes Possibly related issues
Possibly related PRs
✨ Finishing touches
📜 Recent review detailsConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro 📒 Files selected for processing (11)
Comment |
2 tasks
5 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Changes
internal/ui/parallel_progress.go- Multi-line animated progress componentinternal/parallel/output.go- Integrates animated progress for TTY modeTest plan
🤖 Generated with Claude Code
Summary by CodeRabbit
New Features
--stream,--verbose,--quiet,--fail-fast,--max-parallel,--dry-run,--local, and--no-logs.Documentation
✏️ Tip: You can customize this high-level summary in your review settings.