DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Plugin Letme Annotator — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
P

dsh-plugin-letme-annotator

Plugin Letme Annotator

let me

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:Yokira404/dsh-highlight-LETME#621574f58d123785636b66fa0fa677f8c053eef2
READMECompatibilityVersions
屏幕截图 2026-08-20 174445

Compatibility and provenance

Plugin Letme Annotator is published as dsh-plugin-letme-annotator and currently resolves to version 1.0.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
github
Registry updated
8/20/2026

Versions

1.0.0stable
8/20/2026
Latest
1.0.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
web
License
MIT
Source
github
GitHub
★ 0
Weekly downloads
0
Last push
8/21/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue

README

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).
屏幕截图 2026-08-20 174445

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.json — dsh.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.