@ddtcorex/dsh-maestro-meta 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,70 @@
1
+ # @ddtcorex/dsh-maestro-meta
2
+
3
+ > **Meta-bundle for Maestro Harness** — one `dsh plugin add` to install the whole DSH side of the stack.
4
+
5
+ This package contains **no runtime code**. Its `cordis.patch.yml` is a thin v2 aggregator that re-exports the rows of the granular plugins:
6
+
7
+ | # | Row id | Package | What it brings |
8
+ |---|--------|---------|----------------|
9
+ | 1 | **maestro-remote** | `@ddtcorex/dsh-maestro-remote` | Cloudflare tunnel + remote proxy + PIN + startup notification trigger |
10
+ | 2 | **maestro-review** | `@ddtcorex/dsh-maestro-review` | Pluggable MR review pipeline (GitLab implemented, GitHub stubbed) |
11
+ | 3 | **maestro-govard** | `@ddtcorex/dsh-maestro-govard` | Govard bridge tooling for PHP/Magento/Laravel projects |
12
+ | 4 | **maestro-memory** | `@ddtcorex/dsh-maestro-memory` | Durable memory 5 tracks + todos + confirmation queue |
13
+ | 5 | **maestro-mobile** | `@ddtcorex/dsh-maestro-mobile` | Mobile drawer/sheets for DSH Web (<1024px) |
14
+ | 6 | **maestro-notifier** | `@ddtcorex/dsh-maestro-notifier` | Provider-neutral notification service (`maestroNotifier`, Telegram first) |
15
+ | 7 | **maestro-config** | `@ddtcorex/dsh-maestro-config` | Shared settings store (`~/.dsh/maestro/settings.json`) + Settings card |
16
+
17
+ `@ddtcorex/maestro-skills` is also a dependency — it serves skills through its own provider and needs no row here.
18
+
19
+ 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.
20
+
21
+ ## Install
22
+
23
+ ```sh
24
+ # One-liner for the whole DSH side of Maestro Harness
25
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-meta
26
+
27
+ # Equivalent manual install (what the meta does for you)
28
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-remote
29
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-review
30
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-govard
31
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-memory
32
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-mobile
33
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-notifier
34
+ dsh plugin --profile web add @ddtcorex/dsh-maestro-config
35
+ ```
36
+
37
+ `@ddtcorex/dsh-maestro-guard` is intentionally **opt-in** (approval gate; not part of this bundle until published).
38
+
39
+
40
+ For local development (`link:`):
41
+
42
+ ```sh
43
+ dsh plugin --profile web add link:/path/to/maestro-harness/dsh-maestro-meta
44
+ # or link each component individually — same result
45
+ ```
46
+
47
+ Verify:
48
+
49
+ ```sh
50
+ dsh --profile web --dump-config | grep -E 'maestro-'
51
+ ```
52
+
53
+ Any row can still be overridden by a higher profile layer (profile's `cordis.patch.yml` or `--patch`) by targeting its `id`.
54
+
55
+ ## Why a meta-bundle?
56
+
57
+ - **Single install** for new machines / CI
58
+ - **One version to pin** in `~/.dsh/profiles/web/package.json`
59
+ - **No code duplication** — this package is patch-only, delegates to the granular bundles under `packages/`
60
+ - Keeps the local umbrella workspace at `/path/to/maestro-harness` as the source of truth.
61
+
62
+ ## Versioning
63
+
64
+ 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.
65
+
66
+ ## See also
67
+
68
+ The umbrella workspace is local-only, not a published Git repository. From an
69
+ umbrella checkout, consult its `README.md`, `AGENTS.md`, `docs/architecture.md`,
70
+ and `docs/specs/`.
@@ -0,0 +1,20 @@
1
+ # @ddtcorex/dsh-maestro-meta bundle patch v2
2
+ # Thin aggregator over granular dsh-maestro-* plugins — `dsh plugin add @ddtcorex/dsh-maestro-meta`
3
+ # is equivalent to adding the seven granular plugins individually.
4
+ # IDs use short `maestro-*` aliases for brevity; owned packages use `dsh-maestro-*` — both resolve to the same npm package.
5
+ # Guard (Phase A stub) is opt-in: `dsh plugin add @ddtcorex/dsh-maestro-guard` separately (not in meta one-liner until published).
6
+ - insert:
7
+ - id: maestro-remote
8
+ name: '@ddtcorex/dsh-maestro-remote'
9
+ - id: maestro-review
10
+ name: '@ddtcorex/dsh-maestro-review'
11
+ - id: maestro-govard
12
+ name: '@ddtcorex/dsh-maestro-govard'
13
+ - id: maestro-memory
14
+ name: '@ddtcorex/dsh-maestro-memory'
15
+ - id: maestro-mobile
16
+ name: '@ddtcorex/dsh-maestro-mobile'
17
+ - id: maestro-notifier
18
+ name: '@ddtcorex/dsh-maestro-notifier'
19
+ - id: maestro-config
20
+ name: '@ddtcorex/dsh-maestro-config'
package/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@ddtcorex/dsh-maestro-meta",
3
+ "version": "0.2.0",
4
+ "description": "Maestro Harness meta-bundle: thin v2 aggregator over granular dsh-maestro-* plugins (remote, review, govard, memory, mobile, notifier).",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "private": false,
8
+ "files": [
9
+ "cordis.patch.yml",
10
+ "README.md"
11
+ ],
12
+ "dsh": {
13
+ "bundle": {
14
+ "patch": "./cordis.patch.yml"
15
+ }
16
+ },
17
+ "dependencies": {
18
+ "@ddtcorex/dsh-maestro-remote": "^0.1.0",
19
+ "@ddtcorex/dsh-maestro-review": "^0.1.0",
20
+ "@ddtcorex/dsh-maestro-govard": "^0.1.0",
21
+ "@ddtcorex/dsh-maestro-memory": "^1.0.1",
22
+ "@ddtcorex/dsh-maestro-mobile": "^1.0.0",
23
+ "@ddtcorex/dsh-maestro-notifier": "^0.1.0",
24
+ "@ddtcorex/dsh-maestro-config": "^0.1.0",
25
+ "@ddtcorex/maestro-skills": "^2.2.0"
26
+ },
27
+ "peerDependencies": {
28
+ "@deepseek-ai/cordis": "^4.0.0"
29
+ },
30
+ "devDependencies": {
31
+ "vitest": "^3.2.4"
32
+ },
33
+ "scripts": {
34
+ "test": "vitest run"
35
+ }
36
+ }