HDylanYueH/dsh-greet0

dsh-greet

一个注册了极简 `greet` 工具的 DeepSeek Harness 示例插件,用于展示最小完整 Bundle 的发布与安装。

AI 分析

一个无构建步骤的极简插件示例。适合想要学习如何为 DSH 编写、发布和安装自定义 Tool 插件的初学者参考。

套件
dsh-greet
版本
0.1.0
授權
MIT
最近更新
2026年8月23日

安裝

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:HDylanYueH/dsh-greet

dsh-greet

A minimal DeepSeek Harness (dsh) plugin that registers a greet tool. Everything in dsh is a plugin; this repository shows the smallest complete bundle you can publish and install.

Features

  • Registers a greet tool callable by the agent: greet(name)Hello, !
  • No build step: plain JavaScript, installs straight from GitHub.

Install

dsh plugin --profile web add github:HDylanYueH/dsh-greet

Then restart the profile:

dsh --profile web

Ask the agent: "Use the greet tool to greet Ada." The model can call greet and receives Hello, Ada! as the tool result.

Layout

dsh-greet/
├── package.json       # declares dsh.bundle (patch: ./cordis.patch.yml)
├── cordis.patch.yml   # the layer applied when a profile lists this bundle
└── index.js           # the Cordis plugin (name / inject / apply)

Remove

dsh plugin --profile web remove dsh-greet

License

MIT