feat(progress): remove visual progress bars and iteration counters from messages#557
Merged
zbigniewsobiecki merged 1 commit intodevfrom Feb 26, 2026
Merged
Conversation
Collaborator
|
✨ On it — checking the feat/remove-progress-bar-from-messages branch |
nhopeatall
approved these changes
Feb 26, 2026
Collaborator
nhopeatall
left a comment
There was a problem hiding this comment.
LGTM — Clean removal of progress bars and iteration counters from user-facing messages. All call sites updated consistently, createProgressBar helper properly removed, tests updated with both positive assertions (agent label present) and negative assertions (no progress bar/iteration patterns). The ProgressContext.iteration/maxIterations fields are correctly preserved since they still serve the LLM prompt context in progressModel.ts.
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
Removes the
[██░░░░░░░░]ASCII progress bars and16% (iteration 11/70)counters from user-facing progress messages posted to Trello/JIRA cards and GitHub PR comments.createProgressBar()helper function fromsrc/config/statusUpdateConfig.tsformatStatusMessage(agentType)— removediterationandmaxIterationsparams; no longer renders progress bar lineformatGitHubProgressComment(headerMessage, agentType)— removediterationandmaxIterationsparams; removed**Progress:**bar line; simplified footer from<sub>Last updated: iteration N · type</sub>to<sub>type</sub>GitHubProgressPoster.update()signature to match (removed iteration/maxIterations params)ProgressMonitorfallback call and GitHub poster call to use new signaturesPROGRESS_SYSTEM_PROMPTinprogressModel.tsTest plan
tests/unit/config/statusUpdateConfig.test.ts— updated to assert no progress bars or iteration counters appear; removed the entireprogress bar renderingdescribe blocktests/unit/backends/githubPoster.test.ts— updated call signatures (removed iteration/maxIterations args)tests/unit/backends/progress.test.ts— no changes needed (mock assertions usedtoHaveBeenCalled()without checking args)Card: https://trello.com/c/699f45849b11747c65f86a7d
🤖 Generated with Claude Code