DeepSeek Harness Plugin Hub

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

探索

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

社区

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

相关链接

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

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

Anchored Standard — DeepSeek Harness 插件(DSH Plugin)
← Plugins
A

dsh-anchored-standard

Anchored Standard

具备任务感知能力的两阶段 DeepSeek Harness 预设:首次请求使用 spec/react/weak 锚点(bash+read±edit/write),首次工具调用后使用完整的 Standard 工具目录。

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

npx -y @deepseek-ai/dsh plugin --profile web add github:Jungod1121/dsh-anchored-standard#560530f0e1af6dba3528ac8962f5e5e63951b1bb
README兼容性版本

兼容性与来源证明

Anchored Standard 以 dsh-anchored-standard 发布,当前版本为 1.2.1。Plugin Hub 会校验它的 manifest,并保存精确安装来源,便于复现安装结果。

DSH 兼容范围
*
运行环境
any
发布来源
github
Registry 更新时间
2026/8/20

版本

1.2.1stable
2026/8/20

相关插件

正在加载相关插件…

最新版
1.2.1
DSH
*
HMR
重启进程
Tree shaking
未声明可安全裁剪
解包体积
未提供
文件数
未提供
Surface
any
许可证
MIT
发布源
github
GitHub
★ 25
周下载
0
最近提交
2026/8/16
查看源码 ↗
README Badge

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

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

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

认领这个 Plugin →
报告问题
DeepSeek Harness Plugin Hub
ProfilesPlugins分类动态文档登录管理 Profiles
ProfilesPlugins分类动态文档登录

相关插件

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

Web App@deepseek-ai/dsh-web-appdsh 浏览器界面捆绑包:位于 dsh-base 之上的 Web 补丁层,加上运行时粘合插件(提供前端 dist、Web 界面提示符、bash 运行时变量和 URL 行)Sdk Minimal@deepseek-ai/dsh-sdk-minimal独立的最小 SDK 配置包:JSON-RPC、一个 DeepSeek 适配器、持久化 Shell 和 JSONL 会话Sdk App@deepseek-ai/dsh-sdk-appdsh SDK 配置包:基于 dsh-base 提供 stdio JSON-RPC 服务和进程生命周期管理Subagent Codex@deepseek-ai/dsh-subagent-codex基于官方 app-server 协议的一次性 Codex 子代理提供程序

README

dsh-anchored-standard

Anchor the first request. Unlock the full stack.

A two-phase agent preset for DeepSeek Harness: bootstrap DeepSeek V4 Pro with the Minimal-aligned prompt and two tools, then expose the complete Standard catalog after the first durable tool call or reply.

中文说明 · Landing page · Design origin


The one-line idea

V4 Pro's ability ceiling is high — but which reasoning strategy it uses is decided by what the first API request shows it. The community evaluation at xiaobright/modeltest measured:

PresetFirst request seesFull task seesProject2 V4.1b (max)
Standard25 tools + long prompt25 tools91 / 92
Minimal1-line prompt + 2 tools2 tools only99 / 96 — but too narrow for real work
Anchored Standard1-line prompt + 2 toolsall 25 tools98 / 99

The gain comes from anchoring the first-turn trajectory — not from keeping the tool surface small forever. This preset keeps Minimal's brain and gives it Standard's hands.

How it works

sequenceDiagram
    participant U as User
    participant A as Agent loop
    participant M as DeepSeek V4 Pro

    U->>A: first message (new session)
    A->>M: request #1<br/>task-matched anchor persona<br/>tools: bash + read (± edit/write)
    Note over M: reasoning chain anchors on the task-matched scaffold
    M->>A: first tool/call
    Note over A: promotion signal (durable session event)
    A->>M: request #2<br/>same persona · all 25 Standard tools
    Note over M: full-capability work continues on the anchored trajectory
  1. The session's first user message picks the anchor:

    TaskPersonaFirst-request tools
    spec — fix / maintain / debugMinimal's exact promptbash + read + edit
    react — build / create from zerohands-on doer promptbash + read + write
    weak — ambiguousmodel self-picks (Pro: classify instruction)bash + read

    glob/grep stay out of every bootstrap catalog — measured trajectory boundary for V4 Pro; edit/write are anchor-safe.

  2. On request #1 the persona is the ONLY prompt section and runtime contexts are cleared — the cleanest possible opening.

  3. After the session records its first durable tool/call, every later request sees the full Standard catalog; the chosen persona stays constant and the remaining sections (plan-mode etc.) return. Nothing is injected after turn one (measured: post-anchor guidance hurts Pro).

Mode and promotion state live in durable session events, so refresh and resume preserve them.

Install

Option A — installer bundle (recommended)

dsh plugin --profile web add github:Jungod1121/dsh-anchored-standard

Restart DeepSeek Harness. The bundle copies the preset into $DSH_HOME/.agent-presets/anchored-standard/ (idempotent — local edits are never overwritten), then create a blank session and select Anchored Standard (experimental). To make it the default preset for new sessions:

# $DSH_HOME/settings.yaml
agent-presets:
  default: anchored-standard

Option B — manual preset directory

dsh_home="${DSH_HOME:-$HOME/.dsh}"
mkdir -p "$dsh_home/.agent-presets"
cp -R preset "$dsh_home/.agent-presets/anchored-standard"

Verify

Export the session JSONL and inspect request/header events — the first header contains only bash/read, every later header the full catalog:

seq 18  -> 2 tools  ['bash', 'read']                       # request #1
seq 137 -> 25 tools ['ask_user_question', 'bash', ...]     # request #2 (promoted)

What you get vs what you give up

You getTrade-off
vs Minimal23 more tools: glob/grep/edit/write/web_search/subagents/workflows/skills/goals/todo…one extra reasoning round for the bootstrap
vs Standardtask-matched trajectory anchors (98/99 vs 91/92 in the reference eval) + a first turn that is cleaner than Standard'sthe first-request catalog is decided by keyword classification — ambiguous tasks fall back to the weak anchor and let the model pick

Evidence & honest boundaries

  • Mechanism (task-matched bootstrap catalog → full catalog) is verified on harness 0.1.0-rc.6 at the wire level; the classifier and anchor tables are unit-tested.
  • The 98/99 ability scores are xiaobright/modeltest Project2 V4.1b — n=2 on one frozen task. They are reproducible evidence for that task, not a universal guarantee across models or workloads. The spec/react/weak anchor design incorporates measured findings from yjh051108/dsh-router-standard (P1-P24) and xiaobright's trajectory boundary probes.
  • V4 Flash does not need this: it generalizes across harnesses (style changes, scores don't). This preset targets Pro with reasoningEffort: max.

Uninstall

dsh plugin --profile web remove dsh-anchored-standard
rm -rf "${DSH_HOME:-$HOME/.dsh}/.agent-presets/anchored-standard"

Compatibility

Developed and verified against DeepSeek Harness 0.1.0-rc.6. The harness is a developer preview with breaking changes — review upstream changes before upgrading.

Community & license

This is a community project: not an official DeepSeek preset, not affiliated with or endorsed by DeepSeek. Design inspired by xiaobright/dsh-anchored-standard (see NOTICE). MIT — LICENSE.