@lmzhen/dsh-evolution-capability 0.3.51 → 0.3.52
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 +12 -0
- package/package.json +12 -12
package/README.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
Explicit staged governance adapter for Creator-mode capability packages
|
|
4
4
|
|
|
5
|
+
> ⚠️ **Enablement prerequisites (V10-13 / H-09).** This adapter is dormant
|
|
6
|
+
> dead surface unless BOTH of the following hold:
|
|
7
|
+
>
|
|
8
|
+
> 1. The composition explicitly adds the `evolution-capability` row (no
|
|
9
|
+
> shipped composition — host bundle or presets — mounts it).
|
|
10
|
+
> 2. Approval staging is ENABLED in the deployment (`submit()` depends on the
|
|
11
|
+
> approval staging gate, which is off by default; with staging disabled
|
|
12
|
+
> every submission is rejected).
|
|
13
|
+
>
|
|
14
|
+
> Without both switches, mounting the row alone changes nothing: validation
|
|
15
|
+
> runs but staged capability packages are never accepted.
|
|
16
|
+
|
|
5
17
|
|
|
6
18
|
## Model Experience
|
|
7
19
|
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-capability",
|
|
3
3
|
"description": "Explicit staged governance adapter for Creator-mode capability packages (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.52",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
10
|
"url": "git+https://github.com/lmzhen/dsh-evolution.git",
|
|
11
|
-
"directory": "packages/
|
|
11
|
+
"directory": "packages/evolution-capability"
|
|
12
12
|
},
|
|
13
13
|
"type": "module",
|
|
14
14
|
"main": "lib/index.js",
|
|
@@ -31,22 +31,22 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
34
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
34
|
+
"@lmzhen/dsh-evolution-core": "^0.3.52"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
38
38
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
39
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
40
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
41
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.3.
|
|
39
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.52",
|
|
40
|
+
"@lmzhen/dsh-evolution-state": "^0.3.52",
|
|
41
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.3.52"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
45
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
46
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
47
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.3.
|
|
48
|
-
"@lmzhen/dsh-evolution-io": "^0.3.
|
|
49
|
-
"@lmzhen/dsh-evolution-io-node": "^0.3.
|
|
50
|
-
"@lmzhen/dsh-evolution-state-json": "^0.3.
|
|
45
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.52",
|
|
46
|
+
"@lmzhen/dsh-evolution-state": "^0.3.52",
|
|
47
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.3.52",
|
|
48
|
+
"@lmzhen/dsh-evolution-io": "^0.3.52",
|
|
49
|
+
"@lmzhen/dsh-evolution-io-node": "^0.3.52",
|
|
50
|
+
"@lmzhen/dsh-evolution-state-json": "^0.3.52"
|
|
51
51
|
}
|
|
52
52
|
}
|