Skip to content

fix: remove operator digest panel, bump v1.3.1#242

Merged
charlesrhoward merged 1 commit intomainfrom
fix/remove-operator-digest
Mar 27, 2026
Merged

fix: remove operator digest panel, bump v1.3.1#242
charlesrhoward merged 1 commit intomainfrom
fix/remove-operator-digest

Conversation

@charlesrhoward
Copy link
Copy Markdown
Contributor

@charlesrhoward charlesrhoward commented Mar 27, 2026

Summary

  • Remove the Daily operator digest HUD panel entirely (SoloOperatorPanel + all references)
  • Bump version to 1.3.1
  • Add post-merge release reminder to CLAUDE.md so runtime changes always ship with a DMG build

Test plan

🤖 Generated with Claude Code


Note

Low Risk
Low risk: removes a renderer-only HUD panel and bumps the app version, with no changes to core agent/terminal logic.

Overview
Removes the Daily operator digest HUD panel by deleting SoloOperatorPanel and stripping its state/conditional layout from HUD.tsx, leaving only StatsBar, AgentCard, CelebrationDeck, and ToastStack in the overlay.

Bumps the app version to 1.3.1 and updates CLAUDE.md with a post-merge reminder/checklist to build a DMG and create a GitHub release whenever runtime code changes.

Written by Cursor Bugbot for commit 4a9106f. This will update automatically on new commits. Configure here.

Remove the Daily operator digest HUD panel entirely — it was cluttering the
office view. Add post-merge release reminder to CLAUDE.md so runtime changes
always ship with a version bump + DMG build.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@vercel
Copy link
Copy Markdown

vercel bot commented Mar 27, 2026

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
agent-space-web Ready Ready Preview, Comment Mar 27, 2026 8:27pm

Request Review

@charlesrhoward charlesrhoward enabled auto-merge (squash) March 27, 2026 20:27
@charlesrhoward charlesrhoward merged commit a71fe51 into main Mar 27, 2026
7 checks passed
@charlesrhoward charlesrhoward deleted the fix/remove-operator-digest branch March 27, 2026 20:28
Copy link
Copy Markdown

@cursor cursor bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes and found 1 potential issue.

Fix All in Cursor

Bugbot Autofix is ON, but it could not run because the branch was deleted or merged before autofix could start.

export function HUD() {
const [digestOpen, setDigestOpen] = useState(true)
const hasSelectedAgent = useAgentStore((s) => s.selectedAgentId !== null)

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Persisted non-default focus mode now permanently stuck

Medium Severity

Removing SoloOperatorPanel eliminates the only UI that calls setOfficeFocusMode, but officeFocusMode is still persisted in localStorage and actively used by Office.tsx to filter which agents appear in the 3D scene via filterAgentsForOfficeFocus. Existing users who previously set the mode to 'show-errors' or 'changed-files' will be permanently stuck with that filter — potentially hiding all agents from the office view — with no way to change it back.

Fix in Cursor Fix in Web

Copy link
Copy Markdown

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 4a9106fea3

ℹ️ About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".

Comment on lines 6 to 7
export function HUD() {
const [digestOpen, setDigestOpen] = useState(true)
const hasSelectedAgent = useAgentStore((s) => s.selectedAgentId !== null)

return (
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Restore a way to reset office focus mode

Removing the digest panel here also removes the only UI path that calls setOfficeFocusMode, while persisted non-default modes are still loaded (src/renderer/store/runHistory.ts loads 'show-errors'/'changed-files') and still applied to desk filtering (src/renderer/scene/Office.tsx uses officeFocusMode in filterAgentsForOfficeFocus). For returning users who previously chose one of those modes, the office can appear empty or incomplete with no in-app way to switch back to follow-active, effectively leaving them stuck unless they manually clear local storage.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant