Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

[Bug]: UI slows down as the conversation grows: streaming markdown re-parse, main-thread highlighting, and full session rebuild on approval

未关闭
#115 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
5/5
预计耗时
一周以上
新手友好度
25/100
Issue 类型
缺陷
描述清晰度
需要澄清
活跃度
活跃
技术栈
javascript, markdown, wasm

调研方向

Start by comparing the shipped bundle references in out/renderer/assets/index-RTchhMTQ.js:104-105 and :236 with their source counterparts, then inspect workspace-screen-BQcc80qC.js:1389 and :1422. Reproduce a long streaming conversation, an approval, and chat switching while measuring main-thread work. Done should mean those flows remain responsive without work scaling unnecessarily with transcript length.

由索引模型根据 Issue 内容生成。

描述

Summary

The GUI becomes sluggish well before the machine is actually under load. Reading the shipped renderer bundle, I think there are a few places where main-thread work grows with conversation length rather than staying constant. I could not attach a profiler recording since this build ships without source maps, so the file and line references below are into the minified out/renderer/assets bundle, and the function names are the minified ones. I would rather point at specific code than just say "it feels slow".

Reproduction steps

  1. Open a project and work through a conversation that grows to a few thousand messages, with several code blocks and many tool calls.
  2. Let the assistant stream a long reply.
  3. Approve a permission request or answer a question.
  4. Click another chat in the left panel, then switch back.

Expected behavior

Streaming should stay responsive regardless of how much is already in the transcript, and switching chats should be immediate. Work that does not depend on the full transcript length should not be repeated on every token.

Actual behavior

  1. While a reply streams in, typing and scrolling stutter, and it gets noticeably worse as the reply gets longer.
  2. Approving a permission request freezes the UI for a moment, longer on long conversations.
  3. Switching chats freezes the transcript for a second or two, matching what is described in #113.

What I found in the bundle

out/renderer/assets/index-RTchhMTQ.js:236 configures the markdown renderer with mode: "streaming", and the memo comparator next to it bails out on e.content !== t.content. As far as I can tell, every token that arrives changes content, which means the whole block gets re-parsed and the DOM diffed again. For a reply of a few thousand tokens that is a few thousand full re-parses, all on the main thread.

out/renderer/assets/index-RTchhMTQ.js:104-105 builds the highlight cache key by walking the whole string, roughly for (let l = 0; l < e.length; l++) s = (s << 5) + s + e.charCodeAt(l) | 0. That loop runs before the cache lookup, so it happens even on a hit. On a miss it then calls codeToTokens synchronously, which is the Oniguruma WASM tokenizer running on the main thread. The cache is also small, around 300 entries and 2e6 tokens, so in a long session blocks get evicted and tokenized again. I did not see tokenizeMaxLineLength passed to codeToTokens.

out/renderer/assets/workspace-screen-BQcc80qC.js:1422 has a function that maps over every message in a session, shallow-copies the one that holds the permission item, and returns a brand new session object. Since the store is consumed through useSyncExternalStore, that new top-level reference re-renders every subscriber. The cost scales with the number of messages, and because the same path runs on each approval, it compounds over a session.

out/renderer/assets/workspace-screen-BQcc80qC.js:1389 starts a setInterval at 1000ms for relative timestamps like "3m 12s". It only stops when the subscriber set empties, so as long as one such label is on screen it keeps ticking and waking everything subscribed to it.

out/renderer/assets/workspace-screen-BQcc80qC.js:1389 also renders the tool call list with a plain e.map(...), and I could not find a virtual scroller in the bundle for the transcript or the tool list. react-window, @tanstack/virtual and react-virtual are all absent. The only virtualizer string in the bundle belongs to the diff viewer. A run with several hundred tool calls mounts all of them as DOM nodes. The checkpoint dialog does something similar with a max-h plus overflow-y-auto, which clips visually but still creates every node.

Things I checked that look fine

Mentioning these so nobody spends time on them: terminal scrollback is at the xterm default of 1000 lines and the app does not override it, PTY replay is chunked at 64KB with throttling, resize handling is already rAF-throttled, and the URL detection buffer is capped at 256 characters. Those are reasonable and I would leave them alone.

Ideas, if useful

  • Parse only the unfinished trailing block while streaming, and freeze completed blocks behind memo. Or expose a switch between streaming and static parsing.
  • Move highlighting into a worker, key the cache off the string reference or a cheap sample instead of a full scan, and pass tokenizeMaxLineLength so very long blocks degrade to plain text.
  • Index permission items by id so an approval updates one message rather than rebuilding the session, and subscribe per message.
  • Virtualize the transcript and the tool list.
  • Drop the relative-time tick to something like 30s, and only run it when there is a running task.

None of these are exposed as settings today, which is part of why there is nothing to toggle when the UI gets slow.

Screenshots, recordings, or sanitized logs

No recording attached. Findings come from reading the shipped bundle on Windows, GUI 0.1.40, and I have not verified them against a profiler, so please treat the above as a starting point rather than a measurement.

Safety check

  • I removed credentials and private project information from this report.
主要语言
Shell
星标
85
派生
5
平均合并
2 小时 46 分钟
30 天内合并 PR
1

环境准备

这个项目没有提供开发容器、Dockerfile 或贡献指南,环境需要你自己搭建:先看它的 README,通用步骤见我们的新手贡献指南。

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

CommandCodeAI/desktop 的其他 Issue

查看 CommandCodeAI/desktop 的全部 Issue

相似的 Issue

更多 Shell/Bash Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。