dsh-greet
A minimal DeepSeek Harness (dsh) plugin that registers a greet tool.
安装
$
npx -p @deepseek-ai/dsh dsh plugin --profile web add github:HDylanYueH/dsh-greet说明文档
阅读完整 README ↗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
greettool 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