wings1848/dsh-economizer0

dsh-economizer

Save tokens on the DeepSeek Harness (dsh) — on-demand tools / MCP / skills loading, cache-stable, with a v3 retrieval matcher. Works as an agent preset (picker-selected 「省钱模式」) or as a dsh.bundle (global, installable via `dsh plugin add`).

包名
dsh-economizer
版本
0.1.0
许可证
MIT
最近更新
2026年8月18日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:wings1848/dsh-economizer

Usage

After installing, just chat normally - nothing special to do. The model sees the tool catalog and will search, load, and call tools on its own when needed. You can also steer it manually:

tool_search("browser automation")       # search deferred tools by capability; schemas injected
tool_load(["mcp__chrome__click"])       # batch-load by exact name
tool_load(["mcp__tavily-*"])            # wildcards work
tool_load(scope="mcp:chrome-devtools")  # load a whole MCP server at once
skill_search("obsidian")                # search skills
skill_load("obsidian")                  # inject skill instructions

Search supports scope prefixes: mcp:chrome, subagent:delegate, dsh:filesystem. Each search returns at most 6 tools and at most 30 accumulate in total, so loading doesn't eat back the tokens you saved.