SmileTao / dsh-plugin-dev-skill

已收录

帮助 AI 正确地编写 DeepSeek Harness (dsh) 插件的skill

main技能 查看源代码

安装

npx -y @deepseek-ai/dsh plugin --profile web add github:SmileTao/dsh-plugin-dev-skill

此安装命令根据 GitHub 仓库地址生成,是未经验证的安装起点。

README

维护者编写的文档快照。

在 GitHub 查看 ↗
提交版本 66187d3同步于 2026年8月18日

dsh-plugin-dev-skill

An AI Skill for developing DeepSeek Harness (dsh) plugins.

English | 中文


What is this?

This project provides a knowledge-packed Skill file (SKILL.md) that teaches AI coding assistants how to write dsh plugins. When loaded into a TraeCode, Cursor, Claude Code, or any Agent Plugins v1-compatible client, it gives the AI instant access to:

  • dsh's Cordis-based "Everything is a Plugin" architecture
  • Complete extension point map (15+ mechanisms)
  • Copy-paste templates for 5 plugin types (Tool, Hook, LLM Adapter, UI, Session Event)
  • Package structure conventions and naming rules
  • Turn flow reference and event dispatch modes
  • Verification checklist and best practices

It is NOT a dsh runtime plugin itself — it is a development-time knowledge asset that makes AI assistants write better dsh plugins, faster.

Why use this skill?

Writing dsh plugins requires understanding Cordis services, typed events, the session log invariant, tool execution contracts, and 15+ extension points. Without this skill, an AI assistant has to guess or hallucinate API shapes. With it, the AI gets it right the first time.

Without skillWith skill
Hallucinated ctx.registerTool()Correct ctx.tools.register(defineTool({...}))
Wrong event namesCorrect tools/pre-execute waterfall
Missing inject fieldCorrect export const inject = ['tools']
Impure UI presentersPure presentCall / presentResult
Manual load-order hacksDeclarative inject dependency

Quick Start

Option A: TraeCode / Trae IDE

Copy the skills/dsh-plugin-dev/ directory to your project's .trae/skills/ folder:

cp -r skills/dsh-plugin-dev /your/project/.trae/skills/

The skill auto-triggers when you ask the AI about dsh plugins.

Option B: Cursor / Claude Code / Other Agent Plugins v1 clients

Copy skills/dsh-plugin-dev/SKILL.md to your project's .agents/skills/dsh-plugin-dev/SKILL.md or equivalent skills directory.

Option C: Reference only

Read skills/dsh-plugin-dev/SKILL.md directly as a cheat sheet.

Project Structure

dsh-plugin-dev-skill/
├── README.md                         # This file
├── LICENSE                           # MIT
├── .gitignore
├── skills/
│   └── dsh-plugin-dev/
│       └── SKILL.md                  # The core skill file (knowledge base)
├── examples/
│   ├── tool-plugin/
│   │   ├── index.ts                  # Example: JSON formatter tool
│   │   └── cordis.yml                # Plugin loading config
│   ├── hook-plugin/
│   │   └── index.ts                  # Example: Safety-gate permission hook
│   └── llm-adapter/
│       └── index.ts                  # Example: Custom LLM provider adapter
└── docs/
    ├── architecture-zh.md            # dsh 架构速览(中文)
    └── quickstart-zh.md              # 快速上手(中文)

What's inside the Skill?

Extension Point Map (15+ mechanisms)

GoalMechanism
Add a model providerctx.llm.registerAdapter()
Add a model-facing toolctx.tools.register(defineTool({...}))
Permission gate / policytools/pre-execute waterfall
Add a human commandctx.commands.register()
Background workctx.jobs.start()
Filesystem access/policyctx.fs provider or fs/* events
Sandbox confinementctx.sandbox backend
Intercept request/tool/turnagent/* or tools/* events
Inject model-facing contextagent.inject()
UI / editor integrationctx.agents + session/event
Durable session stateextend SessionEventMap
System prompt sectionctx.systemPrompt.section()
Scheduled tasks (cron)timer → followup() when idle
MCP server adapterdiscover → ctx.tools.register()
Session title generationctx.sessionTitle provider

Plugin Type Templates

  1. Tool Plugin — The most common type. Registers a model-callable tool with typed parameters, canonical output, and optional UI cards.
  2. Hook Plugin — Intercepts tool calls for permission gating, audit logging, or policy enforcement.
  3. LLM Adapter — Connects a new model provider to dsh's streaming pipeline.
  4. UI Plugin — Renders from the session/event feed and drives input back through agent.followup().
  5. Session Event — Extends durable session state with model-visible data.

Best Practices (9 rules)

  1. Prefer events for interception; prefer service methods for direct calls
  2. Every registration needs a disposer
  3. Keep tool executors focused — put policy in tools/pre-execute
  4. UI presenters must be pure (they run on streaming AND replay)
  5. Secrets via Cordis Config — never read key files in code
  6. Name by responsibility (Controller/Store/Registry/Runtime/etc.)
  7. One ctx key per concept
  8. Honor exec.signal for cancellation
  9. Model-visible = logged

Compatibility

  • dsh version: Target @deepseek-ai/dsh 0.1.0-rc.5+
  • Node.js: 22.19+ or 24+
  • Skill clients: TraeCode, Cursor, Claude Code, OpenCode, Kimi Code, ZCode, Codex, or any Agent Plugins v1.0.0 conformant client

Contributing

Contributions are welcome! If you find an outdated API reference, missing extension point, or have a new template to add:

  1. Fork this repo
  2. Edit skills/dsh-plugin-dev/SKILL.md
  3. Add/update examples in examples/
  4. Submit a PR

License

MIT


中文说明

本项目是一个 AI Skill 知识库,帮助 AI 编程助手正确地编写 DeepSeek Harness (dsh) 插件。

它本身不是 dsh 运行时插件,而是一个开发期的知识资产,让 AI 助手在写 dsh 插件时不再猜测 API 形状。

使用方式

TraeCode / Trae IDE:

cp -r skills/dsh-plugin-dev /your/project/.trae/skills/

Cursor / Claude Code 等:SKILL.md 复制到项目的 .agents/skills/ 目录下。

包含内容

  • Cordis 微内核架构概述和 5 大核心概念
  • 15+ 扩展点映射表(从添加工具到沙箱配置)
  • 5 种插件类型的完整代码模板
  • 包结构规范和命名规则
  • Turn 执行流程和事件分发模式
  • 验证清单和 9 条最佳实践
  • 3 个可运行的示例插件

相关文档

项目文件与信号

以下项目是目录快照中检测到的公开仓库信号。

文档已检测
示例已检测

仓库信息

许可证
MIT
最后更新
2026年8月14日 07:19

谨慎安装

请检查源代码、权限、生命周期脚本、依赖与网络访问;不受信任的插件应先在隔离环境中测试。