Jungod1121/dsh-anchored-standard ↗★ 0
dsh-anchored-standard
Two-phase DeepSeek Harness agent preset: Minimal-aligned bootstrap (bash+read on the first request), then the full Standard tool catalog after the first tool call or reply.
安装
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:Jungod1121/dsh-anchored-standard说明文档
阅读完整 README ↗dsh-anchored-standard
锚定首轮请求,解锁全部工具。
面向 DeepSeek Harness 的两阶段 agent 预设:用 Minimal 对齐的开局(一句 prompt + 两个工具)启动 DeepSeek V4 Pro,首个持久化工具调用或回复后,自动展开 Standard 预设的完整工具目录。
一句话原理
V4 Pro 的能力上限并不低——但它走哪套推理策略,是由第一次 API 请求给它看到的东西决定的。社区评测 xiaobright/modeltest 实测:
| 预设 | 首轮看到 | 全程可用 | Project2 V4.1b(max) |
|---|---|---|---|
| Standard | 25 工具 + 长 prompt | 25 工具 | 91 / 92 |
| Minimal | 一句话 prompt + 2 工具 | 只有 2 工具 | 99 / 96 —— 但干不了完整开发 |
| 锚定标准 | 一句话 prompt + 2 工具 | 全部 25 工具 | 98 / 99 |
增益来自首轮轨迹锚定,而不是全程限制工具数量。这个预设给 V4 Pro 保留了 Minimal 的"脑子"(开局策略),同时还它 Standard 的"手脚"(完整能力)。
工作机制
sequenceDiagram
participant U as 用户
participant A as Agent 循环
participant M as DeepSeek V4 Pro
U->>A: 第一条消息(新会话)
A->>M: 请求 #1
system: "You are a helpful software engineer assistant."
tools: bash + read
Note over M: 推理链锚定在 RL 对齐的开局上
M->>A: 首个 tool/call —— 或首个 assistant/message
Note over A: 晋升信号(持久化会话事件)
A->>M: 请求 #2
同一 system prompt · 全部 25 个 Standard 工具
Note over M: 后续完整能力工作沿已锚定轨迹继续