dsh-hello-plugin
其他 活跃维护

dsh-hello-plugin

haimuhaimu/dsh-hello-plugin

轻量级入门示例插件,完整呈现基础插件开发结构、注册与调用逻辑,代码简洁无冗余,开发者可直接参考结构快速开发自定义功能插件。

0
Stars 标星
0
Forks 分支
0
Watchers 关注
0
Open Issues
JavaScript
主要语言
None
开源协议
2 KB
仓库大小
1 个月前
最后推送
一键安装扩展 / 插件指令
dsh plugin --profile web add github:haimuhaimu/dsh-hello-plugin
git clone https://github.com/haimuhaimu/dsh-hello-plugin.git
git clone git@github.com:haimuhaimu/dsh-hello-plugin.git
README.md main

dsh-hello-plugin

My first DeepSeek Harness plugin — a minimal example of the bundle format.

What it does

Logs [hello-plugin] plugin loaded! when the profile starts.

Install

dsh plugin --profile demo add github:haimuhaimu/dsh-hello-plugin

Or from a local checkout:

dsh plugin --profile demo add ./hello-plugin

Structure

hello-plugin/
├── package.json       # declares dsh.bundle + patch path
├── cordis.patch.yml   # config layer applied when a profile lists this bundle
└── index.js           # plugin module (exports apply)

Reference