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.

Johari Cognition Quadrant Dialog Composer — DSH Plugin for…
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins
J

dsh-johari-cognition-quadrant-dialog-composer

Johari Cognition Quadrant Dialog Composer

乔哈里认知四象限对话梳理工具 / Johari cognition-quadrant dialog prompt composer — adds a button above the composer that opens a 2×2 quadrant panel (我知道/不知道 × AI知道/不知道) to groom conversation context into a structured prompt written back into the draft.

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

npx -y @deepseek-ai/dsh plugin --profile web add github:cyrus123456/dsh-johari-cognition-quadrant-dialog-composer#b4266de82ccafdcf416a1307d7a4c759c3a6e137
READMECompatibilityVersions

Compatibility and provenance

Johari Cognition Quadrant Dialog Composer is published as dsh-johari-cognition-quadrant-dialog-composer and currently resolves to version 0.1.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/27/2026

Versions

0.1.0stable
8/27/2026

Related plugins

Loading related plugins…

Latest
0.1.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
9/2/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

Related plugins

More verified plugins in ui-customization.

Web App@deepseek-ai/dsh-web-appThe dsh browser-surface bundle: the web patch layer over dsh-base plus the runtime glue plugin (frontend dist serving, web-surface prompt, bash runtime variables, URL line)Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profileExperimental Web profile layer for Agent Teams Remote and UI pluginsRemote Web Ui@linxin666/dsh-remote-web-uiScan-to-pair remote access for the dsh web GUI that shares one official interface: a QR beside the settings button pairs phones and PCs into the same Web GUI (a portrait-touch adaptation layer for phones, full desktop on PCs) through one-time tokens and rPet@linxin666/dsh-petMulti-pet companion plugin for the dsh web GUI: a registry-driven floating pet that reacts to model activity, with per-pet naming, petting/feeding interactions and an affinity score

README

dsh-johari-cognition-quadrant-dialog-composer

乔哈里认知四象限对话梳理工具 / Johari cognition-quadrant dialog prompt composer — a DSH (DeepSeek Harness) Web UI plugin.

功能

在对话输入框上方添加一个「乔哈里四象限」按钮,点击后弹出一个 2×2 象限面板:

象限位置含义
我的隐藏区左上我知道 · AI不知道 — 需要告知 AI 的背景信息
共同未知区右上我不知道 · AI不知道 — 需要共同探索的问题
公开共识区左下我知道 · AI知道 — 双方共识的背景
我的盲区右下我不知道 · AI知道 — 希望 AI 教我的领域
  • 横轴(左→右):我知道 → 我不知道
  • 纵轴(下→上):AI知道 → AI不知道

填写后点击「生成 Prompt 并填入」,自动将四象限内容组合为结构化 Prompt 写入对话输入框。

安装

通过 dsh plugin add(推荐)

dsh plugin add cyrus123456/dsh-johari-cognition-quadrant-dialog-composer

从源码构建

git clone https://github.com/cyrus123456/dsh-johari-cognition-quadrant-dialog-composer.git
cd dsh-johari-cognition-quadrant-dialog-composer
pnpm install
pnpm run build

构建产物:

  • lib/index.js — Host 端(Node 侧)
  • lib/client.js — Client 端(浏览器侧,含 CSS 注入)

手动注册到 DSH Profile

  1. 在 profiles/web/node_modules/ 下创建指向本插件的 junction
  2. 在 profiles/web/package.json 的 dsh.profile.bundles 数组中添加 "dsh-johari-cognition-quadrant-dialog-composer"
  3. 重启 DSH

技术栈

  • TypeScript + React 18
  • esbuild 构建(兼容 Node 20+)
  • CSS 运行时注入(<style> 标签,类名 johari- 前缀隔离)
  • DSH Plugin API(conversation.input.dock 插槽)

文件结构

dsh-johari-cognition-quadrant-dialog-composer/
├── package.json
├── tsconfig.json
├── cordis.patch.yml          # DSH bundle 补丁
├── scripts/
│   └── build.mjs             # esbuild 构建脚本
├── src/
│   ├── index.ts              # Host 端入口
│   └── client/
│       ├── index.ts          # Client 端入口(插槽注册 + CSS 注入)
│       ├── JohariDockEntry.tsx  # 按钮 + 模态框 React 组件
│       ├── johari.css        # 插件样式(johari- 前缀)
│       └── css.d.ts          # CSS 文本导入类型声明
└── lib/                      # 构建产物(gitignore)