DeepSeek Harness plugin

dsh-skill-search

On-demand skill search for DSH: keyword-search a shared skill library (e.g. ~/.codex/skills) with zero preloading. The AI reads only the matched SKILL.md.

Jump to install

Source facts

Repository
Equinox7379/dsh-skill-search
Latest update
Aug 15, 2026
Category
Tools & Capabilities
GitHub stars
1
Format
plugin
Catalog evidence
Upstream dsh.bundle evidence
Evidence path
package.json#dsh.bundle
Checked against
0.1.0-rc.8
Upstream check date
2026-08-20

This evidence comes from the upstream catalog. This site has not installed, run, or security-reviewed the plugin.

Install

Start with a prompt that asks an agent to review the GitHub repository and source. Switch to the command if you want to install it yourself.

Copy this prompt into DSH, Codex, or another agent and ask it to review the GitHub repository and source first.

Do not install or run any commands yet. Read this plugin's GitHub repository, README, and relevant source code. Then answer the questions below clearly and directly so I can decide whether it fits my needs:

1. What is this plugin, and what problem does it solve?
2. Who is it for, and what are its typical use cases?
3. How is it used after installation? Include one minimal example.
4. What known limitations or privacy, security, compatibility, or maintenance risks does it have?
5. Give a clear recommendation: recommend, conditionally recommend, or do not recommend, with reasons.

Distinguish statements documented by the repository, inferences from source code, and unknowns. If evidence is insufficient, say so explicitly. Do not guess or simply repeat the README.

GitHub: https://github.com/Equinox7379/dsh-skill-search
Plugin: dsh-skill-search
Author: Equinox7379

Check the source files

Read the README and other files from this plugin directory before installing.

File explorer3 files
README.mdSource · read only

dsh-skill-search · 按需技能搜索器 🔍

DeepSeek Harness 插件:让海量技能库「零预加载、按需搜索」。

解决的问题

dsh 默认在启动时把每个技能的 name/description 注入模型上下文——几百个技能就是数万 token 的固定开销,装一万个技能直接爆上下文。本插件换一种架构:启动时什么都不注入,需要时用关键词搜索磁盘上的 SKILL.md(rg 快路径 + Node 兜底),AI 只读命中的那份全文并执行。

用法

  • 工具:skill_search
  • 参数:query(必填,中英文关键词;匹配目录名 / frontmatter 的 name 与 description / 正文开头)、limit(默认 10)

示例(用户说「搜技能:去AI味」):

{ "query": "去AI味", "libraries": ["C:\\Users\\…\\.codex\\skills"], "count": 1,
  "skills": [ { "name": "humanizer", "description": "去掉 AI 味…", "path": "…\\去AI味\\SKILL.md" } ] }

AI 随后只 read 该 path 的全文并照做——上下文成本恒为「一份 SKILL.md」,与技能库规模无关。

配置

在 profile 的 cordis.patch.yml 给插件行加 config 可指向多个技能库:

- insert:
    - id: dsh-skill-search
      name: dsh-skill-search
      config:
        dirs:
          - C:\\Users\\Equinox\\.codex\\skills

可靠性

  • 纯只读;零运行时依赖;无自定义会话事件;无 HTTP 路由;
  • rg 不可用时自动降级纯 Node 遍历;
  • 共享同一份文件:技能库在别处(如 Codex)更新,本插件即刻看到新内容,无需复制同步。

License

MIT