DeepSeek Harness Plugin Hub

Publish and manage complete Harness Profiles. Discover Plugins for your next setup.

Explore

PluginsPresetsDocsNews

Community

Publish a pluginContactReport an issue

Resources

Plugin Hub on GitHubDeepSeek HarnessSystem statusPrivacy notice
© 2026 DeepSeek Harness Plugin HubPowered byPaxTech

Independent and unofficial. Not affiliated with, authorized by, or endorsed by DeepSeek.

Maestro Observe — DSH Plugin for DeepSeek Harness
← Plugins
M

@ddtcorex/dsh-maestro-observe

Maestro Observe

Maestro observe — trace/health/cost debug tooling (Phase 3)

The plugin will be installed here. Keep web if you are unsure.

npx -y @deepseek-ai/dsh plugin --profile web add github:ddtcorex/dsh-maestro-observe#d5547f68d1d26c3f347b7ba8420bc643f3d0498a
READMECompatibilityVersions

Compatibility and provenance

Maestro Observe is published as @ddtcorex/dsh-maestro-observe and currently resolves to version 0.4.0. The Hub verifies its manifest and preserves the exact installation source for reproducible installs.

DSH compatibility
*
Runtime surfaces
any
Release source
github
Registry updated
9/16/2026

Versions

0.4.0stable
9/16/2026
0.3.0stable
9/15/2026
0.2.1stable
9/2/2026
Show 2 more versionsCollapse versions
0.2.0stable
8/27/2026
0.1.0stable
8/26/2026

Related plugins

Loading related plugins…

Latest
0.4.0
DSH
*
HMR
Process restart
Tree shaking
Safe tree shaking not declared
Unpacked size
Unavailable
Files
Unavailable
Surface
any
License
MIT
Source
github
GitHub
★ 1
Weekly downloads
0
Last push
9/16/2026
View source ↗
README badge

Click the badge to copy Markdown for your README.

Do you maintain this Plugin?Claim benefit · Priority security scan

Verify the GitHub repository declared in package.json to manage this listing. After you claim it, Hub will prioritize a security scan of the current version and publish the result when it passes.

Claim this Plugin →
Report an issue
DeepSeek Harness Plugin Hub
ProfilesPluginsCategoriesNewsDocsSign inManage Profiles
ProfilesPluginsCategoriesNewsDocsSign in

Related plugins

More verified plugins in models-usage.

Usage@linxin666/dsh-usageUsage statistics plugin for the dsh web GUI: per-provider balance and coding-plan quota detection plus a live token usage ledger, with the current session provider's today usage on the sidebar entryWhale Widgetdsh-whale-widgetDeepSeek balance whale widget in the bottom-right corner of the DSH Web interface: balance/today’s usage/peak-off-peak pricing, customizable bubble click sequence (text/balance/today/peak-off-peak/image/random phrases and parallel weighted selection), per-line styles and fonts, floating quick editinUsage Stats@ychris12138/dsh-usage-statsToken usage heatmap, provider balances, and subscription quotas for the dsh web GUICodex Connectdsh-codex-connectChatGPT OAuth and Codex models for DeepSeek Harness.

README

dsh-maestro-observe

Maestro observe — trace/health/cost debug tooling (Phase 3)

DSH Maestro plugin — part of the dsh-maestro-* ecosystem (@ddtcorex/dsh-maestro-observe).

Local-first observability for the Maestro plugin stack. The host records turn/tool/error signals into a queryable SQLite store (~/.dsh/dsh-maestro-observe/observe.sqlite, 0600) and exposes them through the maestro-observe tool and the /dsh-maestro-observe loopback RPC. Rendering lives in dsh-maestro-dashboard (Activity tab), which calls the RPC below — this package ships no client UI. Telegram digests and spike alerts are delivered through the optional maestroNotifier service — the plugin works fully without it.

Install

dsh plugin add @ddtcorex/dsh-maestro-observe

Tool / RPC ops

Ops are mirrored on the tool (op) and the RPC (endpoint name); unknown ops/endpoints fail closed.

  • trace { limit?, sessionId?, tool?, kind?, since? } — newest-first records.
  • cost { scope: 'day'|'session', sessionId?, day?, groupBy?: 'tool'|'session' } (day selects an explicit UTC day; groupBy without since is lifetime).
  • budget { action: 'set'|'check', scope, key, limit_tokens? } — token budgets.
  • config { action: 'get'|'set', key, value? } — operational knobs.
  • errors { tool?, since? } — grouped by tool + normalized signature.
  • latency { tool?, since? } — { count, p50, p95, p99 } latencyMs.
  • health {} — plugins, tool count, per-channel status, deduped degraded list.
  • status (RPC only) — uptime, version, ring size, row count.

RPC calling convention (for dashboard and other consumers)

The Connection transport requires endpoint dispatch plus the carrier shape — rpc.call(channel, endpoint, payload) returns { ok: true, value } | { ok: false, error: { code, message, details } }. The server rejects anything else, so clients that send a single { method } object or skip the carrier unwrap fail silently. Unwrap with res?.ok ? res.value : null. Absent observe plugin → call rejects: hide dependent UI instead of rendering zeros.

Config keys (config op)

keydefaultmeaning
retention_days30trace retention for the daily purge
detail_max_chars500detail truncation length applied by the redact pipeline
digest_schedule08:00local HH:MM for the daily Telegram digest
spike_n / spike_m10 / 5alert after N errors within M minutes
telegram.botToken / telegram.chatId—Telegram target for digest + spike alerts

Secrets in trace details are redacted before persist (secret shapes → [redacted], detail truncated). Session cost is session-lifetime; day cost, digest windows, and retention cutoffs are per UTC day (the digest fire time is local HH:MM).

Telegram setup

  1. Install @ddtcorex/dsh-maestro-notifier (provides maestroNotifier).
  2. config set telegram.botToken <token>, config set telegram.chatId <id> (or the budget/config tool ops).
  3. The daily digest fires at digest_schedule; spike alerts fire on the error-rate threshold. Without the notifier both stay silent and log a warning — nothing throws.

Develop

pnpm verify        # tsc --noEmit
pnpm test          # vitest run
pnpm build         # tsc -p tsconfig.json  -> lib/