@lmzhen/dsh-evolution-commands 0.4.0 → 0.4.1
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/lib/index.js +5 -1
- package/lib/types/doctor.d.ts +5 -0
- package/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -21,6 +21,10 @@ import { fileURLToPath } from "node:url";
|
|
|
21
21
|
/** D-6 (v18): exact-segment tail match (the loose substring form matched a
|
|
22
22
|
* hypothetical `dsh-evolution-allowlist`). */
|
|
23
23
|
const tailOf = (name) => name.slice(name.lastIndexOf("/") + 1);
|
|
24
|
+
/** P2-20 (audit): the TS-side copy of the install-target tails. The script
|
|
25
|
+
* side (install-layered.mjs, verify-profile-bundles.mjs) imports the list
|
|
26
|
+
* from packages/scripts/lib-family-packages.mjs; guard-scripts.spec.ts pins
|
|
27
|
+
* the two sides to each other. */
|
|
24
28
|
const EVOLUTION_BUNDLE_TAILS = new Set([
|
|
25
29
|
"dsh-evolution-all",
|
|
26
30
|
"dsh-evolution-host",
|
|
@@ -976,7 +980,7 @@ function apply(ctx, rawConfig = {}) {
|
|
|
976
980
|
name: "agent.cordis.yml",
|
|
977
981
|
content: composition
|
|
978
982
|
}, {
|
|
979
|
-
name:
|
|
983
|
+
name: "preset.yml",
|
|
980
984
|
content: readFileSync(presetPath)
|
|
981
985
|
}], void 0, (message) => {
|
|
982
986
|
ctx.logger.warn(message);
|
package/lib/types/doctor.d.ts
CHANGED
|
@@ -1,4 +1,9 @@
|
|
|
1
1
|
import { type ScopedProbeReport } from '@lmzhen/dsh-evolution-core';
|
|
2
|
+
/** P2-20 (audit): the TS-side copy of the install-target tails. The script
|
|
3
|
+
* side (install-layered.mjs, verify-profile-bundles.mjs) imports the list
|
|
4
|
+
* from packages/scripts/lib-family-packages.mjs; guard-scripts.spec.ts pins
|
|
5
|
+
* the two sides to each other. */
|
|
6
|
+
export declare const EVOLUTION_BUNDLE_TAILS: Set<string>;
|
|
2
7
|
/** G3-② (B2): one delivered preset variant compared against a fresh generation.
|
|
3
8
|
* "absent" is the user simply not using that base (never an action); "unknown"
|
|
4
9
|
* is a comparison that could not run, kept distinct from a verified "fresh". */
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-commands",
|
|
3
3
|
"description": "Human commands for the evolution family (/evolution pending|curator|maintain|doctor) (community build)",
|
|
4
|
-
"version": "0.4.
|
|
4
|
+
"version": "0.4.1",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -27,12 +27,12 @@
|
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"dependencies": {
|
|
29
29
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
30
|
-
"@lmzhen/dsh-evolution-approval": "^0.4.
|
|
31
|
-
"@lmzhen/dsh-evolution-core": "^0.4.
|
|
32
|
-
"@lmzhen/dsh-evolution-maintenance": "^0.4.
|
|
30
|
+
"@lmzhen/dsh-evolution-approval": "^0.4.1",
|
|
31
|
+
"@lmzhen/dsh-evolution-core": "^0.4.1",
|
|
32
|
+
"@lmzhen/dsh-evolution-maintenance": "^0.4.1"
|
|
33
33
|
},
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@lmzhen/dsh-evolution-agent-preset": "^0.4.
|
|
35
|
+
"@lmzhen/dsh-evolution-agent-preset": "^0.4.1"
|
|
36
36
|
},
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@deepseek-ai/cordis": "^4.0.1",
|