improvements to Deep Review UX, desktop devtools, and session management fixes.#537
Merged
limityan merged 4 commits intoGCWing:mainfrom Apr 26, 2026
Merged
improvements to Deep Review UX, desktop devtools, and session management fixes.#537limityan merged 4 commits intoGCWing:mainfrom
limityan merged 4 commits intoGCWing:mainfrom
Conversation
…essage Include lastActiveAt in session sort priority so that sending a message moves the session to the top of the workspace session list. Priority: lastActiveAt > lastFinishedAt > createdAt
Add a `devtools` Cargo feature to the desktop app that enables: - Native webview DevTools (Ctrl/Cmd+Shift+J) - Interactive element inspector (Ctrl/Cmd+Shift+I) with hover highlight, tooltip, and click-to-capture for computed styles, CSS variables, box model, colors, and attributes The feature is automatically enabled in dev builds and release-fast profile builds, but never in release profile builds intended for end users. All debug code is conditionally compiled via `#[cfg]` to ensure zero overhead in production. New files: - src/apps/desktop/src/api/debug_api.rs - src/web-ui/src/infrastructure/debug/mainWindowInspector.ts - src/web-ui/src/infrastructure/debug/useDebugInspector.ts Updated: - Cargo.toml, package.json, theme.rs, lib.rs, App.tsx, AGENTS.md
…ynamic layout - Group remediation items by priority (must_fix/should_improve/needs_decision/verification) - Add per-group select-all toggle with colored headers - Add hint text explaining read-only default behavior - Increase overall size for better high-DPI visibility - Use ResizeObserver to dynamically adjust body padding and prevent content overlap - Add ungrouped locale key for fallback items Generated with BitFun Co-Authored-By: BitFun
…ards and detail panel - In TaskToolDisplay, show reviewer role name, description, and responsibilities instead of the raw prompt for built-in review-team subagents. - In TaskDetailPanel, add a reviewer context section with role info, falling back to the raw prompt only for non-reviewer tasks. - Add ReviewerContext interface and getReviewerContextBySubagentId() helper in reviewTeamService (already committed in previous change). - Add locale keys: reviewerContextLabel (en/zh-CN/zh-TW). - Add corresponding SCSS styles for both card and panel views. Generated with BitFun Co-Authored-By: BitFun
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
This PR includes improvements to Deep Review UX, desktop devtools, and session management fixes.
Changes
Deep Review Improvements
Desktop Devtools
devtoolsCargo feature enabling:Ctrl/Cmd+Shift+J)Ctrl/Cmd+Shift+I) with hover highlight, tooltip, and computed styles/CSS variables/box model captureSession Management Fixes
lastActiveAtto auto-promote when user sends a message