Conversation
Rename the CurrentActivity.Fixing case to CurrentActivity.PR and revise the skill-to-activity classifier: move 'pr' out of Reviewing into the new PR bucket alongside 'babysit-pr', 'github', and 'fix-build'; add 'research' to Investigating and 'execute' to Executing; drop 'spec-management' from Planning and 'conflict' from the fixing group (now Working). Updates the Shared classifier, client labels/CSS classes, spec doc, and all tests. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 0d4095fd-8b57-498b-bbff-700ba6ccbf24
There was a problem hiding this comment.
Pull request overview
Renames the Fixing activity bucket to PR and updates skill classification across shared logic, UI, documentation, and tests.
Changes:
- Replaces
CurrentActivity.FixingwithPR. - Remaps PR, research, execution, and fallback skills.
- Updates UI labels, styling, specifications, and coverage.
Show a summary per file
| File | Description |
|---|---|
src/Shared/Types.fs |
Renames the activity and updates classification. |
src/Client/OverviewData.fs |
Updates canonical activity ordering. |
src/Client/OverviewBand.fs |
Adds the PR label and CSS class. |
src/Client/index.html |
Renames the activity color class. |
src/Tests/ActivityClassifierTests.fs |
Updates classifier expectations. |
src/Tests/OverviewDataTests.fs |
Updates aggregation expectations. |
src/Tests/OverviewBandE2ETests.fs |
Updates the empty-bucket probe. |
docs/spec/beads-overview-band.md |
Documents the PR bucket and mappings. |
Review details
- Files reviewed: 8/8 changed files
- Comments generated: 2
- Review effort level: Medium
The E2E suite only asserted the PR bucket was omitted when empty; the renamed PR label, activity-pr class and peach accent were never rendered or checked. Add a PR-skill agent to the fixture and assert its label, class and computed colour, and move Step 6's zero-count example to the still-empty Executing bucket. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 961396bf-e253-4449-b25e-fdc0e4551ccb
0101
enabled auto-merge (squash)
July 17, 2026 14:25
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.
Problem
The Overview band's agent activity breakdown had a
Fixingbucket that no longer matched how coding tools are actually used. Theprskill was classified asReviewing, and several skills (research,execute,babysit-pr,github) had no dedicated home, so PR-related work was spread across unrelated buckets.Changes
CurrentActivity.Fixing→CurrentActivity.PRinsrc/Shared/Types.fs, with a matching label (PR), CSS class (activity-pr), and canonical ordering update in the client (OverviewBand.fs,OverviewData.fs,index.html).Shared.Activity.classify):PR—babysit-pr,pr,github,fix-build(prmoved out ofReviewing;fix-buildmoved out of the old fixing group).Investigating— addsresearch.Executing— addsexecute.Planning— dropsspec-management.conflictnow falls through to theWorkingfallback.docs/spec/beads-overview-band.md(palette, skill table, and DU definition) to describe thePRbucket.ActivityClassifierTests.fs,OverviewDataTests.fs, andOverviewBandE2ETests.fsto cover the renamed bucket and the new skill mappings.Tests
Targeted unit tests to be validated by CI (
ActivityClassifierTests,OverviewDataTests).