ディレクトリに戻る

dsh-anchored-standard

キュレーション掲載メンテナンス: 活発

xiaobright/dsh-anchored-standard

Minimal 準拠のブートストラップから Standard ツール一式へ移行する 2 フェーズ構成の DeepSeek Harness プリセット

GitHub で見るホームページ
$ dsh plugin add dsh-anchored-standard

3,818

スター

120

フォーク

JavaScript

言語

NOASSERTION

ライセンス

2026-08-14

作成日

2026-09-08

最終プッシュ

README 表記 MIT ライセンスの実験的 DeepSeek Harness 二段階プリセット。初回リクエストを Minimal ツール面でアンカーし、昇格後に Standard ツールをオンデマンド解放。プリセットディレクトリの配置で DSH にネイティブ統合されます。

DSH 統合

ネイティブ実行

作者による申告

安全性監査

未監査

最終検証日

2026-08-21

ライセンス

NOASSERTION

01どんなタスクに使えるのか?

  • Anchor a DeepSeek Harness session's first reasoning trajectory on the Minimal condition, then unlock Standard tools on demand

    Two-phase session lifecycle: request #1 runs on the Minimal tool pair (bash + str_replace_editor) with no auto-injected context; after the first durable tool/call or assistant message, the session promotes to a resident catalog with discovery tools and standard injections restored

    Developers and researchers running DeepSeek V4 Pro in DeepSeek Harness who want Minimal-aligned opening behavior without giving up the Standard toolset

  • Pick among seven self-contained anchoring mode variants per experiment or workload

    Independently installable mode directories — Anchored Standard, Zero-Anchored, Whoami, Prefab, Eternal Minimal (dshx bash gateway), Wire Think-Execute, and Combo Anchored — each shipping its own agent.cordis.yml

    Preset authors and experimenters comparing anchoring strategies (tool schema, anchor turns, wire-level tool_choice) inside DeepSeek Harness

02DeepSeek Harness への導入方法

前提条件

  • DeepSeek Harness — developed and tested against 0.1.0-rc.5 (repository commit 47f9438); the maintainer ran Node.js 24 on Windows
  • A clone of the xiaobright/dsh-anchored-standard repository

インストール手順

  1. 01

    Clone the repository

  2. 02

    Copy the entire `preset` directory into the DSH user preset root under the id `anchored-standard` — Linux/macOS: `cp -R preset "$dsh_home/.agent-presets/anchored-standard"` (with `dsh_home="${DSH_HOME:-$HOME/.dsh}"`); Windows: the PowerShell Copy-Item snippet targeting `$env:USERPROFILE\.dsh\.agent-presets\anchored-standard`

  3. 03

    Fully restart DeepSeek Harness, create a blank session, and select **Anchored Standard (experimental)** — do not switch an active session from a different preset

導入成功の確認

  • Export the session JSONL and inspect `request/header` events
  • The first header's `tools` array must be exactly ["bash", "str_replace_editor"], and the first request should contain no AGENTS.md/CLAUDE.md digest and no available-skills reminder
  • After the first tool call or assistant reply, the next changed header should contain the resident catalog (bootstrap pair plus dev_tool_search / skill_search / skill_load plus any unlocked tools), with standard context injections restored
  • Run the local zero-dependency tests with `npm test`

03DSH 統合と能力の範囲

DSH 統合ネイティブ実行

Native DeepSeek Harness agent preset: a mode directory copied into the DSH user preset root (.dsh/.agent-presets) and selected in a blank session

  • Two-phase bootstrap & promotion

    the first user message of a new DSH sessionrequest #1 runs on the Minimal tool pair with every auto-injected context suppressed at the harness's unified injection paths; the first durable tool/call or assistant message promotes the session to the resident catalog

    The bootstrap pair (bash, str_replace_editor) executes with shell-level access — the preset has the same trust level as shell access
  • On-demand tool discovery

    a promoted (resident-phase) sessionheavier Standard tools (web_search, subagent, workflow, …) unlocked one dev_tool_search call away instead of dumping the full Standard catalog at promotion

  • Seven self-contained anchoring modes

    any single mode directory (preset/, zero-anchored-standard/, whoami-standard/, prefab/, eternal-minimal/, wire-think-standard/, combo-anchored/)a standalone preset install — including Eternal Minimal's dshx bash gateway, which executes the full Standard toolset behind the visible Minimal pair

    Eternal Minimal's gateway really executes tools (files, searches, subagents) behind dshx shell commands
  • Resume-safe phase state

    the session event logbootstrap/resident phase derived from durable events, so resume and reload preserve it; promotion decisions are memoized per session

04誰に向いているのか?使うべきでない場面は?

向いている用途

  • Developers and researchers running DeepSeek V4 Pro in DeepSeek Harness who want Minimal-aligned opening behavior without giving up the Standard toolset
  • Preset authors and experimenters comparing anchoring strategies (tool schema, anchor turns, wire-level tool_choice) inside DeepSeek Harness

不向きな用途

  • Developed and tested only against DeepSeek Harness 0.1.0-rc.5 (commit 47f9438). DSH is a developer preview that permits breaking changes, and the preset is a full snapshot of the Standard composition — review upstream changes before using it with a newer release; one prebuilt 0.1.0-rc.6 profile made bootstrapMaxTokens a no-op.
  • Active development stopped on 2026-08-17 after DeepSeek API price increases — the repository receives maintenance only (bug fixes and harness-compatibility updates when feasible).
  • The preset has the same trust level as shell access — review its files before installation. It performs no network requests and adds no telemetry.

05互換性・メンテナンス・セキュリティ上の注意

  • Developed and tested only against DeepSeek Harness 0.1.0-rc.5 (commit 47f9438). DSH is a developer preview that permits breaking changes, and the preset is a full snapshot of the Standard composition — review upstream changes before using it with a newer release; one prebuilt 0.1.0-rc.6 profile made bootstrapMaxTokens a no-op.
  • Active development stopped on 2026-08-17 after DeepSeek API price increases — the repository receives maintenance only (bug fixes and harness-compatibility updates when feasible).
  • The preset has the same trust level as shell access — review its files before installation. It performs no network requests and adds no telemetry.
2026-08-142026-08-17作者は未記載

MIT per README (GitHub reports NOASSERTION) · maintenance only since 2026-08-17

06よくある質問

dsh-anchored-standard は DeepSeek Harness にどう組み込みますか?

MCP サーバーではなく、DeepSeek Harness のネイティブなエージェントプリセットです。モードディレクトリ(例: preset/)をユーザープリセットルートに anchored-standard などの id でコピーし、harness を完全に再起動してから、新規の空セッションで選択します(例: Anchored Standard (experimental))。DeepSeek Harness 0.1.0-rc.5 で開発・テストされています。

ブートストラップフェーズでは何が起きますか?

最初のリクエストには Minimal ツールペア(bash + str_replace_editor)のみが見え、自動注入コンテキスト(AGENTS.md/CLAUDE.md のダイジェストやスキルカタログのリマインダー)は一切ありません。最初の永続的な tool/call または assistant メッセージの後、セッションは常駐カタログ(ブートストラップペア + 探索ツール + 解放済みツール)へ昇格し、標準の注入が復活します。

プラグインはネットワーク通信やテレメトリを行いますか?

いいえ。README はネットワークリクエストを一切行わず、テレメトリも追加しないと明記しています。ただし、プリセットはシェルアクセスと同等の信頼レベルを持つため、インストール前にファイルを確認してください。

バリアントはモデル呼び出しコストを増やしますか?

基本の Anchored Standard は追加なし。Zero-Anchored と Whoami はセッションごとにアンカー用の 1 呼び出し(Whoami は includeSubagents 有効時、サブエージェントごとにさらに 1 回)を追加します。Wire Think-Execute は毎ターン 1 回の思考呼び出しとプレフィックスキャッシュの分断を伴い、Combo Anchored は毎ターン約 1 回追加します。

プロジェクトは今もメンテナンスされていますか?

メンテナンスのみです。DeepSeek API の値上げに伴い、2026-08-17 をもって活発な開発は停止し、リポジトリはバグ修正と harness 互換性アップデートのみ受け付けています。

08データと出典

  • 作者による申告github.com25f21aefaf8d…

    a base mode, two live-anchor variants, and one seeded prefab mode — that anchor a session's model trajectory on the Mini…

  • 作者による申告github.com25f21aefaf8d…

    Developed and tested against: - DeepSeek Harness `0.1.0-rc.5` - repository commit [`47f9438`](https://github.com/deepse…

このページは、プロジェクトの公開ドキュメント、リポジトリのメタデータ、および DSH Plugins の構造化解析に基づいて生成されています。最終検証日:2026-08-21。誤りを見つけた場合は、修正を送信してください。

🏆

dsh プラグイン おすすめ

最初に入れたい 12 のプラグイン。全カタログ・全カテゴリから厳選しました。

DSH Plugins は DeepSeek Harness プラグインの独立したコミュニティ ディレクトリです。DeepSeek との提携・公認はありません。サードパーティ製プラグインはセキュリティ監査を受けていません。インストール前にソースコードをご確認ください。

DeepSeek Harnessの新着プラグインを毎週お届け。スパムはありません。