DeepSeek Harness plugin

dsh-sticky-notes-hufang36

便签 (sticky notes) client plugin for the dsh webui: floating, resizable post-it notes with markdown text and image notes, per-conversation binding, archived in browser localStorage.

Jump to install

Source facts

Repository
hufang360/dsh-sticky-notes
Latest update
Aug 22, 2026
Category
UI Enhancements
GitHub stars
1
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/hufang360/dsh-sticky-notes
Plugin: dsh-sticky-notes-hufang36
Author: hufang360

Check the source files

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

File explorer4 files
README.en.mdSource · read only
README language

dsh-sticky-notes — Sticky Notes (DSH Web client plugin)

English | 中文

Jot down ideas, let the agent persist them!

<p align="center"> <img src="assets/cover.png" alt="dsh-sticky-notes cover" width="720"> </p>

Sticky notes floating over the DeepSeek Harness WebUI for text, todos and images — draggable, resizable, collapsible and archivable. They can also be bound to a conversation, so opening the matching conversation automatically shows its notes.

Screenshots

<p align="center"> <img src="assets/001.png" alt="Screenshot 1" width="360"> <img src="assets/002.png" alt="Screenshot 2" width="360"> <img src="assets/003.png" alt="Screenshot 3" width="360"> </p>

Installation

# Install from GitHub (pure JS, no build authorization required)
dsh plugin --profile web add github:hufang360/dsh-sticky-notes

On first install, restart dsh for the plugin to take effect. If no restart prompt appears, hard-refresh the browser (macOS Cmd+Shift+R). The notes entry appears at the bottom of the sidebar, above the settings button.

> This package is a standard dsh bundle: it ships its own cordis.patch.yml (declaring dsh.bundle), so dsh plugin add handles both the dependency and the layer registration in one command.

Data & storage

  • Notes, preferences and settings are stored in the browser's localStorage:

- dsh.web.sticky-notes.v5.notes (notes array) - dsh.web.sticky-notes.v5.prefs (hidden / entryPos) - dsh.web.sticky-notes.v5.settings (settings panel filter)

  • Images are stored as compressed Data URLs.
  • Data lives only in the browser locally and is not synchronized across devices / browsers.

> Note: changing the WebUI port, or switching between localhost:3080 and 127.0.0.1:3080, makes previously saved data invisible, because they are tracked separately per origin.

Development & packaging

node --check lib/client.js   # syntax check
git commit -am "..."         # regular commit
pnpm pack                    # produce sticky-notes-<version>.tgz
npm publish                  # (optional) publish to npm
  • lib/client.js — the only logic file (browser bundle).
  • lib/index.js — host-side no-op entry.
  • cordis.patch.yml — the bundle's patch layer (registers the sticky-notes plugin row).

License

MIT