voyager
Nagi-ovo
Enhancement suite for Gemini, AI Studio, Claude & ChatGPT — plus a prompt manager for any web UI, DeepSeek Harness included. / 面向 Gemini、AI Studio、Claude 与 ChatGPT 的增强套件;提示词管理器可用于任意 Web UI,含 DeepSeek Harness。
PROJECT TOPICS
INSTALL REFERENCE
dsh plugin --profile web add github:rizkirmdhnnn/dsh-tool-notify
该命令指向仓库当前默认分支;尚无绑定当前 commit 的完整验证结果。
PROJECT README
A DeepSeek Harness (DSH) plugin that adds a model-facing notify tool. The agent calls it when a long task finishes or something needs attention, and a message is delivered to your notification channel.
Supports two channel types:
https://ntfy.sh or self-hosted).Developer preview. DeepSeek Harness is iterating rapidly and breaking changes are expected. This plugin is tested against DSH
0.1.0-rc.6/ cordis4.0.1/ Node22.19+. Pin versions when you install.
>=22.19 (or >=24)packageManager: pnpm@11.7.0)dsh --profile <name>)dsh plugin --profile demo add dsh-tool-notify
dsh plugin --profile demo add github:rizkirmdhn/dsh-tool-notify#<commit-sha>
pnpm ≥10 refuses to run the package's prepare build script until you allow it. dsh prints the exact package key; add it to the profile's pnpm-workspace.yaml:
allowBuilds:
dsh-tool-notify: true
and re-run the add. That allowance means "run this package's code on my machine at install time" — only add packages whose source you trust, and pin a commit.
pnpm pack
dsh plugin --profile demo add ./dsh-tool-notify-0.1.0.tgz
The bundle inserts a row with id notify. Override it in your profile's cordis.patch.yml (later layers win per row; a patch replaces the whole config):
- patch:
- id: notify
config:
endpoint: https://ntfy.sh
defaultTopic: dsh-alerts
timeoutMs: 10000
channel: ntfy
# tokenRef: NTFY_TOKEN
| Field | Type | Default | Description |
|---|---|---|---|
endpoint |
string | https://ntfy.sh |
Base URL of the ntfy server or the full webhook URL |
defaultTopic |
string | dsh-alerts |
Topic used when the model does not pass one (ntfy only) |
timeoutMs |
number | 10000 |
HTTP request timeout |
channel |
'ntfy' \| 'webhook' |
'ntfy' |
Channel type |
tokenRef |
string | — | Credential reference (env-var style name) for a Bearer token |
Secrets never go in config. Set tokenRef to the name of a credential (e.g. NTFY_TOKEN), then configure that credential through DSH's normal credential provider (env var, .env, or the UI). The plugin resolves it once per call through ctx.credentials, so a rotated token reaches the next call without a restart.
The model sees a notify tool with parameters:
{
"message": "string (required)",
"title": "string (optional)",
"priority": "'min' | 'low' | 'default' | 'high' | 'max' (optional, ntfy)",
"topic": "string (optional, ntfy override)"
}
A successful call returns { ok: true, status, channel }; a non-2xx response returns { ok: false, status, channel } (not an error). Network failures and timeouts are reported as tool errors.
POSTs to {endpoint}/{topic} with body { topic, message, title, priority }.
POSTs to {endpoint} directly with body { message, title } — no ntfy-specific fields.
pnpm install
pnpm run typecheck
pnpm run test
pnpm run build
The package is a standard DSH bundle: package.json declares "dsh": { "bundle": { "patch": "./cordis.patch.yml" } }, the plugin registers via ctx.tools.register(defineTool(...)), and registrations are effects that unwind when the plugin unloads.
MIT
CLASSIFICATION EVIDENCE
系统优先读取 GitHub Topics,再与站内分类词典和词根规则比对。当前命中: notifications。