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.

Hologram Dsh — DSH Plugin for DeepSeek Harness
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in
← Plugins

@a834063245/hologram-dsh

Hologram Dsh

HoloGram code-dependency graph engine + 3D viewer, packaged as a DeepSeek Harness bundle plugin. Engine binary is fetched from GitHub Releases on install (Windows x64).

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

npx -y @deepseek-ai/dsh plugin --profile web add @a834063245/hologram-dsh@10.4.0
READMECompatibilityVersions

Compatibility and provenance

Hologram Dsh is published as @a834063245/hologram-dsh and currently resolves to version 10.4.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
web
Release source
npm
Registry updated
9/20/2026

Versions

10.4.0stable
8/20/2026
10.3.0stable
8/17/2026
10.2.0stable
8/17/2026
Show 1 more versionCollapse versions
10.1.1stable
8/14/2026

Related plugins

Loading related plugins…

Latest
10.4.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
774.8 kB
Files
10
Surface
web
License
MIT
Source
npm
GitHub
★ 0
Weekly downloads
42
View source ↗Project homepage ↗
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 developer-tools.

Client Ui Git Graph@linxin666/dsh-client-ui-git-graphExternal dsh web GUI plugin: a blank-session git branch selector + Git graph, with real host-side git operations and guards, as a dsh profile bundleDoctor@linxin666/dsh-doctorTransactional rescue mode for DSH profiles with a supervised launcher, isolated recovery capsule, deterministic repairs, health monitoring, and a local Web recovery consoleSsh@linxin666/dsh-sshRemote SSH operations for the dsh web GUI: host config store (~/.dsh/dsh-ssh.json, import from ~/.ssh/config), a persistent ssh2 connection pool with jump-host support, exec / PTY web terminal / SFTP transfer / local port-forward tunnels / cluster executiFind Plugindsh-find-pluginFind DeepSeek Harness plugins inside the agent — live GitHub dsh-plugin topic search, ranked by stars.

README

@a834063245/hologram-dsh

HoloGram 的代码依赖分析引擎 + 3D 图谱,作为 DeepSeek Harness bundle 插件 分发。

把代码库变成可对话的 3D 依赖星图:

  • 35 个 MCP 图分析工具(mcp__hologram__*,注册表共 36 个 schema,symbol_history 为 legacy):直查依赖图,不用让 LLM 猜源码
  • 3D 星图:DSH 侧边栏「3D 星图」入口,全屏渲染项目依赖图(Three.js,同一引擎数据)
  • 单一数据生命周期:引擎一个进程双入口(MCP stdio + TCP),存量秒开 + watcher 增量更新

安装

前置:已安装 DeepSeek Harness 且 dsh 可用。

dsh plugin --profile web add @a834063245/hologram-dsh
dsh web

postinstall 会按平台从 GitHub Releases 下载引擎二进制(当前:Windows x64;Linux/macOS 支持在路上)。 重启后:

  • 侧边栏底部出现「3D 星图 / 🌌」按钮 → 全屏 3D 依赖图(分析当前会话工作区)
  • 35 个 mcp__hologram__* 工具进入 agent 工具箱:explore_deps、search_symbols、get_neighbors、trace_impact、find_dep_path、inspect_symbol、get_community、cluster_report、fragile_modules、detect_cycles、coupling_report、arch_blindspots、analyze_project、graph_summary、validate_project、engine_status、list_flows、trace_dataflow、find_references 等

引擎分析的项目根默认取 DSH 进程的 cwd(或当前会话工作区),可在 profile 的 cordis.patch.yml 里覆盖 hologram-engine 行的 config.projectRoot。

数据生命周期

引擎以 serve --project-root <root> --tcp 单进程运行,MCP 工具与 3D 星图共享同一份内存图:

  • 存量优先:打开项目时从 .hologram/(SQLite/快照)读回已有图,源码未变即秒回
  • watcher 增量:文件变更走增量更新,图始终新鲜
  • 显式全量:?refresh=1(星图地址栏)或 MCP analyze_project 触发全量重扫

这是什么(机制)

DSH 的 profile 插件机制:npm 包在 package.json 声明 "dsh": { "bundle": { "patch": "./cordis.patch.yml" } } 即为一个 bundle。 cordis.patch.yml 注入两行:

行 id包作用
hologram-engine本包解析引擎二进制路径,提供 hologramEngine 服务
hologram-mcp@deepseek-ai/dsh-mcp-clientstdio 拉起 hologram-engine serve --tcp,注册 MCP 工具

同时本包在 DSH web 托管同源 /hologram/ 路由(viewer SPA + /hologram/api/graph 实时图数据), 不依赖任何独立开发端口。

项目根覆盖示例

在 profile 的 cordis.patch.yml(或 $DSH_HOME/cordis.patch.yml)追加:

- id: hologram-engine
  config:
    projectRoot: D:/some/project

维护边界(重要)

dsh-bundle 是 HoloGram 的薄发布适配层,不拥有产品资产:

  • 引擎二进制:来自主仓 engine/ 构建产物(GitHub Release 附件,install.mjs 下载)
  • 3D viewer:直接构建 src-ui/src/ui 的渲染内核(vite alias),不维护内核副本
  • 本包自有代码:src/index.ts(host glue)、src/client/index.tsx(sidebar entry)、viewer/main.ts + stubs、cordis.patch.yml、scripts/install.mjs

因此主仓改了 graph 内核,dsh-bundle 下一次构建自动拿到新内核;不需要跑 vendor 同步脚本。

发布流程(维护者)

  1. 本地构建:cd engine && cargo build --release → npm run pack:bin → npm run build && npm run build:client → cd viewer && node ../../src-ui/node_modules/vite/bin/vite.js build
  2. 打 tag v<version> 并 push → GitHub Actions dsh-bundle job 构建引擎二进制并传到 Release 附件 hologram-engine-win32-x64.exe
  3. npm publish(壳包 ~200KB;postinstall 按版本号从 Release 下载二进制)

npm 包:@a834063245/hologram-dsh(公开) 二进制:GitHub Release 附件(https://github.com/834063245-creator/HoloGram/releases/download/v<version>/hologram-engine-win32-x64.exe)

本地开发(file: 安装)

# 1. 构建引擎 + 插件 + viewer(先装依赖:dsh-bundle 用 --ignore-scripts,避免 postinstall 拉二进制)
cd engine && cargo build --release
cd ../dsh-bundle && npm install --ignore-scripts && npm run pack:bin && npm run build && npm run build:client
cd viewer && node ../../src-ui/node_modules/vite/bin/vite.js build

# 2. 从 DSH checkout 用 file: 装到测试 profile
node --import tsx/esm apps/cli/src/bin.ts plugin --profile hologram-test add file:D:/HoloGramHG/dsh-bundle

注意:file: 是复制语义,改包后需 remove + add 刷新本地副本。