DeepSeek Harness plugin

dsh-cmp-skill-index

DSH tools: list & search the 70-skill index bundled with codex-mobile-pro.

Jump to install

Source facts

Repository
malaxiya2019/dsh-cmp-skill-index
Latest update
Aug 15, 2026
Category
Tools & Capabilities
GitHub stars
0
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/malaxiya2019/dsh-cmp-skill-index
Plugin: dsh-cmp-skill-index
Author: malaxiya2019

Check the source files

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

File explorer3 files
README.mdSource · read only

cmp-skill-index

DSH(DeepSeek Harness)工具插件:把 codex-mobile-pro 内置的 70 条 skill 索引发给 agent,让模型能按名检索、复用已有技能(code review、TDD、安全排查、逆向、Obsidian 笔记、浏览器自动化……)。

纯 JS、零构建:源码即交付物,git 安装无需 allowBuilds

安装

GitHub 安装(推荐,免 npm registry):

dsh plugin --profile demo add github:malaxiya2019/dsh-cmp-skill-index

本地 bundle 安装:

# 在插件目录
npm pack                       # 产出 cmp-skill-index-0.1.0.tgz
dsh plugin --profile demo add ./cmp-skill-index-0.1.0.tgz

安装后插件自动激活(bundle patch 插入 cmp-skill-index 行)。

提供的工具

工具参数返回
list_skills全部 70 条 skill 的 {name, description} 数组
search_skillsquery(必填)、limit(默认 20,上限 50)按 name+description 大小写不敏感匹配的结果数组

示例:

search_skills(query: "frida")     → [rev-frida, rev-ios-dump]
search_skills(query: "obsidian")  → [obsidian-vault]

开发 / 验证

npm install --no-save @deepseek-ai/dsh-tools @deepseek-ai/cordis
node scripts/smoke.js       # 用真实 defineTool 校验注册 + 数据

数据来源与再生成:

node scripts/gen-data.mjs <codex-mobile-pro 的 skills 目录>
# 重新生成 data/skills.js + data/skills.json(从各 skill 的 SKILL.md 提取 name/description)

许可

MIT(详见 LICENSE)。数据提取自 malaxiya2019/codex-mobile-pro(MIT 开源)。