DeepSeek Harness plugin

dsh-highlight-LETME

自动标红思考过程中的let_me

Jump to install

Source facts

Repository
Yokira404/dsh-highlight-LETME
Latest update
Aug 21, 2026
Category
Tools & Capabilities
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/Yokira404/dsh-highlight-LETME
Plugin: dsh-highlight-LETME
Author: Yokira404

Check the source files

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

File explorer3 files
README.mdSource · read only
README language

Languages: English | 简体中文

【插件】自动标注LetMe — dsh-plugin-letme-annotator

A DSH Desktop / DeepSeek Harness client plugin that watches the assistant's thinking blocks and, whenever the reasoning text contains let me (case-insensitive), places a red badge “出现了 let me” right after the Think label and highlights every actual occurrence of the phrase in red at its exact position inside the reasoning text.

  • Works while reasoning is streaming; the badge appears the moment let me

shows up and disappears again if the text is rewritten without it.

  • Counts occurrences precisely: 出现了 let me ×2 for repeated matches. The

count equals the number of matches in the full reasoning text of that step (one badge per Think row).

  • Position marking: in the collapsed row the matching words in the visible

summary line are highlighted; once expanded, every match in the full reasoning body is highlighted (CSS Custom Highlight API). The old whole-row left accent bar is used only as a fallback when that API is unavailable.

  • Detects matches beyond the first line even while the Think row is collapsed

(it reads the session snapshot, with a DOM-text fallback).

<img width="614" height="202" alt="屏幕截图 2026-08-20 174445" src="https://github.com/user-attachments/assets/f8d7c3df-8c5e-4fed-bb0b-1a0f9fb618fa" />

Install

The plugin is already installed into the desktop profile (~/.dsh/profiles/desktop): a junction at ~/.dsh/profiles/node_modules/dsh-plugin-letme-annotator plus an entry in the profile manifest's dsh.profile.bundles. Restart DSH Desktop to activate.

Manual install elsewhere: junction the autoHighlight_LetMe package folder into ~/.dsh/profiles/node_modules/ and add dsh-plugin-letme-annotator to dsh.profile.bundles in ~/.dsh/profiles/desktop/package.json, then restart.

Layout

  • lib/client.js — browser half (dsh.client bundle, lazy-CJS factory format)
  • lib/index.js — host loader entry (no-op)
  • cordis.patch.yml — loader patch composing this package into the profile
  • package.jsondsh.client + dsh.bundle.patch declarations
  • test/smoke.mjs — browser-logic smoke tests (stubbed DOM + session; the

fake DOM notifies the MutationObserver like a real browser, so the runaway reconcile-loop freeze regression is covered)

  • test/compose-check.mjs — loader-patch composition check via dsh-app-boot
  • test/repro-loop.mjs — standalone freeze reproduction / settle check

Customize

Edit the constants at the top of lib/client.js:

const PATTERNS = [/\blet me\b/giu];   // match patterns
const BADGE_LABEL = "出现了 let me";  // badge text

Then restart DSH Desktop.