DeepSeek Harness plugin

dsh-annotator

DSH conversation annotator: select transcript text, attach a note in a popup, then send the compiled quote+note pair through the composer.

Jump to install

Source facts

Repository
cw1999mm/dsh-annotator
Latest update
Aug 18, 2026
Category
Docs & Rendering
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/cw1999mm/dsh-annotator
Plugin: dsh-annotator
Author: cw1999mm

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

dsh-annotator

English | 中文

DSH (DeepSeek Harness) community plugin: annotate the transcript. Select any text in the conversation, click the floating Annotate mark, write your note — the send arrow compiles the quote (as a blockquote) plus your note and submits it through the composer.

Features

  • Select transcript text → a floating annotate mark appears right below the selection.
  • Only selections wholly inside the chat transcript ([data-chat-flow]) get a mark; a drag that leaves the transcript is ignored.
  • Modal editor shows the quoted source plus a note field (⌘/Ctrl + Enter to send).
  • The send arrow compiles > quoted text + your note and submits it through the composer.
  • English UI copy.
  • Cleanup is fully ctx.effect-driven — no global listeners leak on unload.

Requirements

  • A DeepSeek Harness web profile (any profile name; the examples below use web).

Installation

lib/ is committed, so neither install path needs a build step.

Option A — tarball

cd dsh-annotator
npm pack                        # → dsh-annotator-0.1.0.tgz
dsh plugin --profile web add ./dsh-annotator-0.1.0.tgz

Option B — git (latest)

dsh plugin --profile web add github:cw1999mm/dsh-annotator

Then restart (or refresh) the web UI. The plugin loads as the dsh-annotator bundle layer; remove it with:

dsh plugin --profile web remove dsh-annotator

Manual / development install

Link the package into your profile's node_modules and add the bundle row:

# from the profile directory (e.g. ~/.dsh/profiles/web)
pnpm add link:<absolute path to this project>

Then append to the profile's cordis.patch.yml:

- insert:
    - id: dsh-annotator
      name: dsh-annotator

Usage

1. Drag to select any span of text in the chat transcript. 2. Click the floating Annotate button. 3. Write your note and click the send arrow (or press ⌘/Ctrl+Enter) — the message > quoted text\n\nnote is compiled and sent through the composer.

Development

src/ is the TypeScript source; lib/ is the committed build output.

Typechecking needs the DSH client type packages. The shipped tsconfig.json maps them via paths to a sibling deepseek-harness checkout (the layout this plugin was developed against); adjust the paths to your checkout:

pnpm typecheck   # tsc -p tsconfig.json (noEmit)

Rebuilding lib/ (the browser bundle) uses the DSH repo's tsdown toolchain from a checkout that includes the client packages; the committed lib/client.js is the canonical runtime artifact.

License

[MIT](./LICENSE) © 2026 cw1999mm