This repository was archived by the owner on Apr 21, 2026. It is now read-only.
feat(statusline): add 👤 N @you mention/review-request count#15
Open
serenakeyitan wants to merge 2 commits intomainfrom
Open
feat(statusline): add 👤 N @you mention/review-request count#15serenakeyitan wants to merge 2 commits intomainfrom
serenakeyitan wants to merge 2 commits intomainfrom
Conversation
Fixes #14 Adds a 👤 N @you segment between the ⚠ need-you warning and the type counts. @you counts new notifications where reason ∈ {mention, review_requested, assign} — the everyday "someone's waiting on me" signal that previously hid inside the aggregate new count. Before: /breeze: ⚠ 0 need-you · 93 PRs · 87 issues · 2 discussions After: /breeze: 👤 10 @you · 93 PRs · 87 issues · 2 discussions ⚠ need-you stays reserved for breeze:human-escalated items (rare + urgent). @you covers the common + actionable case. Hidden when zero. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
⚠ need-you is the canonical escalation signal. Hiding it at 0 made the line look inconsistent (you couldn't tell if it was "no escalations" or "breeze is broken"). Always render it — seeing "0" is the reassurance that nothing is on fire. 👤 @you stays hidden at 0 (informational, not a status). Before (when human=0): /breeze: 👤 10 @you · 94 PRs · ... After: /breeze: ⚠ 0 need-you · 👤 10 @you · 94 PRs · ... Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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
Adds a `👤 N @you` segment to the `/breeze` statusline between `⚠ need-you` and the type counts. @you counts `new` notifications where `reason ∈ {mention, review_requested, assign}` — the everyday "someone's waiting on me" signal that was previously hidden inside the aggregate new count.
Before:
```
/breeze: ⚠ 0 need-you · 93 PRs · 87 issues · 2 discussions
```
After (hidden when zero):
```
/breeze: 👤 10 @you · 93 PRs · 87 issues · 2 discussions
```
Fixes #14
Why two numbers
One number can't carry both signals.
Test plan
🤖 Generated with Claude Code