36 KiB
Qwen Code Electron Desktop Implementation Plan
This plan tracks the incremental MVP implementation for the Electron desktop
client described in
docs/design/qwen-code-electron-desktop/qwen-code-electron-desktop-architecture.md.
The architecture document remains the source of truth; this file records
execution order, verification, decisions, and remaining work.
Ground Rules
- Use Electron only; do not introduce Tauri.
- Keep Electron main thin: windows, native IPC, local server lifecycle, and ACP process lifecycle.
- Reuse Qwen Code ACP, core configuration/auth/session/permission behavior, and shared web UI surfaces where practical.
- Renderer must use
nodeIntegration: false, context isolation, and a preload whitelist. - The local server must bind only
127.0.0.1, use a random token, and reject unauthorized requests. - Every completed slice must leave targeted verification and a conventional commit.
Codex Alignment Progress
Completed Slice: Inline Command Approval Cards
Status: completed in iteration 9.
Goal: make command approvals and ask-user prompts part of the conversation timeline instead of a detached permission strip or protocol-like event row.
User-visible value: users see what command/action needs attention in the same reading flow as the agent plan, tool activity, and changed-files summary. The main conversation can answer "what needs me now?" without exposing ACP request plumbing.
Expected files:
packages/desktop/src/renderer/components/layout/ChatThread.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/stores/chatStore.tspackages/desktop/src/renderer/stores/chatStore.test.tspackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/inline-command-approval-cards.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- Pending command permissions render as compact inline conversation cards with command/tool title, optional command input, status, and approval/deny actions.
- Pending ask-user questions render inline with question text, options, and Cancel/Submit actions.
- The old permission strip is no longer rendered as a separate surface between the timeline and composer.
- Permission and ask-user server messages no longer append generic
Permission requestedorQuestion requestedevent rows to the timeline. - Approval controls keep stable accessible labels and continue to send the same permission response.
- The composer remains docked and usable while a pending approval card is visible; changed-files summary still appears after the request resolves.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/stores/chatStore.test.ts src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, send from the composer, assert the pending command approval appears as an inline conversation card with the fake command title/input and no separate permission strip, approve it, assert the card resolves away and the changed-files summary appears, then continue the existing review, settings, and terminal smoke path.
- E2E assertions: inline approval card is present before approval, has compact geometry within the chat timeline, exposes approval/deny actions, does not render protocol request events, and console errors/failed local requests are absent.
- Diagnostic artifacts: CDP screenshots, inline approval JSON, conversation
summary JSON, Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained inline card density, action hierarchy, and conversation-first placement;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The prototype keeps approvals and task state in the reading flow, so this slice removes the separate permission strip instead of duplicating the same action in two places.
- The backing permission response contract remains unchanged; only renderer placement and noise filtering change.
- The inline card intentionally shows only the tool title/kind/status and a
string or
commandpreview from tool input; request IDs and session IDs stay out of the main conversation.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/stores/chatStore.test.ts src/renderer/components/layout/WorkspacePage.test.tsxpassed with 11 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-47-26-492Z/.
Next work:
- Continue rich conversation primitives by improving tool-call cards with file-reference chips, copy/retry/open actions, and clearer completed/failed command output summaries.
- Run another prototype fidelity pass on message density and assistant action rows now that approvals, changed files, terminal, review, and settings have all moved into supporting surfaces.
Completed Slice: Settings Information Architecture
Status: completed in iteration 8.
Goal: make Settings read like product settings instead of a runtime debug panel by grouping account, model provider, permission, tools, terminal, appearance, and diagnostics controls.
User-visible value: users can find model/API key and permission controls without seeing server URLs, Node versions, ACP state, active session IDs, or other diagnostics in the default settings view. Advanced diagnostics remain available when needed.
Expected files:
packages/desktop/src/renderer/components/layout/SettingsPage.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/settings-information-architecture.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- Settings defaults to product sections: Account, Model Providers, Permissions, Tools & MCP, Terminal, Appearance, and Advanced Diagnostics.
- The default settings view does not visibly expose server URL, Node version, ACP status, health milliseconds, settings path, or active session IDs.
- Model, Base URL, API key, OAuth, Save, and permission-mode controls remain reachable from the settings page.
- API key state is shown as configured/missing without rendering saved secret values in the DOM.
- Advanced Diagnostics can be opened explicitly and then shows runtime, session, and config diagnostic fields.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx src/renderer/stores/settingsStore.test.ts - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, complete the existing composer, review, and commit path, open Settings, assert product sections are visible while diagnostics are hidden, edit model/Base URL/API key, save, assert the saved model appears without secret leakage, open Advanced Diagnostics, and assert runtime diagnostics are available only there.
- E2E assertions: settings replaces chat/review/terminal, default settings text excludes server URL, Node, ACP, active session ID, health ms, settings path, and the fake API key; Advanced Diagnostics renders the runtime diagnostics after an explicit click; console errors and failed local requests are absent.
- Diagnostic artifacts: CDP screenshots, settings layout JSON, advanced
diagnostics JSON, Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained product settings hierarchy and lower-noise surfaces;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The prototype treats Settings as supporting product chrome rather than a main debug dashboard, so diagnostics move behind an explicit Advanced action.
- This slice does not change settings persistence contracts; it reorganizes the renderer around the existing server/settings store APIs and keeps secrets out of rendered text.
- Settings remains a full workbench page for now, consistent with the previous verified behavior; this slice focuses on information architecture inside the page rather than converting Settings to a modal or drawer.
- The first CDP run reached Advanced Diagnostics but failed on a harness-only case-sensitive label assertion because diagnostic labels are rendered uppercase by CSS. The harness now asserts diagnostics case-insensitively.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx src/renderer/stores/settingsStore.test.tspassed with 8 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-40-11-622Z/.
Next work:
- Continue rich conversation primitives by rendering command approvals and tool activity inline in the timeline rather than only in the permission strip.
- Tighten settings density and responsive behavior further after the next conversation-first fidelity pass.
Completed Slice: Conversation Changed-Files Summary and Protocol Noise Cleanup
Status: completed in iteration 7.
Goal: make the main conversation timeline feel like a product task flow by hiding ACP/session protocol noise and surfacing Git changes inline.
User-visible value: users should not see internal session IDs or protocol stop reasons in the main reading flow, and they can discover changed files from the conversation itself instead of starting from the topbar.
Expected files:
packages/desktop/src/renderer/components/layout/ChatThread.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/stores/chatStore.tspackages/desktop/src/renderer/stores/chatStore.test.tspackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/conversation-changes-summary.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- The chat timeline no longer renders
Connected to <session id>orTurn complete: <stop reason>event rows. - Connection state remains available in the compact header/topbar rather than as protocol prose in the timeline.
- When the active project has Git changes, the conversation shows a compact changed-files summary with file names, staged/unstaged/untracked state, and addition/deletion totals.
- The inline summary opens the review drawer while keeping the conversation mounted.
- The summary hides itself when there are no changed files.
Verification:
- Unit/component test commands:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/stores/chatStore.test.ts src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, create a composer-first thread, approve the fake command, assert protocol IDs and stop reasons are absent from the body text, assert the conversation changed-files summary is present, open review from that summary, then continue through discard cancel, stage, commit, settings, and terminal paths.
- E2E assertions: the body text does not contain
Connected to session-e2e,session-e2e-1, orTurn complete; the inline summary reports the fake dirty files and opens the review drawer; console errors and failed local requests are absent. - Diagnostic artifacts: CDP screenshots, conversation summary JSON, review
layout JSON, Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained inline cards and conversation density;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The renderer still tracks connection state in
ChatState.connectionand the compact header/topbar, butconnectedandmessage_completeprotocol messages no longer create timeline rows. - The changed-files summary is derived from the active project Git diff instead of fake ACP payloads, so it appears whenever the review drawer would have meaningful content and disappears after commit/clean states.
- The inline summary opens the existing review drawer rather than introducing a
separate review surface, keeping the first viewport conversation-first and
consistent with
home.jpg.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/stores/chatStore.test.ts src/renderer/components/layout/WorkspacePage.test.tsxpassed with 9 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-28-04-569Z/.
Next work:
- Continue rich conversation primitives by rendering command approvals and tool activity as inline cards instead of relying mostly on the permission strip.
- Improve settings information architecture so runtime diagnostics move under Advanced and model/API key controls are reachable as product settings.
Completed Slice: Review Safety Terminology and Discard Confirmation
Status: completed in iteration 6.
Goal: make the review drawer use Git-safe language and require explicit confirmation before destructive discard operations.
User-visible value: users can review changed files without seeing ambiguous
Accept/Revert controls, and high-risk discard actions cannot be triggered
with one accidental click. This keeps review as a compact supporting surface
while preserving the conversation-first workbench shown in home.jpg.
Expected files:
packages/desktop/src/renderer/components/layout/ReviewPanel.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/review-safety.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- Review drawer controls use Stage/Discard terminology instead of Accept/Revert.
- Staged hunks/files show a staged state, and staging controls are disabled when already staged.
- Discard all/file/hunk actions open a confirmation UI that names the target, explains the local-change risk, and supports Cancel and confirmed discard.
- Canceling a discard leaves the Git worktree and review counts unchanged.
- Committing staged changes remains available from the same compact drawer.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, create a composer-first thread, approve the fake command, open Changes, verify Stage/Discard language, initiate Discard All, cancel it, assert the workspace still has changes, stage all changes, commit, and continue through settings and terminal paths.
- E2E assertions:
Accept/Revertlabels are absent from the main review drawer; discard confirmation appears and can be canceled; modified/untracked counts remain after cancel; staged counts update after Stage All; console errors and failed local requests are absent. - Diagnostic artifacts: CDP screenshots, review layout JSON, discard
confirmation JSON, Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained compact review actions, danger hierarchy, and confirmation wording;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The underlying server endpoint remains named
revertfor now; this slice changes product-facing language toDiscardwhile keeping the existing reviewed backend contract. - Confirmation stays inside the review drawer rather than using a native dialog so the CDP harness can assert the user path deterministically and the first viewport remains desktop-native.
- The first CDP run exposed a harness-only assertion mismatch: review counts render as definition rows while the topbar renders the combined dirty count. The harness now asserts both surfaces through their actual UI shapes.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsxpassed with 6 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-18-14-754Z/.
Next work:
- Continue conversation timeline fidelity by hiding session/protocol IDs such
as
Connected to session-e2e-1from the main user flow. - Add inline changed-file summary cards in the conversation that open the review drawer without forcing users to start from the topbar.
Completed Slice: Terminal Attach-to-Composer Workflow
Status: completed in iteration 5.
Goal: change terminal output follow-up from an immediate Send to AI action
into an explicit attach-to-composer flow, so users can review and edit command
output before deciding whether to send it to the agent.
User-visible value: terminal output becomes contextual material in the task
composer rather than a hidden second send path that can unexpectedly trigger a
new agent turn. This keeps the conversation-first workbench aligned with
home.jpg while preserving the terminal as a supporting tool.
Expected files:
packages/desktop/src/renderer/App.tsxpackages/desktop/src/renderer/api/websocket.tspackages/desktop/src/renderer/components/layout/WorkspacePage.tsxpackages/desktop/src/renderer/components/layout/TerminalDrawer.tsxpackages/desktop/src/renderer/components/layout/SidebarIcons.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/terminal-drawer.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- The expanded Terminal action is labeled as attaching output to the composer, not sending directly to AI.
- Attaching terminal output appends a bounded terminal transcript to the existing composer text and shows a clear success notice.
- The attach action works whenever terminal output exists, including before a thread is selected, and does not require or write to the session WebSocket.
- The user must still click Send from the composer before a new agent turn is created.
- Copy, clear, kill, run command, stdin, expand, and collapse behavior is unchanged.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, create a composer-first thread, approve the fake command, review and commit changes, expand Terminal, run stdout and stdin commands, attach the resulting output to the composer, assert no fake ACP follow-up happens until Send is clicked, then send the composer text and approve the fake command request.
- E2E assertions: attach button is present and
Send to AIis absent; composer contains the terminal transcript after attach; terminal notice confirms the attachment; the output stays editable in the composer; console errors and failed local requests are absent. - Diagnostic artifacts: CDP screenshots, terminal layout JSON, composer attach
JSON, Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained terminal action wording and compact composer-centric hierarchy;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The prototype keeps the composer as the task control center, so terminal output should land there for user review rather than bypassing it.
- This slice intentionally preserves the transcript formatting and bounding logic from the existing send path, but changes the destination from WebSocket send to composer draft text.
- The WebSocket helper no longer needs a separate terminal-output send method because the final send is the same explicit user-message path as any other composer submit.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsxpassed with 5 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-08-17-022Z/.
Next work:
- Improve review safety by replacing
Accept/Revertterminology with Stage/Unstage/Discard and confirming destructive discard paths. - Continue prototype fidelity work in the conversation timeline by hiding protocol/session noise and adding inline changed-file summaries.
Completed Slice: Collapsed Terminal Status Strip Alignment
Status: completed in iteration 4.
Goal: collapse the terminal into a compact bottom status strip by default, so the first viewport keeps the conversation as the dominant surface while still making terminal access discoverable.
User-visible value: users see the active project, conversation, composer, and Git/review controls without the terminal permanently consuming a large block of height. Terminal commands remain available through an explicit expand/collapse control.
Expected files:
packages/desktop/src/renderer/components/layout/WorkspacePage.tsxpackages/desktop/src/renderer/components/layout/TerminalDrawer.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/terminal-drawer.mddesign/qwen-code-electron-desktop-implementation-plan.md
Acceptance criteria:
- The default workbench renders a compact terminal strip rather than a full terminal drawer.
- The strip shows project/status context and an accessible Expand Terminal control.
- Expanding the terminal reveals command, stdin, output, copy, send, clear, and kill controls without replacing the conversation.
- Collapsing the terminal after use hides the large output region and restores first-viewport conversation dominance.
- Settings still replaces chat/review/terminal as before.
- Existing terminal run, stdin, copy, kill, clear, and send-to-AI behavior keeps working.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, assert the first viewport terminal strip is collapsed, open the fake Git project, send from the composer, approve the fake command, review and commit changes, open settings, return to conversation, expand Terminal, run commands including stdin, send output to the fake ACP session, collapse Terminal again, and assert the final layout returns to a compact strip.
- E2E assertions: initial and completed terminal heights stay compact; expanded terminal height stays supporting and docked; conversation remains wider and taller than terminal by default; console errors and failed local requests are absent.
- Diagnostic artifacts: CDP screenshots, collapsed/expanded layout JSON,
Electron log, summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained bottom strip hierarchy, compact controls, and conversation-first density;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- This slice follows
home.jpgover the older always-visible terminal panel: terminal remains a supporting workbench tool, not a permanent third major viewport region. - The terminal strip remains in the workbench rather than moving into settings or review, because running commands in the active project is part of the coding-agent loop.
- The existing Send to AI behavior is preserved for this slice; changing that to attach output to the composer is still the next terminal workflow refinement.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsxpassed with 4 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T17-00-08-461Z/.
Next work:
- Rename terminal Send to AI into an attach-to-composer flow so command output does not unexpectedly trigger another agent turn.
- Continue review safety work by replacing Accept/Revert terminology with Stage/Unstage/Discard and adding confirmations for destructive discard paths.
Completed Slice: Review Drawer and Compact Topbar Alignment
Status: completed in iteration 3.
Goal: make review a supporting drawer that opens beside the conversation, and replace the heavy topbar tabs with compact icon-led workbench actions.
User-visible value: the first viewport keeps the conversation as the main
workspace while still exposing changed files, settings, Git refresh, and status
from a slim topbar that better matches home.jpg.
Expected files:
packages/desktop/src/renderer/components/layout/WorkspacePage.tsxpackages/desktop/src/renderer/components/layout/TopBar.tsxpackages/desktop/src/renderer/components/layout/ReviewPanel.tsxpackages/desktop/src/renderer/components/layout/SidebarIcons.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/review-drawer-topbar.md
Acceptance criteria:
- Opening Changes renders
ChatThreadandReviewPaneltogether; review no longer replaces the conversation. - The default first viewport has no review drawer, and the conversation spans the workbench.
- Topbar action controls are compact icon buttons with accessible labels and tooltips; the previous Chat/Changes/Settings segmented text tabs are removed.
- The topbar title remains the active thread/project identity instead of
changing to
Changeswhen review opens. - Settings still opens as a full workbench page and hides the terminal.
- Existing review actions, comments, staging, and commit workflow keep working.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data and fake ACP, open the fake Git project, send from the project composer, approve the fake command, open Changes from the compact topbar action, review and comment on the README diff while chat remains mounted, stage all changes, commit, return to chat, open settings, and run terminal paths.
- E2E assertions: default layout has no review drawer; opening Changes creates a drawer without unmounting chat; drawer width stays supporting rather than dominant; topbar has compact action buttons; console errors and failed local requests are absent.
- Diagnostic artifacts: CDP screenshots, layout JSON, DOM text, Electron log,
summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor prototype-constrained topbar density and drawer hierarchy;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- This slice deliberately keeps Settings as a full page because that behavior was already implemented and verified; only review moves into the supporting drawer pattern.
- The review drawer remains closed by default to preserve the first viewport
emphasis from
home.jpg; Git dirty count and the Changes action are the visible entry points. frontend-designguidance is applied with the project prompt constraint that the prototype wins: compact utility controls, restrained borders, and no new decorative art direction.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsxpassed with 4 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed after launch through real Electron over CDP.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T16-51-33-353Z/.
Next work:
- Improve review terminology and safety by replacing
Accept/Revertwith Stage/Unstage/Discard language and adding confirmations for destructive discard paths. - Collapse the terminal into a status strip by default so the first viewport
gets closer to
home.jpg.
Completed Slice: Composer-First Thread Creation Alignment
Status: completed in iteration 2.
Goal: let a user open a project and type immediately, without first learning that they must create or select a session.
User-visible value: the default path becomes
Open project -> type request -> agent works; the composer explains the active
project context and creates the backing desktop session on first send.
Expected files:
packages/desktop/src/renderer/App.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.tsxpackages/desktop/src/renderer/components/layout/ChatThread.tsxpackages/desktop/src/renderer/components/layout/WorkspacePage.test.tsxpackages/desktop/src/renderer/styles.csspackages/desktop/scripts/e2e-cdp-smoke.mjs.qwen/e2e-tests/electron-desktop/composer-first-thread-creation.md
Acceptance criteria:
- Composer is enabled whenever a project is active, even when no session is selected.
- With no project, composer remains disabled and gives a clear disabled reason.
- First send from a project with no selected session creates a desktop session, sends the message, clears the composer, and publishes the created thread.
- Existing explicit
New Threadbehavior continues to work. - The composer visibly carries compact project/branch, permission, and model context so it reads as the task control center rather than a plain textarea.
Entersend andShift+Enternewline behavior are preserved.
Verification:
- Unit/component test command:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsx - Build/typecheck/lint commands:
cd packages/desktop && npm run typecheck && npm run lint && npm run build - Real Electron harness:
cd packages/desktop && npm run e2e:cdp - Harness path:
packages/desktop/scripts/e2e-cdp-smoke.mjs - E2E scenario steps: launch real Electron with isolated HOME/runtime/user-data
and fake ACP, open the fake Git project, type a prompt into the project-scoped
composer without clicking
New Thread, send it, approve the fake command request, and assert the created thread/message/response appear. - E2E assertions: first viewport landmarks stay present; composer is enabled
after project open; no
New Threadclick is required; fake ACP response is received; console errors and failed local requests are absent. - Diagnostic artifacts: CDP screenshots, layout JSON, DOM text, Electron log,
summary JSON under
.qwen/e2e-tests/electron-desktop/artifacts/. - Required skills applied:
frontend-designfor composer layout/control hierarchy with the prototype as the strict visual contract;electron-desktop-devfor renderer changes and real Electron CDP verification.
Notes and decisions:
- The prototype wins over earlier tab/dashboard guidance. This slice keeps the conversation as the default surface and upgrades the bottom composer without opening review, terminal, or settings by default.
- Model and permission controls are compact context controls in the composer. They use existing session runtime state when available and safe fallback labels before a session exists; changing values still requires a live session until the server API supports project-level defaults.
- Implementation changed first-send behavior so any active project with no
active session creates a session on submit. The explicit
New Threadbutton still creates a draft thread for users who want to start intentionally from the sidebar. - CDP smoke now sends the first prompt immediately after opening the fake
project and before clicking
Changes, proving theNew Threadclick is no longer required.
Verification results:
cd packages/desktop && SHELL=/bin/bash npx vitest run src/renderer/components/layout/WorkspacePage.test.tsxpassed with 4 tests.cd packages/desktop && npm run typecheckpassed.cd packages/desktop && npm run lintpassed.cd packages/desktop && npm run buildpassed.cd packages/desktop && npm run e2e:cdppassed.- Passing artifacts:
.qwen/e2e-tests/electron-desktop/artifacts/2026-04-25T16-41-09-752Z/.
Next work:
- Continue prototype fidelity by reducing topbar tab weight and moving review access toward compact icon/drawer behavior.
- Follow-up model configuration work should make composer model/permission controls editable before a session exists by persisting project-level defaults, rather than only reflecting live session runtime state.