@ddtcorex/dsh-maestro-meta 0.2.0 → 0.3.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 +25 -0
- package/cordis.patch.yml +4 -0
- package/package.json +5 -2
package/README.md
CHANGED
|
@@ -68,3 +68,28 @@ Bump `version` here when you want to publish a new curated set (new row added or
|
|
|
68
68
|
The umbrella workspace is local-only, not a published Git repository. From an
|
|
69
69
|
umbrella checkout, consult its `README.md`, `AGENTS.md`, `docs/architecture.md`,
|
|
70
70
|
and `docs/specs/`.
|
|
71
|
+
|
|
72
|
+
## Installing with plain pnpm
|
|
73
|
+
|
|
74
|
+
`pnpm add @ddtcorex/dsh-maestro-meta` needs overrides for the DSH internal
|
|
75
|
+
packages that are only published as prereleases under the `next` dist-tag
|
|
76
|
+
(their published ranges are clean `^0.1.x`, which prereleases cannot satisfy).
|
|
77
|
+
Add this `pnpm-workspace.yaml` next to your `package.json`:
|
|
78
|
+
|
|
79
|
+
```yaml
|
|
80
|
+
packages:
|
|
81
|
+
- .
|
|
82
|
+
overrides:
|
|
83
|
+
'@deepseek-ai/dsh-invariants': 0.1.1-rc.2
|
|
84
|
+
'@deepseek-ai/dsh-typert-registry': 0.1.1-rc.2
|
|
85
|
+
'@deepseek-ai/dsh-typert-protocol': 0.1.1-rc.2
|
|
86
|
+
'@deepseek-ai/dsh-scope': 0.1.1-rc.2
|
|
87
|
+
'@deepseek-ai/dsh-brand': 0.1.1-rc.2
|
|
88
|
+
'@deepseek-ai/dsh-attachment': 0.1.0-rc.8
|
|
89
|
+
'@deepseek-ai/dsh-timeout': 0.1.0-rc.8
|
|
90
|
+
```
|
|
91
|
+
|
|
92
|
+
Installing through the DSH CLI (`dsh plugin add @ddtcorex/dsh-maestro-meta`)
|
|
93
|
+
does not need this — the CLI resolves the pinned set itself. Individual
|
|
94
|
+
granular packages (`@ddtcorex/dsh-maestro-*`) install with plain pnpm without
|
|
95
|
+
overrides; only the full meta bundle hits the shared peer graph.
|
package/cordis.patch.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ddtcorex/dsh-maestro-meta",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Maestro Harness meta-bundle: thin v2 aggregator over granular dsh-maestro-* plugins (remote, review, govard, memory, mobile, notifier).",
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Maestro Harness meta-bundle: thin v2 aggregator over granular dsh-maestro-* plugins (remote, review, govard, memory, mobile, notifier, devkit, dashboard).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"private": false,
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
+
"@ddtcorex/dsh-maestro-dashboard": "^0.1.0",
|
|
18
19
|
"@ddtcorex/dsh-maestro-remote": "^0.1.0",
|
|
19
20
|
"@ddtcorex/dsh-maestro-review": "^0.1.0",
|
|
20
21
|
"@ddtcorex/dsh-maestro-govard": "^0.1.0",
|
|
@@ -22,6 +23,7 @@
|
|
|
22
23
|
"@ddtcorex/dsh-maestro-mobile": "^1.0.0",
|
|
23
24
|
"@ddtcorex/dsh-maestro-notifier": "^0.1.0",
|
|
24
25
|
"@ddtcorex/dsh-maestro-config": "^0.1.0",
|
|
26
|
+
"@ddtcorex/dsh-maestro-devkit": "^0.1.0",
|
|
25
27
|
"@ddtcorex/maestro-skills": "^2.2.0"
|
|
26
28
|
},
|
|
27
29
|
"peerDependencies": {
|
|
@@ -31,6 +33,7 @@
|
|
|
31
33
|
"vitest": "^3.2.4"
|
|
32
34
|
},
|
|
33
35
|
"scripts": {
|
|
36
|
+
"build": "echo \"no build (patch-only bundle)\"",
|
|
34
37
|
"test": "vitest run"
|
|
35
38
|
}
|
|
36
39
|
}
|