wings1848/dsh-economizer0

dsh-economizer

DeepSeek Harness (dsh) 省钱模式插件:支持按需加载工具/MCP/技能,缓存稳定,配备 v3 检索匹配器,可作为智能体预设或全局 bundle 安装。

AI 分析

核心用途是为 DSH 节省 token 消耗。适合需要频繁调用工具、MCP 或技能,且希望通过按需加载和稳定缓存来降低 API 成本的用户。

套件
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.