Skip to content

zhaoolee/notes

1413Last commit Aug 15, 2026

notes DSH plugin

A web-based note-taking tool that integrates with DSH to let agents generate and export notes with multiple themes (warm paper, night mode, iPhone memo, Bear minimal). Supports image insertion, one-click paste to WeChat Official Account, and Markdown/PNG export. Fully deployable via Docker, with optional DeepSeek API for text polishing.

How to install the notes DSH plugin

dsh plugin --profile web add @zhaoolee/dsh-notes

Copying does not run this command. Review the repository and version before installing the notes DSH plugin.

notes DSH plugin data source

notes DSH plugin snapshot date: Aug 16, 2026

discovered

What the notes DSH plugin can do

  • Export DSH conversations as styled notes (PNG or Markdown) with multiple themes.
  • Insert images into notes and download full Markdown resource packages.
  • One-click paste formatted notes to WeChat Official Account editor.
  • Customizable bottom branding text (click to edit).
  • Multi-user isolation with separate accounts for AI and humans.
  • Built-in browser persistence to prevent data loss on page close.
  • Optional DeepSeek integration for grammar check, bold emphasis, and simplification.
  • RESTful API for Hermes Agent / OpenClaw skill integration.

Where the notes DSH plugin fits

  • Export an AI assistant conversation as a shareable note image.
  • Create a weekly news digest in note format with images and Markdown.
  • Prepare a polished article for WeChat Official Account with one-click paste.
  • Collaboratively manage notes with AI using separate accounts.
  • Self-host a private note service with Docker for team use.

Who the notes DSH plugin is for

  • AI enthusiasts who want to share DSH conversations visually.
  • Content creators needing quick note-to-article workflows.
  • Teams requiring a lightweight, self-hosted note tool with AI integration.
  • Developers building agents that need to generate formatted notes.

notes DSH plugin limitations

  • DeepSeek text polishing requires a separate DeepSeek API key and configuration.
  • Multi-user sync and cloud workspace require setting up a database and admin credentials.
  • The plugin is only available for DSH profiles with 'web' type; not for CLI-only profiles.
  • Public deployment needs HTTPS reverse proxy for security.

notes DSH plugin: from the repository README

Quoted from the zhaoolee/notes README, the upstream source of the notes DSH plugin. Copyright remains with the original authors.

| 支持手机版 | 一键发送公众号 | | --- | --- | | ![](./README.assets/a1cc07be6396cb67288b2cebacc26b6746aa0409d976f230b762fcc467706ccc.gif) | ![](./README.assets/ef2ef8e599f5afb747e1c78f8bbb38bc4ce8209070cb699552607507dac63b6b.gif) | - 一个锤子便签风格的导出器,预览与图片导出支持**暖白纸感**、**深夜便签**、**iPhone 备忘录深浅模式**和 **Bear 极简排版**。 - 可用来分享与openclaw的对话记录。 - 完美复刻锤子便签网页版和PC版,支持多便签,分类存储。 - 支持Docker一键私有化部署 - 纯WEB应用,无需安装任何App,打开即用 - 支持PC端和手机版,多端数据同步,支持公网部署 - 支持图片插入。 - 支持一键粘贴到公众号助手。 - 支持直接导出便签为图片,或复制为markdown格式进行分享。 - 自带浏览器持久化,关闭页面也不会丢失数据。 - 开源免费,可私有化部署。 - 工匠精神沁入AI,可以通过AI Skill直接调用工具,生成便签。 - 支持自定义底部标识(点击即可编辑) - API原生封装支持Hermes Agent,OpenClaw直接通过skill驱动管理便签 - 支持 DeepSeek Harness(DSH),让智能体将对话导出为锤子便签。 - 支持接入DeepSeek润色书写内容,语法标点检查,重点加粗,复杂概念通俗化释义。 - 支持一键下载包含图片的Markdown资源包 - 支持下载为html离线查看 ## 通过DSH调用 可以在 DSH 的“插件市场”中搜索 `notes` 直接安装;源码仓库已经携带预编译产物, 无需开启 `allowBuilds`。也可以通过命令行安装 npm 版本: ``` dsh plugin --profile web add @zhaoolee/dsh-notes ``` 安装后请重启目标 profile,使插件生效。重启后,在 DeepSeek Harness 对话中说:**把我们的对话导出成便签**, 智能体会自动整理当前对话并调用插件生成便签。 | Deepseek Harness 生成分享便签 | 导出效果 | | --- | --- | | ![](./README.assets/b66a25f62ae0f1ab7f0ef0f71540594ac5c2a4c57b63bbfa4e693693fafb61dc.png) | ![](./README.assets/def783d53d1c75b1e8f74ff29c4bd4b460

Read the full READMEThe repository declares no license. Check with the authors before using it.

notes DSH plugin questions

How do I install the notes plugin in DSH?

Run `dsh plugin --profile web add @zhaoolee/dsh-notes` in your terminal. You can also search for 'notes' in the DSH plugin marketplace. After installation, restart the DSH profile for the plugin to take effect.

How do I export a conversation as a note?

After installing the plugin, in a DSH conversation, say 'export our conversation as a note'. The agent will automatically process the dialogue and generate a styled note. The note will be displayed in the web interface and can be downloaded as PNG or Markdown.

Can I use the note tool without DSH?

Yes, the tool is a standalone web application. You can run it via Docker (`docker run -d -p 18080:3001 zhaoolee/notes:latest`) and access it at http://localhost:18080. It works as a normal note editor with image support and export features.

How do I enable multi-user support?

Set up a `.env` file with `SUPERADMIN`, `SUPERADMINPASSWORD`, and a high-entropy `SESSION_SECRET`. Then mount the storage volumes. When you start the Docker container with these env vars, the admin panel will be available for creating separate accounts for AI and humans.

Can I use DeepSeek to polish my notes?

Yes, but you need to configure a DeepSeek API key. The feature will then correct grammar, bold important concepts, and simplify complex terms. It is optional and can be enabled through the settings.