Back to home@HDylanYueH

dsh-greet

No description

Stars
0
Language
JavaScript
Created
Aug 23, 2026
Updated
Aug 23, 2026
GitHub repo

Introduction

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, <name>!
  • 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