DeepSeek Harness Plugin Hub

发布与管理完整 Harness Profiles,发现适合你的插件。

探索

插件目录环境预设文档中心动态

社区

发布插件联系我们报告问题

相关链接

Plugin Hub GitHubDeepSeek Harness 官方项目系统状态隐私说明
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

独立、非官方社区项目,与 DeepSeek 官方无隶属、授权或背书关系。

Isingq Dsh Plugin — DeepSeek Harness 插件(DSH Plugin)
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录
← Plugins

@ising-tech/isingq-dsh-plugin

Isingq Dsh Plugin

用于 IsingQ 引导式 QUBO 建模与求解的原生 DeepSeek Harness 插件

插件会安装到这里;不确定时保持 web。

npx -y @deepseek-ai/dsh plugin --profile web add @ising-tech/isingq-dsh-plugin@0.5.0
README兼容性版本

兼容性与来源证明

Isingq Dsh Plugin 以 @ising-tech/isingq-dsh-plugin 发布,当前版本为 0.5.0。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
npm
Registry 更新时间
2026/9/21

版本

0.5.0stable
2026/8/25
0.4.3stable
2026/8/21
0.4.2stable
2026/8/19
查看其余 1 个版本收起版本
0.4.1stable
2026/8/19

相关插件

正在加载相关插件…

最新版
0.5.0
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
24.4 kB
文件数
6
Surface
any
许可证
Apache-2.0
发布源
npm
GitHub
★ 2
周下载
51
最近提交
2026/8/26
查看源码 ↗项目主页 ↗
README Badge

点击下方 Badge 复制 Markdown,粘贴到 README 即可。

这是你的 Plugin?认领权益 · 优先安全扫描

验证 package.json 声明的 GitHub 仓库,即可管理这个公开页面。认领后,Hub 会优先安排当前版本的安全扫描,并在通过后公开展示结果。

认领这个 Plugin →
报告问题

相关插件

继续浏览 agents-orchestration 分类下经过校验的插件。

Headless@deepseek-ai/dsh-headlessdsh one-shot bundle:基于 dsh-base 的直接核心 Agent/Session 运行器,不包含 Host、HTTP 或浏览器层Experimental Agent Team Web Profile@deepseek-ai/dsh-experimental-agent-team-web-profile用于 Agent Teams Remote 和 UI 插件的实验性 Web 配置层Experimental Agent Team Profile@deepseek-ai/dsh-experimental-agent-team-profile基于 dsh-base 启用 Agent Teams 的实验性配置文件包Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

@ising-tech/isingq-dsh-plugin

Native IsingQ integration for DeepSeek Harness. The Plugin registers nine typed tools in the DSH process and reuses @ising-tech/isingq-core for QUBO guidance, validation, public knowledge, HTTPS solving, and local result records.

中文说明

Install

Install the Plugin into the DSH Profile you actually use:

dsh plugin --profile <profile> add @ising-tech/isingq-dsh-plugin

Replace <profile> with the real Profile name and confirm that nine isingq_* tools are available. Restart the running Profile only if it did not reload the new bundle. Do not enable this native Plugin and an IsingQ MCP bridge in the same Profile.

Uninstall from the same Profile:

dsh plugin --profile <profile> remove @ising-tech/isingq-dsh-plugin

Configure an API Key

  1. Sign in or register at IsingQ Cloud.
  2. Open Settings → API → Create API and create a personal API Key.
  3. Ask the Agent to call isingq_api_key_setup, then enter the Key in the operating system's private prompt.

The API Key is stored in a private local file and used only for HTTPS authentication with the IsingQ API. It does not enter Agent chat, tool arguments, DSH Profile configuration, issues, or logs.

A Headless deployment administrator may inject ISINGQ_API_KEY before the Agent process starts. The runtime does not persist it. The Agent must not inspect, set, copy, or echo this administrator-provided value.

The private prompt starts only local operating-system components: osascript on macOS, PowerShell Forms on Windows, or zenity, kdialog, and systemd-ask-password on Linux. It does not download or execute remote scripts.

Solve safely

Before isingq_solve_start, the Agent must show the variable mapping, objective, constraints, penalties, matrix summary, and SHA-256, then obtain your explicit confirmation.

Once the DSH Host permits isingq_solve_start, the Plugin creates the remote task immediately. It does not open a second operating-system solve prompt; any additional confirmation is controlled by the Host's tool-permission policy.

Tools

ToolPurposeNetwork
isingq_api_key_setupConfigure or replace the local API Key through a private OS promptNo
isingq_knowledge_getRead versioned public IsingQ knowledgeNo
isingq_modeling_guide_getGet QUBO modeling and constraint guidanceNo
isingq_qubo_validateValidate a QUBO and produce a matrix summaryNo
isingq_solve_startSubmit a confirmed QUBO solve taskYes
isingq_solve_pollQuery task status once and save the resultYes
isingq_solve_result_getRead a locally stored solve resultNo
isingq_resource_listList local public knowledge resourcesNo
isingq_resource_readRead one local public knowledge resourceNo

Data boundary

Modeling guidance, QUBO validation, public knowledge, and result records stay on the user's computer. A QUBO matrix is sent to IsingQ only after the confirmed solve tool is called.

API requests use HTTPS. Matrix upload uses a short-lived signature and does not carry the personal API Key. The Key remains outside Agent-visible inputs and outputs.

Compatibility

  • Node.js 18 or later.
  • Minimum supported DeepSeek Harness baseline: 0.1.0-rc.7.
  • @deepseek-ai/dsh-tools peer range: >=0.1.0-rc.7 <0.2.0-0.
  • Current development validation version: 0.1.0-rc.8.

The peer range permits later compatible 0.1 releases, but versions newer than the current validation baseline are not automatically claimed as runtime-verified.

Troubleshooting

  • Tools are missing: verify that the package is present in the target Profile and reconciled into dsh.profile.bundles, remove any duplicate IsingQ MCP bridge, then restart the Profile only if it did not reload.
  • API Key is missing: call isingq_api_key_setup; never paste the Key into Agent chat.
  • Installation reports a peer conflict: confirm that DSH is within the documented 0.1 compatibility range.

中文说明

这是面向 DeepSeek Harness 的 IsingQ 原生 Plugin。它在 DSH 进程内注册 9 个 typed tools,并复用 @ising-tech/isingq-core 提供 QUBO 建模引导、校验、公开知识、HTTPS 求解和本地结果记录。

安装

安装到实际使用的 DSH Profile:

dsh plugin --profile <profile> add @ising-tech/isingq-dsh-plugin

将 <profile> 替换为真实 Profile 名,并确认出现 9 个 isingq_* 工具。只有正在运行的 Profile 没有重新加载新 Bundle 时才重启。不要在同一个 Profile 中同时启用该原生 Plugin 和 IsingQ MCP Bridge。

从同一 Profile 卸载:

dsh plugin --profile <profile> remove @ising-tech/isingq-dsh-plugin

配置 API Key

  1. 登录或注册玉盘·伊辛云。
  2. 进入 设置 → API → 创建API,创建个人 API Key。
  3. 让 Agent 调用 isingq_api_key_setup,在操作系统私密输入框中填写 Key。

API Key 保存在本机私有文件中,只用于 IsingQ API 的 HTTPS 鉴权。它不会进入 Agent 对话、工具参数、DSH Profile 配置、Issue 或日志。

Headless 部署管理员可以在 Agent 进程启动前注入 ISINGQ_API_KEY,运行时不会持久化该变量。Agent 不得检查、设置、复制或回显管理员预置的值。

私密输入框只启动本机系统组件:macOS 使用 osascript,Windows 使用 PowerShell Forms,Linux 使用 zenity、kdialog 或 systemd-ask-password。它不下载或执行远程脚本。

安全求解

调用 isingq_solve_start 前,Agent 必须展示变量映射、目标函数、约束、Penalty、矩阵摘要和 SHA-256,并取得你的明确确认。

DSH Host 放行 isingq_solve_start 后,Plugin 会立即创建远端任务,不再弹出第二个操作系统求解确认框。是否增加确认由 Host 的工具权限策略决定。

工具

工具作用是否联网
isingq_api_key_setup通过操作系统私密输入框配置或更换 API Key否
isingq_knowledge_get查询版本化的 IsingQ 公开知识否
isingq_modeling_guide_get获取 QUBO 建模与约束引导否
isingq_qubo_validate校验 QUBO 并生成矩阵摘要否
isingq_solve_start提交已经确认的 QUBO 求解任务是
isingq_solve_poll查询一次任务状态并保存结果是
isingq_solve_result_get读取本机保存的求解结果否
isingq_resource_list列出本机公开知识资源否
isingq_resource_read读取一项本机公开知识资源否

数据边界

建模引导、QUBO 校验、公开知识和结果记录在用户电脑上完成。只有用户确认并调用求解工具后,QUBO 矩阵才会提交到 IsingQ。

API 请求使用 HTTPS。矩阵上传使用短期签名,不携带个人 API Key;Key 不会进入 Agent 可见的输入或输出。

兼容性

  • Node.js 18 或更高版本。
  • DeepSeek Harness 最低兼容基线:0.1.0-rc.7。
  • @deepseek-ai/dsh-tools peer range:>=0.1.0-rc.7 <0.2.0-0。
  • 当前开发验证版本:0.1.0-rc.8。

该范围允许后续兼容的 0.1 版本安装,但不会把高于当前验证基线的版本自动描述为已经完成运行验证。

故障排查

  • **没有出现工具:**确认包已安装到目标 Profile 并进入 dsh.profile.bundles,移除重复的 IsingQ MCP Bridge;只有 Profile 未重新加载时才重启。
  • **缺少 API Key:**调用 isingq_api_key_setup,不要把 Key 粘贴到 Agent 对话。
  • **安装出现 peer 冲突:**确认 DSH 位于文档声明的 0.1 兼容范围内。