[Bugfix #454] Fix dashboard progress for ASPIR builders#455
Merged
waleedkadous merged 1 commit intomainfrom Feb 20, 2026
Merged
[Bugfix #454] Fix dashboard progress for ASPIR builders#455waleedkadous merged 1 commit intomainfrom
waleedkadous merged 1 commit intomainfrom
Conversation
…shboard progress
waleedkadous
added a commit
that referenced
this pull request
Feb 20, 2026
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
Fixes #454
Root Cause
calculateProgress()inoverview.tsonly used the nuancedcalculateSpirProgress()forspirandspiderprotocols, but notaspir. ASPIR shares the same phase structure (specify → plan → implement → review) and gates, so it should use the same calculator with plan-phase tracking.Without this fix, ASPIR builders fall through to
calculateEvenProgress()which gives flat percentage splits (20%/40%/60%/80%) without plan-phase granularity in the implement phase.Note: The
started_atfield for elapsed time was already fixed in Bugfix #388. It is correctly set increateInitialState()and parsed byparseStatusYaml().Fix
Added
'aspir'to the protocol check incalculateProgress()so ASPIR usescalculateSpirProgress().Test Plan