DeepSeek Harness plugin

HoloGram

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).

Jump to install

Source facts

Repository
834063245-creator/HoloGram
Latest update
Aug 20, 2026
Category
Tools & Capabilities
GitHub stars
24
Format
plugin
Package path
dsh-bundle
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
dsh-bundle/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/834063245-creator/HoloGram/tree/HEAD/dsh-bundle
Plugin: HoloGram
Author: 834063245-creator

Check the source files

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

File explorer2 files
README.mdSource · read only

@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 Harnessdsh 可用。

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

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

  • 侧边栏底部出现「3D 星图 / 🌌」按钮 → 全屏 3D 依赖图(分析当前会话工作区)
  • 35 个 mcp__hologram__* 工具进入 agent 工具箱:explore_depssearch_symbolsget_neighborstrace_impactfind_dep_pathinspect_symbolget_communitycluster_reportfragile_modulesdetect_cyclescoupling_reportarch_blindspotsanalyze_projectgraph_summaryvalidate_projectengine_statuslist_flowstrace_dataflowfind_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.ymlscripts/install.mjs

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

发布流程(维护者)

1. 本地构建:cd engine && cargo build --releasenpm run pack:binnpm run build && npm run build:clientcd 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 刷新本地副本。