feat(progress): add agent-specific emojis and labels to progress update headers#500
Merged
zbigniewsobiecki merged 1 commit intodevfrom Feb 23, 2026
Merged
Conversation
Collaborator
|
🔍 Reviewing PR... |
nhopeatall
approved these changes
Feb 23, 2026
Collaborator
nhopeatall
left a comment
There was a problem hiding this comment.
LGTM — Clean, focused change that replaces the generic "I'm making progress" header with agent-specific emojis and labels.
The implementation is well-structured: AGENT_LABELS map and getAgentLabel() are correctly co-located with the existing INITIAL_MESSAGES map in agentMessages.ts, both consumers (progressModel.ts for LLM prompt context, statusUpdateConfig.ts for template fallback) are updated consistently, and the agent type keys match exactly between AGENT_LABELS and INITIAL_MESSAGES.
All CI checks pass. Tests cover all 9 agent types plus the unknown fallback. No issues found.
Merged
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
AGENT_LABELSmap andgetAgentLabel()helper tosrc/config/agentMessages.tswith agent-specific emojis and labels (e.g.,implementation→🧑💻 Implementation Update,review→🔍 Code Review Update)PROGRESS_SYSTEM_PROMPTandformatProgressUserPrompt()insrc/backends/progressModel.tsto inject the agent-specific header into the LLM prompt contextformatStatusMessage()insrc/config/statusUpdateConfig.tsto use the newgetAgentLabel()helper instead of the generic"**I'm making progress**"headergetAgentLabel()(all 9 known agents + unknown fallback) and update existing assertions to match new headersCard: https://trello.com/c/tAGmOAKD/87-where-we-say-progress-update-1-min-lets-make-this-header-more-engaging-and-also-signify-which-agent-is-running-for-example-%F0%9F%A7%91%F0%9F%92%BB-im
Test plan
getAgentLabel()tests cover all 9 agent types + unknown fallbackformatStatusMessage()assertions updated to verify new agent-specific headers🧑💻 Implementation Update,🔍 Code Review Update, etc. instead of genericI'm making progress🤖 Generated with Claude Code