Skip to content

fix(claude): emit plan events for TodoWrite during input streaming#1541

Merged
juliusmarminge merged 19 commits intopingdotgg:mainfrom
TimCrooker:fix/claude-todowrite-plan-events
Apr 14, 2026
Merged

fix(claude): emit plan events for TodoWrite during input streaming#1541
juliusmarminge merged 19 commits intopingdotgg:mainfrom
TimCrooker:fix/claude-todowrite-plan-events

Conversation

@TimCrooker
Copy link
Copy Markdown
Contributor

@TimCrooker TimCrooker commented Mar 29, 2026

What Changed

Claude's TodoWrite tool calls now emit turn.plan.updated events during input streaming so the plan sidebar shows task progress in real-time. The plan event fires alongside the existing tool lifecycle events, not instead of them.

Related fixes:

  • item.completed activities now forward the data field to the UI, matching item.updated
  • task.completed entries show up in the work log (previously filtered out with task.started)
  • Task activity labels use payload.summary when available instead of the generic activity summary
  • Agent/subagent tool summaries show the human-readable description instead of raw JSON
  • Plan state persists across follow-up turns so tasks don't vanish when you send a message
  • Sidebar auto-opens when task steps arrive, respects user dismiss
  • Sidebar shows "Tasks" outside plan mode, "Plan" inside it -- context-aware, no new UI components

Closes #1539

Why

TodoWrite gets classified as file_change in classifyToolItemType because the name contains "write". It renders as a generic "File change - TodoWrite: {raw JSON}" line in the work log. No turn.plan.updated event gets emitted, so the plan sidebar never activates for Claude sessions. This is core functionality that works for Codex but is completely broken for Claude.

There's an existing PR for this (#1387) that intercepts at tool result time and replaces the normal item.updated/content.delta emissions. This PR takes a different approach:

  1. Doesn't suppress existing events. The plan event fires alongside normal tool lifecycle, so downstream consumers aren't affected.
  2. Streams in real-time. Emitting during input_json_delta means the sidebar populates as Claude writes the input, not after the full round-trip.
  3. Persists across turns. deriveActivePlanState falls back to the most recent plan from any previous turn. Without this, the sidebar clears every time you send a follow-up.
  4. Context-aware labeling. Instead of forcing users into plan mode to see tasks, the sidebar dynamically labels itself "Tasks" vs "Plan" based on whether you're in plan mode. Same component, same UX, just the right label for the context.

Validated with bun fmt, bun lint, bun typecheck, and bun run test (all passing).

UI Changes

Before -- TodoWrite is invisible to the sidebar

Tasks exist but are completely invisible. There is no way to see them.

Before: no sidebar, TodoWrite tasks hidden

After -- Tasks stream in live without plan mode

Tasks are now streamed in real-time and persist between turns.

After: sidebar open showing task steps with status

After -- Button label adapts to context

When the session has tasks but no plan, the button shows "Tasks":

Composer toolbar showing Tasks button

When the session is in plan mode, the same button shows "Plan":

Screenshot 2026-03-29 at 9 11 52 PM

Checklist

  • This PR is small and focused
  • I explained what changed and why
  • I included before/after screenshots for any UI changes
  • I included a video for animation/interaction changes

Note

Medium Risk
Touches provider event emission/ingestion and client-side plan/worklog derivation, so regressions could affect real-time activity rendering and sidebar behavior across turns.

Overview
Claude input_json_delta handling now detects TodoWrite tool calls, extracts todo steps, and emits turn.plan.updated events during streaming (including a default "Task" label for blank items), while tool summaries for collab-agent invocations prefer human-readable description/prompt over raw JSON.

Runtime ingestion now forwards payload.data on item.completed activities, and the web app updates plan/task presentation: active plan state falls back to the latest plan from prior turns, the plan sidebar auto-opens when new steps arrive (respecting user dismissal), and the sidebar/button label switches between "Plan" and "Tasks" based on context.

Work log derivation is adjusted to include task.completed (still omitting task.started), prefer payload.summary/payload.detail as task labels, and render task.progress with a "thinking" tone.

Reviewed by Cursor Bugbot for commit af3e93a. Bugbot is set up for automated code reviews on this repo. Configure here.

Note

Emit turn.plan.updated events for TodoWrite tool input during Claude streaming

  • During input_json_delta streaming in ClaudeAdapter.ts, detects TodoWrite tools and emits turn.plan.updated runtime events with normalized plan steps (blank content becomes "Task", status values mapped to completed/inProgress/pending).
  • Updates session-logic.ts so deriveActivePlanState falls back to the most recent plan from a prior turn when the current turn has none, and deriveWorkLogEntries now includes task.completed entries with labels sourced from payload.summary or payload.detail.
  • The plan sidebar in ChatView.tsx auto-opens when plan/task steps arrive for the current turn (unless dismissed), and its label toggles between "Plan" and "Tasks" based on context.
  • Behavioral Change: the plan sidebar will open automatically on new plan steps, which may be unexpected for users who have not explicitly dismissed it.

Macroscope summarized af3e93a.

When Claude calls TodoWrite, emit turn.plan.updated events during input
streaming so the plan sidebar displays Claude's todos the same way it
already works for Codex plan steps. Events are emitted alongside existing
tool lifecycle events, not as a replacement.

Also passes through the data field on item.completed activities to match
item.updated behavior, and auto-opens the plan sidebar when plan steps
arrive.

Closes pingdotgg#1539
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 29, 2026

Important

Review skipped

Auto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 76bcff43-f45a-4fa6-94f6-75948292b898

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions github-actions bot added size:M 30-99 changed lines (additions + deletions). vouch:unvouched PR author is not yet trusted in the VOUCHED list. labels Mar 29, 2026
Plan state now falls back to the most recent plan from any previous
turn when the current turn has no plan activity, so TodoWrite tasks
stay visible across follow-up messages. Simplified redundant isTodoTool
check.
@TimCrooker TimCrooker marked this pull request as ready for review March 29, 2026 18:21
Copilot AI review requested due to automatic review settings March 29, 2026 18:21
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

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

Pull request overview

This PR wires Claude’s TodoWrite tool into the existing plan sidebar by emitting turn.plan.updated events during Claude input streaming, and includes several related UX/data-flow fixes so todos and task activity render consistently in the UI.

Changes:

  • Emit turn.plan.updated during Claude input_json_delta processing for TodoWrite, without suppressing existing tool lifecycle events.
  • Persist/restore plan state across turns and auto-open the plan sidebar when plan steps arrive.
  • Improve work log rendering (include task.completed, prefer task payload summaries) and forward data for item.completed activities.

Reviewed changes

Copilot reviewed 5 out of 5 changed files in this pull request and generated 3 comments.

Show a summary per file
File Description
apps/web/src/session-logic.ts Persist active plan across turns; include task.completed; adjust task entry label/tone logic.
apps/web/src/session-logic.test.ts Add coverage for plan fallback and updated work log filtering/label behavior.
apps/web/src/components/ChatView.tsx Auto-open plan sidebar when an active plan appears (respecting dismiss state).
apps/server/src/provider/Layers/ClaudeAdapter.ts Emit turn.plan.updated events for TodoWrite during streamed tool input parsing; improve tool request summaries for agent tools.
apps/server/src/orchestration/Layers/ProviderRuntimeIngestion.ts Forward payload.data for item.completed tool lifecycle activities.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Only force "thinking" tone for task.progress, not task.completed, so
failed tasks preserve their error tone. Also check payload.detail for
task labels since task.completed stores its summary there. Add
regression test for failed task.completed rendering.
@github-actions github-actions bot added size:L 100-499 changed lines (additions + deletions). and removed size:M 30-99 changed lines (additions + deletions). labels Mar 29, 2026
Use a sentinel string when turnId is null so the dismissed ref still
gets set, preventing the auto-open effect from immediately reopening
the sidebar.
Apply the same __dismissed__ sentinel to the onClose handler on the
plan sidebar X button, matching the fix already applied to
togglePlanSidebar.
Use the same turnKey fallback chain (activePlan.turnId ??
sidebarProposedPlan?.turnId ?? "__dismissed__") in both the auto-open
effect and the dismiss handlers so they always match.
@TimCrooker TimCrooker closed this Mar 29, 2026
@TimCrooker TimCrooker reopened this Mar 30, 2026
Dynamically switch the sidebar label between "Plan" and "Tasks" based
on context. When a proposed plan exists or the user is in plan mode,
the label reads "Plan". Otherwise it reads "Tasks". Applies to the
composer button, compact menu, sidebar badge, and aria labels.
TimCrooker and others added 2 commits March 29, 2026 20:23
…tail

Only auto-open the sidebar for plans from the current turn, not
fallbacks from previous turns. Add explicit parentheses to the label
ternary for clarity. Skip detail assignment when the detail text is
already used as the label to avoid duplication in the work log.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
@TimCrooker
Copy link
Copy Markdown
Contributor Author

TimCrooker commented Mar 30, 2026

Quick summary of the iteration here since there are a few rounds of commits:

Started by wiring TodoWrite into the existing plan event path so the sidebar actually shows Claude's tasks. Bugbot caught a few real issues (dismiss key mismatch, error tone override, label/detail duplication, auto-open on thread switch) each one got a focused fix.

Midway through I thought this would need a dedicated task UI component separate from the plan sidebar, since the plan panel was designed around Codex's plan mode. Almost closed it to go rethink.

Then realized the simpler answer: just dynamically label the sidebar "Tasks" vs "Plan" based on context. Same component, no new UI, no plan mode required. Users get task visibility without being forced into a workflow they didn't ask for.

Current state: all Bugbot feedback resolved, tests passing, parentheses fix for the label ternary pushed. Ready for review.

Copy link
Copy Markdown
Contributor

@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 OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

@juliusmarminge juliusmarminge self-requested a review April 6, 2026 17:30
@macroscopeapp
Copy link
Copy Markdown
Contributor

macroscopeapp bot commented Apr 14, 2026

Approvability

Verdict: Needs human review

Despite the 'fix' prefix, this PR introduces new feature capability: emitting plan events during TodoWrite streaming, auto-opening the plan sidebar, and changing how plans persist across turns. These are significant runtime behavior changes spanning server and client code that warrant human review.

You can customize Macroscope's approvability policy. Learn more.

Co-authored-by: codex <codex@users.noreply.github.com>
@juliusmarminge juliusmarminge merged commit 0d28026 into pingdotgg:main Apr 14, 2026
12 checks passed
youpele52 added a commit to youpele52/bigCode that referenced this pull request Apr 14, 2026
…service

Adapted from upstream t3code pingdotgg#1943 and pingdotgg#1541. normalizeClaudeTokenUsage now clamps
usedTokens to contextWindow when it exceeds it, and includes totalProcessedTokens in
the snapshot when it differs. Added isTodoTool and extractPlanStepsFromTodoInput to
emit turn.plan.updated events during TodoWrite input streaming and content_block_stop.
Created ProviderStatusCache Effect service (in-memory Ref-backed cache) for future use.
youpele52 added a commit to youpele52/bigCode that referenced this pull request Apr 14, 2026
commit 1efde7d7bdd26a5fbf5e7f1cb5604826bb88e513
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 19:01:21 2026 +0200

    Improve spacing in fork-upstream-adapter.md

    Insert blank lines for readability in .opencode/agents/fork-upstream-adapter.md: add an empty line after the "You should handle requests when:" heading and after the "After implementing:" heading to improve section separation.

commit bf270f3543b42dcd2ce56dbf4b2c39c42d2bfd09
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:59:06 2026 +0200

    Added Windows editor arg quoting and git status refresh after worktree bootstrap

    Adapted from upstream t3code #1805 and #2005. launchDetached now quotes each arg with
    double quotes on Windows (shell: true) to handle paths with spaces. Added
    refreshGitStatus call after worktree creation in wsBootstrap and after branch rename
    in ProviderCommandReactorSessionOps. Updated ProviderCommandReactor test to include
    GitStatusBroadcaster mock.

commit 21a1b21441a4deec10ac6fb1148c41f1b247fb22
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:53 2026 +0200

    Coalesced git status refreshes by remote and changed terminal.split shortcut

    Adapted from upstream t3code #1940. Replaced StatusUpstreamRefreshCacheKey (per-ref)
    with StatusRemoteRefreshCacheKey (per-remote) so sibling worktrees sharing the same
    remote share a single git fetch instead of each triggering a refspec-scoped fetch.
    Updated tests to match coalesced behavior. Changed terminal.split keybinding from
    mod+d to mod+shift+g.

commit bfca9cfc2df8fc4cb973b3798b077ab0a4c98e24
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:45 2026 +0200

    Fixed lost provider session recovery by gating on live session existence

    Adapted from upstream t3code #1938. Moved resolveActiveSession call before the
    existingSessionThreadId check in ensureSessionForThread, so the reactor no longer
    treats stale projected session state as an active session. Added gitStatusBroadcaster
    to SessionOpServices and refreshLocalStatus call after branch rename in
    maybeGenerateAndRenameWorktreeBranchForFirstTurn.

commit 2be6759e1d09b0732a389bdedfe433c8fc6cef17
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:39 2026 +0200

    Added token clamping, TodoWrite plan events, and ProviderStatusCache service

    Adapted from upstream t3code #1943 and #1541. normalizeClaudeTokenUsage now clamps
    usedTokens to contextWindow when it exceeds it, and includes totalProcessedTokens in
    the snapshot when it differs. Added isTodoTool and extractPlanStepsFromTodoInput to
    emit turn.plan.updated events during TodoWrite input streaming and content_block_stop.
    Created ProviderStatusCache Effect service (in-memory Ref-backed cache) for future use.

commit aaccef1d007cbf93c0345f3a67ac02563b206299
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:31 2026 +0200

    Improved shell PATH hydration with candidate iteration, launchctl fallback, and PATH merging

    Adapted from upstream t3code #1799. Adds listLoginShellCandidates, mergePathEntries,
    and readPathFromLaunchctl to @bigcode/shared/shell. Updated fixPath() in os-jank to
    iterate over shell candidates with per-shell error logging, merge shell PATH with
    inherited PATH (shell entries first, deduped), and fall back to launchctl on macOS
    when all shell reads fail.

commit 49d758876b3b8b2abc49fdf16256c9befc4e7113
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:10:17 2026 +0200

    Added: Upstream sync infrastructure for t3code fork adaptation

    - Created fork-upstream-adapter subagent enforcing read → understand → adapt → verify workflow
    - Added Upstream Sync section to AGENTS.md documenting bigCode's intentional divergence from t3code
    - This infrastructure prevents direct copy-paste transplants and ensures changes are properly adapted to bigCode conventions (Effect patterns, subpath imports, package roles)

commit a382aeb0c1a63ddece6a96879aa2b26b488586ad
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:02:04 2026 +0200

    Squashed commit of the following:

    commit 22ae871ea564f47a239a1736335d9ecd844f6b1e
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 02:57:27 2026 +0200

        Fixed packaged desktop app backend crash by inlining JS deps and symlinking _modules

        - Changed server tsdown config to bundle all dependencies except native
          addons (node-pty) and packages needing runtime require.resolve
          (@github/copilot-sdk) into a self-contained bin.mjs
        - Updated desktop artifact build to install only external deps via npm,
          then rename node_modules to _modules (electron-builder strips node_modules)
        - Added ensureBackendModulesSymlink() in desktop main process that creates
          a node_modules -> _modules symlink at runtime before spawning the backend
          (NODE_PATH does not work for ESM module resolution)

    commit 703d43bc9ced4773d6247302bd1a9bdc8b8f37a6
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:54:25 2026 +0200

        Fixed packaged desktop backend startup by staging server runtime

        The installed desktop app was only copying apps/server/dist into Resources/server, but dist/bin.mjs still imported runtime packages such as effect and @effect/platform-node. That left the spawned backend process without a resolvable server-local node_modules tree, causing ERR_MODULE_NOT_FOUND on startup and preventing the packaged app from connecting to its local WebSocket backend.

        Updated the desktop artifact pipeline to copy the full apps/server directory into extraResources, generate a standalone staged apps/server/package.json, and run bun install --production inside the staged server directory so Resources/server/dist/bin.mjs ships with matching production dependencies in installed builds.

    commit f6a8b2b3ca60acf6fa4d558e0da7be0562bf0b97
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:14:01 2026 +0200

        fixed packaged app server spawn: placed server dist outside asar via extraResources

    commit 8dee6558cd51e02d259084837f17b7183525d9d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:39:07 2026 +0200

        Fixed native addon asar packaging and improved server crash diagnostics

    commit cde60d1dbcd40b1852dea095db524aa1b42687d8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:05:38 2026 +0200

        Removed finalize job from release workflow (no GitHub App configured)

    commit 1fc7bf536910d0ff8563f5153bf2991279607a82
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:35:34 2026 +0200

        Removed npm CLI publishing from release workflow (desktop-only app)

    commit 6861ff20c7d443d4475d445f6cd652c2f7cfe1f8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:19:41 2026 +0200

        Fixed release workflow to publish GitHub Release even if npm fails

    commit 4c515eb9e2e41c807ffa2710530fd6a58a102690
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 22:46:05 2026 +0200

        Update release.yml

    commit f4298932ba32db555f14692ad277a3c2451034ac
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:42:07 2026 +0200

        Build server CLI and check dist/bin.mjs

        Update release workflow to run the build from apps/server (bun run --cwd apps/server build --verbose) instead of filtering packages. Adjust the CLI publish script to assert the CLI artifact is dist/bin.mjs (was dist/index.mjs). These changes align the release job with the server app's build output and ensure the publish step validates the correct binary path.

    commit ac406d325293ea42a2e55fdd7a1ad0001bf4c5d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:02:31 2026 +0200

        Updated installer entrypoints to use stable bootstrap script URLs

        Replaced the user-facing desktop install commands in the README, download page, and release docs so they fetch install.sh and install.ps1 directly from the repository instead of GitHub release asset URLs that 404 before a stable release exists. This keeps GitHub Releases as the source of desktop binaries while making the bootstrap script entrypoint consistently reachable for macOS, Linux, and Windows users.

    commit 1f5467d6f6da0d2c3d5b5903c24e85a495bf49ff
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 19:38:20 2026 +0200

        Updated: Removed browser tests from CI and documented local-only policy

        Removed the Playwright cache, browser runtime install, and browser test steps from the CI quality job so the pipeline only runs formatting, linting, typechecking, unit tests, and builds.

        Documented that browser tests are now local-only, updated the command guidance in docs/browser-tests.md, and clarified that both active and deferred browser test files are excluded from CI/CD.

    commit a98c8a416fd2034be3bccad579ba8f238ad62e94
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 18:42:17 2026 +0200

        Squashed commit of the following:

        commit 08243090054b1714aae46ac3873cf3c34c92f3cc
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 18:41:30 2026 +0200

            Updated sidebar swipe delete interactions and project removal cleanup

            Added a shared sidebar swipe-reveal interaction for thread and project rows so destructive actions stay consistent across touch, mouse, and trackpad input. Updated project removal to use the in-app confirmation dialog, cascade thread deletion through orchestration, preserve app-only deletion messaging, and clean up local draft, selection, terminal, and navigation state when projects are removed.

        commit 9a1ff8e68fbe44216e1f344ec5888174bf0d5091
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 14:36:40 2026 +0200

            Squashed commit of the following:

            commit cd6f0fe1cdce573a5c08dd874c92495a5b0b4334
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 14:14:34 2026 +0200

                Added: shared Searchbar for picker and branch search

                Created a shared Searchbar so the provider model picker, branch selector, and command input can reuse one search header instead of maintaining separate implementations. This keeps the ProviderModelPicker treatment as the visual source of truth while still letting specific consumers hide the search icon when they need to preserve their intended layout.\n\nAlso repaired branch filtering so results update while typing again, aligned the branch placeholder styling and copy with the provider picker, and updated the browser test selectors to match. Added focus-visible states and data-slot hooks so the shared controls stay accessible and easier to target in follow-up review fixes.

            commit 271aeebd0dac3e4f5489bc17304bcf315134cc8f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 13:33:28 2026 +0200

                Fixed: sent OpenCode image attachments as file parts

                Image attachments were reaching Copilot but not OpenCode, so persisted attachments now flow through the server adapter and are serialized into promptAsync as provider file parts backed by file URLs. This passes attachmentsDir into the OpenCode session dependencies, resolves stored image attachments during sendTurn, and adds a focused regression test so this mismatch does not regress.\n\nIt also includes a small Effect cleanup in ProviderNativeThreadTitleGeneration to keep typecheck green. Verification was completed successfully with bun fmt, bun lint, and bun typecheck, and the user confirmed the fix is now working.

            commit 9d63ef517578e15c149266a993df31504c38032f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:41 2026 +0200

                Updated: refined git workspace controls and editor link handling

                Git controls now keep draft-thread branch state aligned with the active workspace and present clearer checkout semantics for local versus worktree flows. The same cleanup improved wrapped terminal links, markdown file URLs, editor branding, and SSR-safe theming so desktop and web affordances behave more predictably.

            commit b37b0296edc4dd9dab71e458d54864791fdbe9f3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:34 2026 +0200

                Added: expanded composer skills, runtime controls, and timeline actions

                The composer now supports discovered skill triggers, selection-surround editing, and the new auto-accept-edits runtime option while preserving persisted draft state. This also moved changed-file expansion into thread UI state and exposed assistant copy actions so follow-up conversations stay easier to manage across turns.

            commit b1317846ea8648b3b362f5aa2e0ac07e3e77c86f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:08 2026 +0200

                Updated: retried websocket recovery and stabilized chat resize behavior

                Websocket recovery now retries snapshot and replay flows through shared transport-aware logic, and stalled reconnects restart from explicit coordinator rules instead of drifting into exhausted state. The same pass simplified chat footer sizing and browser coverage so resize-driven composer behavior stays predictable while transport reconnects recover.

            commit a9d34220e821e57f73ef9509f09ebf8be0896adb
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:52 2026 +0200

                Added: wired a global command palette into app shortcuts

                Registered mod+k as a first-class keybinding, added command-palette state and UI, and routed root-level navigation through the new palette. This also tightened shortcut coverage and preserved contextual new-thread defaults when launching actions from anywhere in the app.

            commit f6eae3f3e49e7e617dc4e5bd0ed8b623f0cb4e1f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:47 2026 +0200

                Added: exposed provider discovery metadata and intermediate runtime mode

                Providers now publish discovered slash commands and Codex skills, while runtime mode handling distinguishes supervised, auto-accept-edits, and full-access behavior across Claude and Codex. The update also keeps provider snapshots and terminal env filtering aligned with the expanded server contract.

            commit 095d962690242904f3d596f0be25fa4c9f9f42a7
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:41 2026 +0200

                Updated: hardened git status refresh around missing worktrees

                Git status and branch lookups now treat deleted or invalid working directories as non-repository states instead of surfacing brittle command failures. Also refreshed local git status after turn completion and tightened GitHub PR decoding so orchestration and stacked actions stay in sync with real workspace state.

            commit a178a6017574eeecade34a253fb634080f65f9b8
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:41:01 2026 +0200

                Added: scanned desktop backend ports and image copy menu support

                Desktop startup now searches for an available loopback port starting from the stable default instead of reserving a random one. Also exposed Copy Image in the desktop context menu and covered both behaviors with focused tests.

            commit 8b147fe44506aa2b1beec310d7d7846ed27fb7d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:35:13 2026 +0200

                Fixed: restored branch picker selection for large branch lists

                The branch list request was succeeding, but the selector's virtualized combobox path was not rendering large result sets correctly and item activation still depended on local click handlers instead of the combobox selection flow.

                Removed the broken virtualized rendering path, routed checkout/create actions through Combobox onValueChange, and added a focused browser regression test covering large branch lists and successful checkout selection.

                Validated with bun fmt, bun lint, bun typecheck, bun run --cwd apps/web vitest run src/components/git/BranchToolbar.logic.test.ts, and bun run --cwd apps/web test:browser -- --run src/components/git/BranchToolbarBranchSelector.browser.tsx.

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 377ef39db1bc3b9bf1c32b20ada94a37949d674e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 03:13:57 2026 +0200

                Squashed commit of the following:

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 02b7a73625c9ccebc6b878325be62574c863af97
            Merge: c3e6da60 88a6683d
            Author: youpele52 <mjayjesus@gmail.com>
            Date:   Fri Apr 10 01:13:23 2026 +0200

                Added bundled Meslo Nerd Font with terminal appearance settings

                Added bundled Meslo Nerd Font with terminal appearance settings

        commit 69760eeed4c219437f8e4492dc53a50ee9c87012
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sat Apr 11 21:52:30 2026 +0200

            Squashed commit of the following:

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

           …
youpele52 added a commit to youpele52/bigCode that referenced this pull request Apr 14, 2026
commit 2fe175041e1c53cf1c0737b9e040c4f6d3781b29
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 20:13:30 2026 +0200

    Updated: upstream sync — fix wsTransport test, consolidate buildTemporaryWorktreeBranchName, rename t3code prefix to bigcode

    Fix wsTransport test (apps/web/src/rpc/wsTransport.test.ts):
    - Removed 'environment' field from firstEvent/secondEvent payloads;
      ServerLifecycleWelcomePayload does not include it so Effect decode strips
      it, causing assertion mismatches. Expectations now match decoded shape.

    Consolidate buildTemporaryWorktreeBranchName into shared package (upstream 801b83e):
    - Added buildTemporaryWorktreeBranchName() to packages/shared/src/git.ts
      alongside the existing isTemporaryWorktreeBranch, using crypto.randomUUID
      instead of the web-only ~/lib/utils randomUUID.
    - Removed the duplicate local definition from ChatView.logic.ts (also drops
      the unused randomUUID import and the local WORKTREE_BRANCH_PREFIX shadow).
    - ChatView.sendTurn.logic.ts now imports from @bigcode/shared/git.

    Rename t3code worktree branch prefix and related identifiers to bigcode:
    - packages/shared/src/git.ts: WORKTREE_BRANCH_PREFIX = 'bigcode', updated
      doc comments.
    - apps/server/src/orchestration/Layers/ProviderCommandReactorHelpers.ts:
      WORKTREE_BRANCH_PREFIX + TEMP_WORKTREE_BRANCH_PATTERN updated.
    - Branch name literals in tests updated across:
        packages/contracts/src/orchestration/orchestration.test.ts
        apps/web/.../ChatView.browser/scriptsWorktree.integration-test.browser.tsx
        apps/web/src/components/git/GitActionsControl.logic.test.ts
        apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts
        apps/server/src/server.test.ts (8 occurrences)
    - Storage key renamed: COMPOSER_DRAFT_STORAGE_KEY = 'bigcode:composer-drafts:v1';
      legacy key 't3code:composer-drafts:v1' preserved in COMPOSER_DRAFT_LEGACY_STORAGE_KEYS
      and wired into resolveStorage for automatic migration on first read.
    - Browser test fixtures updated to 'bigcode:client-settings:v1' and
      'bigcode:last-editor'.
    - Keybindings fixture path changed to .bigcode-keybindings.json in 3 browser
      test files.
    - Codex client name: 'bigcode_desktop' in codexAppServer.ts and its test.
    - Git author/committer email: bigcode@users.noreply.github.com in CheckpointStore.ts.
    - fork-upstream-adapter.md: added t3code→bigCode renaming convention directive,
      added clarifier delegate, bumped temperature to 0.5.

commit a003768ebd9bfc15afc039eb29dc153e723b5093
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 19:32:53 2026 +0200

    Adapted web reconnect fixes and branch regression guard from upstream t3code

    - wsTransport: captured session before try block so reconnect detects stale sessions (94d13a2)
    - wsTransport: cleared slow RPC tracking on reconnect to prevent ghost toasts (f5ecca4)
    - GitActionsControl.logic: prevented semantic branch from regressing to temp worktree name (77fcad3)
    - isTemporaryWorktreeBranch: extracted to @bigcode/shared/git for web consumption
    - SidebarThreadRow: used latestUserMessageAt for more accurate thread timestamps (6f69934)
    - useThreadActions: stabilized archiveThread callback via handleNewThreadRef (6f69934)

commit 1efde7d7bdd26a5fbf5e7f1cb5604826bb88e513
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 19:01:21 2026 +0200

    Improve spacing in fork-upstream-adapter.md

    Insert blank lines for readability in .opencode/agents/fork-upstream-adapter.md: add an empty line after the "You should handle requests when:" heading and after the "After implementing:" heading to improve section separation.

commit bf270f3543b42dcd2ce56dbf4b2c39c42d2bfd09
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:59:06 2026 +0200

    Added Windows editor arg quoting and git status refresh after worktree bootstrap

    Adapted from upstream t3code #1805 and #2005. launchDetached now quotes each arg with
    double quotes on Windows (shell: true) to handle paths with spaces. Added
    refreshGitStatus call after worktree creation in wsBootstrap and after branch rename
    in ProviderCommandReactorSessionOps. Updated ProviderCommandReactor test to include
    GitStatusBroadcaster mock.

commit 21a1b21441a4deec10ac6fb1148c41f1b247fb22
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:53 2026 +0200

    Coalesced git status refreshes by remote and changed terminal.split shortcut

    Adapted from upstream t3code #1940. Replaced StatusUpstreamRefreshCacheKey (per-ref)
    with StatusRemoteRefreshCacheKey (per-remote) so sibling worktrees sharing the same
    remote share a single git fetch instead of each triggering a refspec-scoped fetch.
    Updated tests to match coalesced behavior. Changed terminal.split keybinding from
    mod+d to mod+shift+g.

commit bfca9cfc2df8fc4cb973b3798b077ab0a4c98e24
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:45 2026 +0200

    Fixed lost provider session recovery by gating on live session existence

    Adapted from upstream t3code #1938. Moved resolveActiveSession call before the
    existingSessionThreadId check in ensureSessionForThread, so the reactor no longer
    treats stale projected session state as an active session. Added gitStatusBroadcaster
    to SessionOpServices and refreshLocalStatus call after branch rename in
    maybeGenerateAndRenameWorktreeBranchForFirstTurn.

commit 2be6759e1d09b0732a389bdedfe433c8fc6cef17
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:39 2026 +0200

    Added token clamping, TodoWrite plan events, and ProviderStatusCache service

    Adapted from upstream t3code #1943 and #1541. normalizeClaudeTokenUsage now clamps
    usedTokens to contextWindow when it exceeds it, and includes totalProcessedTokens in
    the snapshot when it differs. Added isTodoTool and extractPlanStepsFromTodoInput to
    emit turn.plan.updated events during TodoWrite input streaming and content_block_stop.
    Created ProviderStatusCache Effect service (in-memory Ref-backed cache) for future use.

commit aaccef1d007cbf93c0345f3a67ac02563b206299
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:31 2026 +0200

    Improved shell PATH hydration with candidate iteration, launchctl fallback, and PATH merging

    Adapted from upstream t3code #1799. Adds listLoginShellCandidates, mergePathEntries,
    and readPathFromLaunchctl to @bigcode/shared/shell. Updated fixPath() in os-jank to
    iterate over shell candidates with per-shell error logging, merge shell PATH with
    inherited PATH (shell entries first, deduped), and fall back to launchctl on macOS
    when all shell reads fail.

commit 49d758876b3b8b2abc49fdf16256c9befc4e7113
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:10:17 2026 +0200

    Added: Upstream sync infrastructure for t3code fork adaptation

    - Created fork-upstream-adapter subagent enforcing read → understand → adapt → verify workflow
    - Added Upstream Sync section to AGENTS.md documenting bigCode's intentional divergence from t3code
    - This infrastructure prevents direct copy-paste transplants and ensures changes are properly adapted to bigCode conventions (Effect patterns, subpath imports, package roles)

commit a382aeb0c1a63ddece6a96879aa2b26b488586ad
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:02:04 2026 +0200

    Squashed commit of the following:

    commit 22ae871ea564f47a239a1736335d9ecd844f6b1e
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 02:57:27 2026 +0200

        Fixed packaged desktop app backend crash by inlining JS deps and symlinking _modules

        - Changed server tsdown config to bundle all dependencies except native
          addons (node-pty) and packages needing runtime require.resolve
          (@github/copilot-sdk) into a self-contained bin.mjs
        - Updated desktop artifact build to install only external deps via npm,
          then rename node_modules to _modules (electron-builder strips node_modules)
        - Added ensureBackendModulesSymlink() in desktop main process that creates
          a node_modules -> _modules symlink at runtime before spawning the backend
          (NODE_PATH does not work for ESM module resolution)

    commit 703d43bc9ced4773d6247302bd1a9bdc8b8f37a6
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:54:25 2026 +0200

        Fixed packaged desktop backend startup by staging server runtime

        The installed desktop app was only copying apps/server/dist into Resources/server, but dist/bin.mjs still imported runtime packages such as effect and @effect/platform-node. That left the spawned backend process without a resolvable server-local node_modules tree, causing ERR_MODULE_NOT_FOUND on startup and preventing the packaged app from connecting to its local WebSocket backend.

        Updated the desktop artifact pipeline to copy the full apps/server directory into extraResources, generate a standalone staged apps/server/package.json, and run bun install --production inside the staged server directory so Resources/server/dist/bin.mjs ships with matching production dependencies in installed builds.

    commit f6a8b2b3ca60acf6fa4d558e0da7be0562bf0b97
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:14:01 2026 +0200

        fixed packaged app server spawn: placed server dist outside asar via extraResources

    commit 8dee6558cd51e02d259084837f17b7183525d9d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:39:07 2026 +0200

        Fixed native addon asar packaging and improved server crash diagnostics

    commit cde60d1dbcd40b1852dea095db524aa1b42687d8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:05:38 2026 +0200

        Removed finalize job from release workflow (no GitHub App configured)

    commit 1fc7bf536910d0ff8563f5153bf2991279607a82
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:35:34 2026 +0200

        Removed npm CLI publishing from release workflow (desktop-only app)

    commit 6861ff20c7d443d4475d445f6cd652c2f7cfe1f8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:19:41 2026 +0200

        Fixed release workflow to publish GitHub Release even if npm fails

    commit 4c515eb9e2e41c807ffa2710530fd6a58a102690
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 22:46:05 2026 +0200

        Update release.yml

    commit f4298932ba32db555f14692ad277a3c2451034ac
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:42:07 2026 +0200

        Build server CLI and check dist/bin.mjs

        Update release workflow to run the build from apps/server (bun run --cwd apps/server build --verbose) instead of filtering packages. Adjust the CLI publish script to assert the CLI artifact is dist/bin.mjs (was dist/index.mjs). These changes align the release job with the server app's build output and ensure the publish step validates the correct binary path.

    commit ac406d325293ea42a2e55fdd7a1ad0001bf4c5d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:02:31 2026 +0200

        Updated installer entrypoints to use stable bootstrap script URLs

        Replaced the user-facing desktop install commands in the README, download page, and release docs so they fetch install.sh and install.ps1 directly from the repository instead of GitHub release asset URLs that 404 before a stable release exists. This keeps GitHub Releases as the source of desktop binaries while making the bootstrap script entrypoint consistently reachable for macOS, Linux, and Windows users.

    commit 1f5467d6f6da0d2c3d5b5903c24e85a495bf49ff
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 19:38:20 2026 +0200

        Updated: Removed browser tests from CI and documented local-only policy

        Removed the Playwright cache, browser runtime install, and browser test steps from the CI quality job so the pipeline only runs formatting, linting, typechecking, unit tests, and builds.

        Documented that browser tests are now local-only, updated the command guidance in docs/browser-tests.md, and clarified that both active and deferred browser test files are excluded from CI/CD.

    commit a98c8a416fd2034be3bccad579ba8f238ad62e94
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 18:42:17 2026 +0200

        Squashed commit of the following:

        commit 08243090054b1714aae46ac3873cf3c34c92f3cc
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 18:41:30 2026 +0200

            Updated sidebar swipe delete interactions and project removal cleanup

            Added a shared sidebar swipe-reveal interaction for thread and project rows so destructive actions stay consistent across touch, mouse, and trackpad input. Updated project removal to use the in-app confirmation dialog, cascade thread deletion through orchestration, preserve app-only deletion messaging, and clean up local draft, selection, terminal, and navigation state when projects are removed.

        commit 9a1ff8e68fbe44216e1f344ec5888174bf0d5091
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 14:36:40 2026 +0200

            Squashed commit of the following:

            commit cd6f0fe1cdce573a5c08dd874c92495a5b0b4334
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 14:14:34 2026 +0200

                Added: shared Searchbar for picker and branch search

                Created a shared Searchbar so the provider model picker, branch selector, and command input can reuse one search header instead of maintaining separate implementations. This keeps the ProviderModelPicker treatment as the visual source of truth while still letting specific consumers hide the search icon when they need to preserve their intended layout.\n\nAlso repaired branch filtering so results update while typing again, aligned the branch placeholder styling and copy with the provider picker, and updated the browser test selectors to match. Added focus-visible states and data-slot hooks so the shared controls stay accessible and easier to target in follow-up review fixes.

            commit 271aeebd0dac3e4f5489bc17304bcf315134cc8f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 13:33:28 2026 +0200

                Fixed: sent OpenCode image attachments as file parts

                Image attachments were reaching Copilot but not OpenCode, so persisted attachments now flow through the server adapter and are serialized into promptAsync as provider file parts backed by file URLs. This passes attachmentsDir into the OpenCode session dependencies, resolves stored image attachments during sendTurn, and adds a focused regression test so this mismatch does not regress.\n\nIt also includes a small Effect cleanup in ProviderNativeThreadTitleGeneration to keep typecheck green. Verification was completed successfully with bun fmt, bun lint, and bun typecheck, and the user confirmed the fix is now working.

            commit 9d63ef517578e15c149266a993df31504c38032f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:41 2026 +0200

                Updated: refined git workspace controls and editor link handling

                Git controls now keep draft-thread branch state aligned with the active workspace and present clearer checkout semantics for local versus worktree flows. The same cleanup improved wrapped terminal links, markdown file URLs, editor branding, and SSR-safe theming so desktop and web affordances behave more predictably.

            commit b37b0296edc4dd9dab71e458d54864791fdbe9f3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:34 2026 +0200

                Added: expanded composer skills, runtime controls, and timeline actions

                The composer now supports discovered skill triggers, selection-surround editing, and the new auto-accept-edits runtime option while preserving persisted draft state. This also moved changed-file expansion into thread UI state and exposed assistant copy actions so follow-up conversations stay easier to manage across turns.

            commit b1317846ea8648b3b362f5aa2e0ac07e3e77c86f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:08 2026 +0200

                Updated: retried websocket recovery and stabilized chat resize behavior

                Websocket recovery now retries snapshot and replay flows through shared transport-aware logic, and stalled reconnects restart from explicit coordinator rules instead of drifting into exhausted state. The same pass simplified chat footer sizing and browser coverage so resize-driven composer behavior stays predictable while transport reconnects recover.

            commit a9d34220e821e57f73ef9509f09ebf8be0896adb
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:52 2026 +0200

                Added: wired a global command palette into app shortcuts

                Registered mod+k as a first-class keybinding, added command-palette state and UI, and routed root-level navigation through the new palette. This also tightened shortcut coverage and preserved contextual new-thread defaults when launching actions from anywhere in the app.

            commit f6eae3f3e49e7e617dc4e5bd0ed8b623f0cb4e1f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:47 2026 +0200

                Added: exposed provider discovery metadata and intermediate runtime mode

                Providers now publish discovered slash commands and Codex skills, while runtime mode handling distinguishes supervised, auto-accept-edits, and full-access behavior across Claude and Codex. The update also keeps provider snapshots and terminal env filtering aligned with the expanded server contract.

            commit 095d962690242904f3d596f0be25fa4c9f9f42a7
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:41 2026 +0200

                Updated: hardened git status refresh around missing worktrees

                Git status and branch lookups now treat deleted or invalid working directories as non-repository states instead of surfacing brittle command failures. Also refreshed local git status after turn completion and tightened GitHub PR decoding so orchestration and stacked actions stay in sync with real workspace state.

            commit a178a6017574eeecade34a253fb634080f65f9b8
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:41:01 2026 +0200

                Added: scanned desktop backend ports and image copy menu support

                Desktop startup now searches for an available loopback port starting from the stable default instead of reserving a random one. Also exposed Copy Image in the desktop context menu and covered both behaviors with focused tests.

            commit 8b147fe44506aa2b1beec310d7d7846ed27fb7d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:35:13 2026 +0200

                Fixed: restored branch picker selection for large branch lists

                The branch list request was succeeding, but the selector's virtualized combobox path was not rendering large result sets correctly and item activation still depended on local click handlers instead of the combobox selection flow.

                Removed the broken virtualized rendering path, routed checkout/create actions through Combobox onValueChange, and added a focused browser regression test covering large branch lists and successful checkout selection.

                Validated with bun fmt, bun lint, bun typecheck, bun run --cwd apps/web vitest run src/components/git/BranchToolbar.logic.test.ts, and bun run --cwd apps/web test:browser -- --run src/components/git/BranchToolbarBranchSelector.browser.tsx.

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 377ef39db1bc3b9bf1c32b20ada94a37949d674e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 03:13:57 2026 +0200

                Squashed commit of the following:

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 02b7a73625c9ccebc6b878325be62574c863af97
            Merge: c3e6da60 88a6683d
            Author: youpele52 <mjayjesus@gmail.com>
            Date:   Fri Apr 10 01:13:23 2026 +0200

                Added bundled Meslo Nerd Font with terminal appearance settings

                Added bundled Meslo Nerd Font with terminal appearance settings

        commit 69760eeed4c219437f8e4492dc53a50ee9c87012
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sat Apr 11 21:52:30 2026 +0200

            Squashed commit of the following:

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shi…
youpele52 added a commit to youpele52/bigCode that referenced this pull request Apr 14, 2026
commit 87a8936c92ed4c718ce000b06340d4e9cbd38075
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Wed Apr 15 00:38:09 2026 +0200

    Fixed: Windows bootstrap installer crash in interactive mode and added regression tests

    Start-Process -ArgumentList rejected an empty array when running
    install.ps1 without BIGCODE_INSTALL_SILENT=1. Split into two branches:
    silent mode passes "/S" explicitly, interactive mode omits
    -ArgumentList entirely. Added TypeScript content-based smoke test
    (scripts/bootstrap-installer-smoke.ts) and PowerShell mock-based smoke
    test (scripts/bootstrap-installer-smoke.ps1) with CI jobs for both.

commit 2fe175041e1c53cf1c0737b9e040c4f6d3781b29
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 20:13:30 2026 +0200

    Updated: upstream sync — fix wsTransport test, consolidate buildTemporaryWorktreeBranchName, rename t3code prefix to bigcode

    Fix wsTransport test (apps/web/src/rpc/wsTransport.test.ts):
    - Removed 'environment' field from firstEvent/secondEvent payloads;
      ServerLifecycleWelcomePayload does not include it so Effect decode strips
      it, causing assertion mismatches. Expectations now match decoded shape.

    Consolidate buildTemporaryWorktreeBranchName into shared package (upstream 801b83e):
    - Added buildTemporaryWorktreeBranchName() to packages/shared/src/git.ts
      alongside the existing isTemporaryWorktreeBranch, using crypto.randomUUID
      instead of the web-only ~/lib/utils randomUUID.
    - Removed the duplicate local definition from ChatView.logic.ts (also drops
      the unused randomUUID import and the local WORKTREE_BRANCH_PREFIX shadow).
    - ChatView.sendTurn.logic.ts now imports from @bigcode/shared/git.

    Rename t3code worktree branch prefix and related identifiers to bigcode:
    - packages/shared/src/git.ts: WORKTREE_BRANCH_PREFIX = 'bigcode', updated
      doc comments.
    - apps/server/src/orchestration/Layers/ProviderCommandReactorHelpers.ts:
      WORKTREE_BRANCH_PREFIX + TEMP_WORKTREE_BRANCH_PATTERN updated.
    - Branch name literals in tests updated across:
        packages/contracts/src/orchestration/orchestration.test.ts
        apps/web/.../ChatView.browser/scriptsWorktree.integration-test.browser.tsx
        apps/web/src/components/git/GitActionsControl.logic.test.ts
        apps/server/src/orchestration/Layers/ProviderCommandReactor.test.ts
        apps/server/src/server.test.ts (8 occurrences)
    - Storage key renamed: COMPOSER_DRAFT_STORAGE_KEY = 'bigcode:composer-drafts:v1';
      legacy key 't3code:composer-drafts:v1' preserved in COMPOSER_DRAFT_LEGACY_STORAGE_KEYS
      and wired into resolveStorage for automatic migration on first read.
    - Browser test fixtures updated to 'bigcode:client-settings:v1' and
      'bigcode:last-editor'.
    - Keybindings fixture path changed to .bigcode-keybindings.json in 3 browser
      test files.
    - Codex client name: 'bigcode_desktop' in codexAppServer.ts and its test.
    - Git author/committer email: bigcode@users.noreply.github.com in CheckpointStore.ts.
    - fork-upstream-adapter.md: added t3code→bigCode renaming convention directive,
      added clarifier delegate, bumped temperature to 0.5.

commit a003768ebd9bfc15afc039eb29dc153e723b5093
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 19:32:53 2026 +0200

    Adapted web reconnect fixes and branch regression guard from upstream t3code

    - wsTransport: captured session before try block so reconnect detects stale sessions (94d13a2)
    - wsTransport: cleared slow RPC tracking on reconnect to prevent ghost toasts (f5ecca4)
    - GitActionsControl.logic: prevented semantic branch from regressing to temp worktree name (77fcad3)
    - isTemporaryWorktreeBranch: extracted to @bigcode/shared/git for web consumption
    - SidebarThreadRow: used latestUserMessageAt for more accurate thread timestamps (6f69934)
    - useThreadActions: stabilized archiveThread callback via handleNewThreadRef (6f69934)

commit 1efde7d7bdd26a5fbf5e7f1cb5604826bb88e513
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 19:01:21 2026 +0200

    Improve spacing in fork-upstream-adapter.md

    Insert blank lines for readability in .opencode/agents/fork-upstream-adapter.md: add an empty line after the "You should handle requests when:" heading and after the "After implementing:" heading to improve section separation.

commit bf270f3543b42dcd2ce56dbf4b2c39c42d2bfd09
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:59:06 2026 +0200

    Added Windows editor arg quoting and git status refresh after worktree bootstrap

    Adapted from upstream t3code #1805 and #2005. launchDetached now quotes each arg with
    double quotes on Windows (shell: true) to handle paths with spaces. Added
    refreshGitStatus call after worktree creation in wsBootstrap and after branch rename
    in ProviderCommandReactorSessionOps. Updated ProviderCommandReactor test to include
    GitStatusBroadcaster mock.

commit 21a1b21441a4deec10ac6fb1148c41f1b247fb22
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:53 2026 +0200

    Coalesced git status refreshes by remote and changed terminal.split shortcut

    Adapted from upstream t3code #1940. Replaced StatusUpstreamRefreshCacheKey (per-ref)
    with StatusRemoteRefreshCacheKey (per-remote) so sibling worktrees sharing the same
    remote share a single git fetch instead of each triggering a refspec-scoped fetch.
    Updated tests to match coalesced behavior. Changed terminal.split keybinding from
    mod+d to mod+shift+g.

commit bfca9cfc2df8fc4cb973b3798b077ab0a4c98e24
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:45 2026 +0200

    Fixed lost provider session recovery by gating on live session existence

    Adapted from upstream t3code #1938. Moved resolveActiveSession call before the
    existingSessionThreadId check in ensureSessionForThread, so the reactor no longer
    treats stale projected session state as an active session. Added gitStatusBroadcaster
    to SessionOpServices and refreshLocalStatus call after branch rename in
    maybeGenerateAndRenameWorktreeBranchForFirstTurn.

commit 2be6759e1d09b0732a389bdedfe433c8fc6cef17
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:39 2026 +0200

    Added token clamping, TodoWrite plan events, and ProviderStatusCache service

    Adapted from upstream t3code #1943 and #1541. normalizeClaudeTokenUsage now clamps
    usedTokens to contextWindow when it exceeds it, and includes totalProcessedTokens in
    the snapshot when it differs. Added isTodoTool and extractPlanStepsFromTodoInput to
    emit turn.plan.updated events during TodoWrite input streaming and content_block_stop.
    Created ProviderStatusCache Effect service (in-memory Ref-backed cache) for future use.

commit aaccef1d007cbf93c0345f3a67ac02563b206299
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 18:58:31 2026 +0200

    Improved shell PATH hydration with candidate iteration, launchctl fallback, and PATH merging

    Adapted from upstream t3code #1799. Adds listLoginShellCandidates, mergePathEntries,
    and readPathFromLaunchctl to @bigcode/shared/shell. Updated fixPath() in os-jank to
    iterate over shell candidates with per-shell error logging, merge shell PATH with
    inherited PATH (shell entries first, deduped), and fall back to launchctl on macOS
    when all shell reads fail.

commit 49d758876b3b8b2abc49fdf16256c9befc4e7113
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:10:17 2026 +0200

    Added: Upstream sync infrastructure for t3code fork adaptation

    - Created fork-upstream-adapter subagent enforcing read → understand → adapt → verify workflow
    - Added Upstream Sync section to AGENTS.md documenting bigCode's intentional divergence from t3code
    - This infrastructure prevents direct copy-paste transplants and ensures changes are properly adapted to bigCode conventions (Effect patterns, subpath imports, package roles)

commit a382aeb0c1a63ddece6a96879aa2b26b488586ad
Author: Youpele Michael <mjayjesus@gmail.com>
Date:   Tue Apr 14 14:02:04 2026 +0200

    Squashed commit of the following:

    commit 22ae871ea564f47a239a1736335d9ecd844f6b1e
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 02:57:27 2026 +0200

        Fixed packaged desktop app backend crash by inlining JS deps and symlinking _modules

        - Changed server tsdown config to bundle all dependencies except native
          addons (node-pty) and packages needing runtime require.resolve
          (@github/copilot-sdk) into a self-contained bin.mjs
        - Updated desktop artifact build to install only external deps via npm,
          then rename node_modules to _modules (electron-builder strips node_modules)
        - Added ensureBackendModulesSymlink() in desktop main process that creates
          a node_modules -> _modules symlink at runtime before spawning the backend
          (NODE_PATH does not work for ESM module resolution)

    commit 703d43bc9ced4773d6247302bd1a9bdc8b8f37a6
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:54:25 2026 +0200

        Fixed packaged desktop backend startup by staging server runtime

        The installed desktop app was only copying apps/server/dist into Resources/server, but dist/bin.mjs still imported runtime packages such as effect and @effect/platform-node. That left the spawned backend process without a resolvable server-local node_modules tree, causing ERR_MODULE_NOT_FOUND on startup and preventing the packaged app from connecting to its local WebSocket backend.

        Updated the desktop artifact pipeline to copy the full apps/server directory into extraResources, generate a standalone staged apps/server/package.json, and run bun install --production inside the staged server directory so Resources/server/dist/bin.mjs ships with matching production dependencies in installed builds.

    commit f6a8b2b3ca60acf6fa4d558e0da7be0562bf0b97
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 01:14:01 2026 +0200

        fixed packaged app server spawn: placed server dist outside asar via extraResources

    commit 8dee6558cd51e02d259084837f17b7183525d9d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:39:07 2026 +0200

        Fixed native addon asar packaging and improved server crash diagnostics

    commit cde60d1dbcd40b1852dea095db524aa1b42687d8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Mon Apr 13 00:05:38 2026 +0200

        Removed finalize job from release workflow (no GitHub App configured)

    commit 1fc7bf536910d0ff8563f5153bf2991279607a82
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:35:34 2026 +0200

        Removed npm CLI publishing from release workflow (desktop-only app)

    commit 6861ff20c7d443d4475d445f6cd652c2f7cfe1f8
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 23:19:41 2026 +0200

        Fixed release workflow to publish GitHub Release even if npm fails

    commit 4c515eb9e2e41c807ffa2710530fd6a58a102690
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 22:46:05 2026 +0200

        Update release.yml

    commit f4298932ba32db555f14692ad277a3c2451034ac
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:42:07 2026 +0200

        Build server CLI and check dist/bin.mjs

        Update release workflow to run the build from apps/server (bun run --cwd apps/server build --verbose) instead of filtering packages. Adjust the CLI publish script to assert the CLI artifact is dist/bin.mjs (was dist/index.mjs). These changes align the release job with the server app's build output and ensure the publish step validates the correct binary path.

    commit ac406d325293ea42a2e55fdd7a1ad0001bf4c5d1
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 20:02:31 2026 +0200

        Updated installer entrypoints to use stable bootstrap script URLs

        Replaced the user-facing desktop install commands in the README, download page, and release docs so they fetch install.sh and install.ps1 directly from the repository instead of GitHub release asset URLs that 404 before a stable release exists. This keeps GitHub Releases as the source of desktop binaries while making the bootstrap script entrypoint consistently reachable for macOS, Linux, and Windows users.

    commit 1f5467d6f6da0d2c3d5b5903c24e85a495bf49ff
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 19:38:20 2026 +0200

        Updated: Removed browser tests from CI and documented local-only policy

        Removed the Playwright cache, browser runtime install, and browser test steps from the CI quality job so the pipeline only runs formatting, linting, typechecking, unit tests, and builds.

        Documented that browser tests are now local-only, updated the command guidance in docs/browser-tests.md, and clarified that both active and deferred browser test files are excluded from CI/CD.

    commit a98c8a416fd2034be3bccad579ba8f238ad62e94
    Author: Youpele Michael <mjayjesus@gmail.com>
    Date:   Sun Apr 12 18:42:17 2026 +0200

        Squashed commit of the following:

        commit 08243090054b1714aae46ac3873cf3c34c92f3cc
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 18:41:30 2026 +0200

            Updated sidebar swipe delete interactions and project removal cleanup

            Added a shared sidebar swipe-reveal interaction for thread and project rows so destructive actions stay consistent across touch, mouse, and trackpad input. Updated project removal to use the in-app confirmation dialog, cascade thread deletion through orchestration, preserve app-only deletion messaging, and clean up local draft, selection, terminal, and navigation state when projects are removed.

        commit 9a1ff8e68fbe44216e1f344ec5888174bf0d5091
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sun Apr 12 14:36:40 2026 +0200

            Squashed commit of the following:

            commit cd6f0fe1cdce573a5c08dd874c92495a5b0b4334
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 14:14:34 2026 +0200

                Added: shared Searchbar for picker and branch search

                Created a shared Searchbar so the provider model picker, branch selector, and command input can reuse one search header instead of maintaining separate implementations. This keeps the ProviderModelPicker treatment as the visual source of truth while still letting specific consumers hide the search icon when they need to preserve their intended layout.\n\nAlso repaired branch filtering so results update while typing again, aligned the branch placeholder styling and copy with the provider picker, and updated the browser test selectors to match. Added focus-visible states and data-slot hooks so the shared controls stay accessible and easier to target in follow-up review fixes.

            commit 271aeebd0dac3e4f5489bc17304bcf315134cc8f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 13:33:28 2026 +0200

                Fixed: sent OpenCode image attachments as file parts

                Image attachments were reaching Copilot but not OpenCode, so persisted attachments now flow through the server adapter and are serialized into promptAsync as provider file parts backed by file URLs. This passes attachmentsDir into the OpenCode session dependencies, resolves stored image attachments during sendTurn, and adds a focused regression test so this mismatch does not regress.\n\nIt also includes a small Effect cleanup in ProviderNativeThreadTitleGeneration to keep typecheck green. Verification was completed successfully with bun fmt, bun lint, and bun typecheck, and the user confirmed the fix is now working.

            commit 9d63ef517578e15c149266a993df31504c38032f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:41 2026 +0200

                Updated: refined git workspace controls and editor link handling

                Git controls now keep draft-thread branch state aligned with the active workspace and present clearer checkout semantics for local versus worktree flows. The same cleanup improved wrapped terminal links, markdown file URLs, editor branding, and SSR-safe theming so desktop and web affordances behave more predictably.

            commit b37b0296edc4dd9dab71e458d54864791fdbe9f3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:34 2026 +0200

                Added: expanded composer skills, runtime controls, and timeline actions

                The composer now supports discovered skill triggers, selection-surround editing, and the new auto-accept-edits runtime option while preserving persisted draft state. This also moved changed-file expansion into thread UI state and exposed assistant copy actions so follow-up conversations stay easier to manage across turns.

            commit b1317846ea8648b3b362f5aa2e0ac07e3e77c86f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:43:08 2026 +0200

                Updated: retried websocket recovery and stabilized chat resize behavior

                Websocket recovery now retries snapshot and replay flows through shared transport-aware logic, and stalled reconnects restart from explicit coordinator rules instead of drifting into exhausted state. The same pass simplified chat footer sizing and browser coverage so resize-driven composer behavior stays predictable while transport reconnects recover.

            commit a9d34220e821e57f73ef9509f09ebf8be0896adb
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:52 2026 +0200

                Added: wired a global command palette into app shortcuts

                Registered mod+k as a first-class keybinding, added command-palette state and UI, and routed root-level navigation through the new palette. This also tightened shortcut coverage and preserved contextual new-thread defaults when launching actions from anywhere in the app.

            commit f6eae3f3e49e7e617dc4e5bd0ed8b623f0cb4e1f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:47 2026 +0200

                Added: exposed provider discovery metadata and intermediate runtime mode

                Providers now publish discovered slash commands and Codex skills, while runtime mode handling distinguishes supervised, auto-accept-edits, and full-access behavior across Claude and Codex. The update also keeps provider snapshots and terminal env filtering aligned with the expanded server contract.

            commit 095d962690242904f3d596f0be25fa4c9f9f42a7
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:42:41 2026 +0200

                Updated: hardened git status refresh around missing worktrees

                Git status and branch lookups now treat deleted or invalid working directories as non-repository states instead of surfacing brittle command failures. Also refreshed local git status after turn completion and tightened GitHub PR decoding so orchestration and stacked actions stay in sync with real workspace state.

            commit a178a6017574eeecade34a253fb634080f65f9b8
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:41:01 2026 +0200

                Added: scanned desktop backend ports and image copy menu support

                Desktop startup now searches for an available loopback port starting from the stable default instead of reserving a random one. Also exposed Copy Image in the desktop context menu and covered both behaviors with focused tests.

            commit 8b147fe44506aa2b1beec310d7d7846ed27fb7d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sun Apr 12 03:35:13 2026 +0200

                Fixed: restored branch picker selection for large branch lists

                The branch list request was succeeding, but the selector's virtualized combobox path was not rendering large result sets correctly and item activation still depended on local click handlers instead of the combobox selection flow.

                Removed the broken virtualized rendering path, routed checkout/create actions through Combobox onValueChange, and added a focused browser regression test covering large branch lists and successful checkout selection.

                Validated with bun fmt, bun lint, bun typecheck, bun run --cwd apps/web vitest run src/components/git/BranchToolbar.logic.test.ts, and bun run --cwd apps/web test:browser -- --run src/components/git/BranchToolbarBranchSelector.browser.tsx.

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 377ef39db1bc3b9bf1c32b20ada94a37949d674e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 03:13:57 2026 +0200

                Squashed commit of the following:

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit 02b7a73625c9ccebc6b878325be62574c863af97
            Merge: c3e6da60 88a6683d
            Author: youpele52 <mjayjesus@gmail.com>
            Date:   Fri Apr 10 01:13:23 2026 +0200

                Added bundled Meslo Nerd Font with terminal appearance settings

                Added bundled Meslo Nerd Font with terminal appearance settings

        commit 69760eeed4c219437f8e4492dc53a50ee9c87012
        Author: Youpele Michael <mjayjesus@gmail.com>
        Date:   Sat Apr 11 21:52:30 2026 +0200

            Squashed commit of the following:

            commit 1201750c9ec905e1d8020a0fde13c7540473e1c3
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 21:38:03 2026 +0200

                Deferred flaky ProviderModelPicker browser test and documented convention

                Renamed ProviderModelPicker.browser.tsx to ProviderModelPicker.deferred-browser.tsx
                so it falls outside the Vitest include glob (src/components/**/*.browser.tsx) and
                no longer blocks CI in headless Chromium. Added docs/browser-tests.md documenting
                the deferred-browser naming convention, the reason for the rename, and instructions
                for re-enabling the test once the root cause of the intermittent failure is resolved.

            commit c9eb06abd55d83a13e6b68f789af238a2dbf0bd9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 20:50:19 2026 +0200

                Changed default home dir from .t3 to .bigCode

                Switch the default application/state directory from ~/.t3 to ~/.bigCode across code, docs, and tests. Updated references include desktop BASE_DIR, server telemetry and os utilities, dev-runner default, web worktree tests, and documentation (scripts, keybindings, observability). Tests and examples were adjusted to expect ~/.bigCode where applicable.

            commit b5dc035104b18ee8205f0477303bdb1547513f3e
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:50:35 2026 +0200

                Fixed brittle server tests and restored typed error propagation in assertValidCwd

                - cli-config.test.ts: corrected otlpServiceName from 't3-server' to 'bigcode-server'
                - GitHubCli.test.ts: fixed vi.mock path from '../../processRunner' to '../../utils/processRunner' so the mock actually intercepts the real import
                - codexAppServerManager.test.ts: replaced vi.spyOn on non-existent instance method with vi.mock('./codexVersionCheck') module mock; added missing 4th argument (undefined) to all sendRequest assertions to match the actual 4-arg call signature in turnOps()
                - ProviderCommandReactor.test.ts: wired workspaceRoot from createHarness input into project.create dispatch; passed workspaceRoot: baseDir in file-expansion test so buildPathReferenceBlock resolves correctly; changed thread.create title to 'New thread' so canReplaceThreadTitle returns true; added modelSelection to second thread-title test's turn.start dispatch so title generation is triggered
                - Manager.process.ts: removed Effect.orDie from assertValidCwd so TerminalCwdError propagates as a typed failure instead of a fiber defect; updated return type from Effect<void, never> to Effect<void, TerminalCwdError>
                - Manager.session.ts: imported TerminalCwdError and updated SessionApiContext.assertValidCwd signature to match the new typed return type

            commit febb1368f1cabb043901932bcd4291ed76f53279
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:19:34 2026 +0200

                Fixed GitManager missing-directory handling and stale PR fixtures

                Unwrapped GitCommandError causes when detecting missing-directory status lookups so GitManager continues returning the explicit non-repo result after executor error wrapping changed. Also updated the GitManager tests to use a guaranteed-missing child path instead of deleting a scoped temp directory, and aligned the fork repository fixture with the current bigCode repository name.

            commit 8dfcccf76120e52d85a8bbcb2308eb0960634836
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 17:03:46 2026 +0200

                Added missing GitManager invalidateStatus mock to server tests

                Updated the shared server router test harness to provide GitManager.invalidateStatus after websocket git RPC routing started refreshing git status through the manager. This keeps the seam tests aligned with the current GitManager contract and prevents UnimplementedError failures in CI when exercising git websocket methods.

            commit 42af91f1f61b99521778c9876bbdd4741110eb5f
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:46 2026 +0200

                Update tests to reflect new provider options and fix context menu mock path

            commit 0a0fd47ffc1380877395f2f1fc6ba0d246b94950
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:54:41 2026 +0200

                Show BigCode logo centered on empty state instead of text

            commit eacceb3174f65069400598e91c201643773d4115
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:38:59 2026 +0200

                Updated CI to use GitHub-hosted Ubuntu runner

                Replaced the unavailable Blacksmith runner label with ubuntu-24.04 so the quality job can start reliably in this repository instead of waiting indefinitely for a matching runner.

            commit 7f051c82ebd365ce41d7036a80df16ad71205dc1
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:16:56 2026 +0200

                Updated GitHub Actions release validation and quality gates

                Added release asset assembly on main so CI validates the final desktop release payload shape, and added the format check to tagged release preflight so public releases use the same quality gates as main.

            commit 827f319917627ca34a1e23ee3a88d83fa4b1a333
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 16:12:43 2026 +0200

                Squashed commit of the following:

                commit 177da1839eb84b7419225d664fbde6d846927568
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 16:04:02 2026 +0200

                    Added GitHub-hosted desktop installers and release build automation

                    Published install.sh and install.ps1 as GitHub release assets, updated CI to validate cross-platform desktop release builds on main, and documented the direct curl and PowerShell install flow.

                commit a56ceb5ae597d3a94e97f14b9a575f5e86fbe4f6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:46:05 2026 +0200

                    Reorganized: Updated documentation structure and content

                    Reorganized root-level markdown files and updated documentation:

                    - Updated AGENTS.md: Added apps/desktop and apps/marketing to Package Roles section
                    - Updated .plans/README.md: Expanded from 10 to 19 numbered plans, organized into Numbered Plans, Additional Plans, and Specs sections
                    - Updated CONTRIBUTING.md: Clarified that feature requests are accepted via issues, but code contributions (PRs) are not actively accepted
                    - Moved REMOTE.md and KEYBINDINGS.md from root to docs/ directory for better organization
                    - Deleted TODO.md (minor task list better tracked elsewhere)

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

                commit a55032040a558ace79a7d9b8a37f7ae4c2db76b6
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:30 2026 +0200

                    Updated: Changed diff.toggle keybinding and improved keyboard event capture handling

                    Changed the diff.toggle command shortcut from mod+d to mod+shift+g across all keybinding configurations to avoid conflicts with other commands. Updated event listener registration to use capture phase ({ capture: true }) for more reliable keyboard shortcut handling:

                    Files updated:
                    - apps/server/src/keybindings/keybindings.ts: Changed diff.toggle from mod+d to mod+shift+g
                    - apps/server/src/keybindings/keybindings.test.ts: Added assertion for new diff.toggle shortcut
                    - apps/web/src/components/chat/view/ChatView.keybindings.logic.ts: Added capture: true to keydown handler
                    - apps/web/src/components/sidebar/Sidebar.keyboardNav.logic.ts: Added capture: true to keydown/keyup handlers
                    - apps/web/src/routes/_chat.tsx: Added capture: true to global keyboard shortcut handler
                    - apps/web/src/models/keybindings/keybindings.models.test.ts: Updated all diff.toggle test assertions
                    - packages/contracts/src/server/keybindings.test.ts: Updated test keybinding to use mod+shift+g

                    The capture phase ensures keybinding handlers execute before bubbling-phase handlers, preventing shortcuts from being intercepted by child components.

                commit c920482aa5f569909a95815ad656412ad4ffa370
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:23 2026 +0200

                    Refactored: Split monolithic ChatView.browser.tsx into modular test files

                    Replaced the single 2,948-line ChatView.browser.tsx test file with a structured ChatView.browser/ directory containing 12 focused modules. The split improves maintainability by separating concerns into logical groupings:

                    - fixtures.ts: Pure data factories, snapshot builders, and viewport specifications
                    - scenarioFixtures.ts: Specialized snapshot builders for complex test scenarios
                    - dom.ts: DOM interaction helpers, keyboard shortcuts, and wait utilities
                    - types.ts: Shared TypeScript interfaces and type definitions
                    - context.tsx: Browser test context with MSW worker, RPC harness, and state management
                    - mount.ts: Test mounting utilities and measurement helpers

                    Test files (each under 500 lines):
                    - timelineEstimator.integration-test.browser.tsx: Timeline virtualization height estimation tests
                    - editorPicker.integration-test.browser.tsx: Editor/IDE picker integration tests
                    - scriptsWorktree.integration-test.browser.tsx: Project scripts and worktree handling tests
                    - composer.integration-test.browser.tsx: Composer interactions, terminal context, and send behavior
                    - threading.integration-test.browser.tsx: Thread lifecycle, shortcuts, and sidebar navigation
                    - layout.integration-test.browser.tsx: Footer layout and resize behavior tests
                    - archivePlan.integration-test.browser.tsx: Archive actions and plan expansion tests

                    Each test file now manages its own beforeAll/afterAll/beforeEach/afterEach lifecycle while sharing the extracted infrastructure modules. This follows the project's maintainability priority of avoiding duplicate logic and keeping files focused.

                commit c16499a92f4027e2ab4b3ae977905fe28fef05b8
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 02:15:35 2026 +0200

                    Added: surfaced discovered agents and expanded compact mentions for provider turns

                    Added a discovery registry that scans provider-specific agent and skill definitions, publishes the catalog through server config updates, and exposes the new discovery types in shared contracts so the web app can autocomplete and render them.

                    Updated the composer, mention parsing, and message timeline to support compact @agent::, @skill::, and workspace path references while keeping the stored user message text unchanged. Expanded those references on the server before sending a turn to providers so agent instructions, skill guidance, and referenced file contents are available as active context without mutating the persisted transcript.

                    Added tests for provider input expansion, discovery-backed server state, mention logic, and message rendering, and included supporting refactors in terminal and git helpers needed to keep the new flow reliable.

                commit 923f6ae8c96d029914fcf95ef3b64aa03639b92d
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Fri Apr 10 23:17:00 2026 +0200

                    Extracted hardcoded T3 server branding into shared constants in @bigcode/contracts

                    - Created APP_BASE_NAME, APP_SERVER_NAME, and APP_SERVER_SLUG constants in packages/contracts/src/constants/branding.constant.ts
                    - Replaced all hardcoded 'T3 server' or 'T3' references across server CLI, web WebSocket UI, RPC protocol, and transport error modules with the new APP_SERVER_NAME and APP_SERVER_SLUG constants
                    - Re-exported branding constants from @bigcode/contracts barrel and web branding config
                    - Updated websocket.constant.ts JSDoc to reference APP_SERVER_NAME

            commit fbf3b553a98b210e77ce4c5c828de222466298d9
            Author: Youpele Michael <mjayjesus@gmail.com>
            Date:   Sat Apr 11 15:03:41 2026 +0200

                Squashed commit of the following:

                commit 79f163d01ac78995bb15814295f0f0825a6ea511
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 15:02:40 2026 +0200

                    Updated: moved first-turn thread titles to server-owned provider-native generation

                    Removed the client-side first-send title heuristic so draft threads keep their neutral placeholder until the server generates the real title. The first-turn orchestration flow now passes the turn's actual model selection into thread title generation instead of reading the global text-generation setting.

                    Added native provider-specific title generation paths for Copilot and OpenCode while keeping existing git commit, PR, and branch generation fallback routing scoped to those operations. Tightened Copilot and OpenCode title extraction so JSON-like or fenced responses are unwrapped to the actual title text, and updated orchestration/browser tests to assert that the client no longer sends a synthetic thread.meta.update for first-send titles.

                commit e40449c906f1baa65d370c027f0b48bee730dbcb
                Author: Youpele Michael <mjayjesus@gmail.com>
                Date:   Sat Apr 11 04:50:36 2026 +0200

                    Updated: Simplified DiffPanel component by removing lazy loading

                    Removed Suspense and lazy loading from the DiffPanel component to simplify the code and improve initial load consistency:

                    - apps/web/src/routes/_chat.$threadId.tsx:
                      - Replaced lazy() import with direct import
                      - Removed Suspense wrapper and DiffLoadingFallback component
                      - Renamed LazyDiffPanel to DeferredDiffPanel for clarity
                      - Removed unused imports (Suspense, lazy, DiffPanelHeaderSkeleton, DiffPanelLoadingState, DiffPanelShell)
                      - Fixed useEffect dependency array (removed unused threadId variable)

                    The DiffPanel now loads synchronously when needed, eliminating the loading state flash and reducing component complexity. The deferred rendering is still controlled by the renderDiffContent flag to prevent unnecessary initialization.

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

Labels

size:L 100-499 changed lines (additions + deletions). vouch:unvouched PR author is not yet trusted in the VOUCHED list.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

[Bug]: Claude TodoWrite updates don't flow to the plan sidebar

3 participants