ddtcorex/dsh-maestro-meta1

@ddtcorex/dsh-maestro-meta

Maestro Harness meta-bundle: thin v2 aggregator over granular dsh-maestro-* plugins (remote, review, govard, memory, mobile, notifier).

包名
@ddtcorex/dsh-maestro-meta
版本
0.2.0
最近更新
2026年8月26日

安装

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:ddtcorex/dsh-maestro-meta

@ddtcorex/dsh-maestro-meta

Meta-bundle for Maestro Harness — one dsh plugin add to install the whole DSH side of the stack.

This package contains no runtime code. Its cordis.patch.yml is a thin v2 aggregator that re-exports the rows of the granular plugins:

#Row idPackageWhat it brings
1maestro-remote@ddtcorex/dsh-maestro-remoteCloudflare tunnel + remote proxy + PIN + startup notification trigger
2maestro-review@ddtcorex/dsh-maestro-reviewPluggable MR review pipeline (GitLab implemented, GitHub stubbed)
3maestro-govard@ddtcorex/dsh-maestro-govardGovard bridge tooling for PHP/Magento/Laravel projects
4maestro-memory@ddtcorex/dsh-maestro-memoryDurable memory 5 tracks + todos + confirmation queue
5maestro-mobile@ddtcorex/dsh-maestro-mobileMobile drawer/sheets for DSH Web (<1024px)
6maestro-notifier@ddtcorex/dsh-maestro-notifierProvider-neutral notification service (maestroNotifier, Telegram first)
7maestro-config@ddtcorex/dsh-maestro-configShared settings store (~/.dsh/maestro/settings.json) + Settings card

@ddtcorex/maestro-skills is also a dependency — it serves skills through its own provider and needs no row here.

Govard itself is a Go binary (not a DSH plugin) and is installed separately — see govard/README.md. DeepSeek Harness (deepseek-harness) is the host.

Install

# One-liner for the whole DSH side of Maestro Harness
dsh plugin --profile web add @ddtcorex/dsh-maestro-meta

# Equivalent manual install (what the meta does for you)
dsh plugin --profile web add @ddtcorex/dsh-maestro-remote
dsh plugin --profile web add @ddtcorex/dsh-maestro-review
dsh plugin --profile web add @ddtcorex/dsh-maestro-govard
dsh plugin --profile web add @ddtcorex/dsh-maestro-memory
dsh plugin --profile web add @ddtcorex/dsh-maestro-mobile
dsh plugin --profile web add @ddtcorex/dsh-maestro-notifier
dsh plugin --profile web add @ddtcorex/dsh-maestro-config

@ddtcorex/dsh-maestro-guard is intentionally opt-in (approval gate; not part of this bundle until published).

For local development (link:):

dsh plugin --profile web add link:/path/to/maestro-harness/dsh-maestro-meta
# or link each component individually — same result

Verify:

dsh --profile web --dump-config | grep -E 'maestro-'

Any row can still be overridden by a higher profile layer (profile's cordis.patch.yml or --patch) by targeting its id.

Why a meta-bundle?

  • Single install for new machines / CI
  • One version to pin in ~/.dsh/profiles/web/package.json
  • No code duplication — this package is patch-only, delegates to the granular bundles under packages/
  • Keeps the umbrella workspace at /path/to/maestro-harness as the source of truth (see ../../README.md and ../../docs/architecture.md)

Versioning

Bump version here when you want to publish a new curated set (new row added or removed ⇒ minor bump). The component versions are pinned as workspace:^x.y.z ranges locally and ^x.y.z when published — update them when components publish changes.

See also

  • Umbrella README: ../README.md
  • Umbrella AGENTS: ../AGENTS.md
  • Architecture: ../docs/architecture.md
  • Specs: ../docs/specs/