DeepSeek Harness plugin

dsh-ui-easyfold

Easy-fold plugin for the dsh Web GUI: sticky Think fold row and fold scroll compensation for long expanded content

Jump to install

Source facts

Repository
MrTrujay/dsh-ui-easyfold
Latest update
Aug 19, 2026
Category
UI Enhancements
GitHub stars
0
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/MrTrujay/dsh-ui-easyfold
Plugin: dsh-ui-easyfold
Author: MrTrujay

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer4 files
README.mdSource · read only
README language

@trujaycc/dsh-ui-easyfold

English | 中文

Easy-fold plugin for the dsh Web GUI: two browser-side behaviors that keep long expanded content easy to read and fold.

Problem

Some disclosure components have a reading ergonomics problem: when the folded content is very long, expanding it and scrolling down to read carries the fold button out of the screen; to collapse the content again, the user must first scroll back to the top of the content to reach the button, interrupting their reading position.

![Problem illustration: after expanding long content, the fold button scrolls out of the screen](screenshots/pic1.png)

![Plugin effect: after expanding, the fold row sticks to the top and is always ready to collapse](screenshots/pic1.png)

What the plugin does

Both behaviors run entirely in the browser:

  • Sticky fold row — while the content is expanded, the fold row pins to the top of the conversation scrollport, staying visible and clickable during reading; the pin releases by itself once the whole content has scrolled out, without changing the layout.
  • Collapse scroll compensation — folding a pinned component (click, Enter, or Space on the row) pulls the scrollport back to the fold row's position — the spot the pinned row occupied. The viewport stays at the component node instead of landing below it; a fold of a row already inside the viewport stays exactly in place.

Affected UI components

ComponentStatus
Think (reasoning fold row)Implemented
Other long-content fold componentsPlanned

Install

Requires a dsh deployment with the Web surface. Install into the profile you use for pnpm dsh web:

pnpm dsh plugin --profile web add @trujaycc/dsh-ui-easyfold

pnpm dsh plugin add installs the package into the profile and registers its bundle patch layer automatically (the profile manifest's dsh.profile.bundles gains the entry). Restart pnpm dsh web to compose the new row, then open the Web page.

To uninstall:

pnpm dsh plugin --profile web remove @trujaycc/dsh-ui-easyfold

Develop

pnpm install
pnpm run typecheck
pnpm test
pnpm run build    # emits lib/index.js and lib/client.js (ModuleLoader handoff)

The client bundle resolves react from the dsh Web loader's platform module table; the package declares no other runtime dependencies. To test a local checkout before publishing, install it by path or tarball:

pnpm pack
pnpm dsh plugin --profile web add ./trujaycc-dsh-ui-easyfold-0.1.0.tgz

Model Experience

None. Presentation-only client plugin: no host services, tools, or session events; nothing reaches a model request or the session log.

#### KV Cache effect

None.

Known Limitations and Deferred Work

  • Product DOM contract coupling — both behaviors hook the dsh Web chat DOM by its stable attributes (data-conversation-scroll, data-variant="think", data-open, data-disclosure-row). A product markup change silently disables them.
  • First scrollport only — the compensation targets the first data-conversation-scroll in the document; side-by-side session windows (subagent views) keep a single behavior owner.
  • Bounded commit patience — the compensation waits up to eight animation frames for the product's React commit; a deferred commit beyond that window skips the correction (no scroll damage, just no pull-back).