@lmzhen/dsh-evolution-preset 0.3.27 → 0.3.28
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 +1 -1
- package/cordis.patch.yml +9 -0
- package/cordis.yml +22 -7
- package/package.json +24 -24
package/README.md
CHANGED
|
@@ -28,5 +28,5 @@ Independent of request-prefix construction. This package does not alter the asse
|
|
|
28
28
|
## Known Limitations and Deferred Work
|
|
29
29
|
|
|
30
30
|
|
|
31
|
-
-
|
|
31
|
+
- Compatibility one-click bundle exposes model tools profile-wide. Prefer the layered host/agent install for stricter session control.
|
|
32
32
|
|
package/cordis.patch.yml
CHANGED
|
@@ -94,3 +94,12 @@
|
|
|
94
94
|
config:
|
|
95
95
|
path: !!js (process.env.DSH_EVOLUTION_SESSION_QUERY_PATH ?? dshHomePath('evolution', 'session-query.db'))
|
|
96
96
|
openAt: !!js process.env.DSH_EVOLUTION_SESSION_QUERY || 'startup'
|
|
97
|
+
|
|
98
|
+
# ── Hermes 60-char catalog cap: evolution-host-owned, not repeated here ──────
|
|
99
|
+
# The `tool-skill` `catalogDescriptionMaxLength: 60` override (the Hermes
|
|
100
|
+
# authoring bar) is carried by the evolution-host bundle as a base row
|
|
101
|
+
# override. `evolution-host` and this one-click preset are ALTERNATIVE install
|
|
102
|
+
# targets (mutual exclusion, E-33), so this patch intentionally does NOT repeat
|
|
103
|
+
# that row — it would mount `tool-skill` twice. A preset-alone install uses the
|
|
104
|
+
# upstream DSH catalog default; the 60-char authoring bar enforced by
|
|
105
|
+
# tool-skill-manage still applies regardless.
|
package/cordis.yml
CHANGED
|
@@ -5,13 +5,28 @@
|
|
|
5
5
|
# ctx.evolutionStateStorage -> storage-domain KV provider, with a JSON
|
|
6
6
|
# provider mounted as fallback/portable audit
|
|
7
7
|
#
|
|
8
|
-
#
|
|
9
|
-
#
|
|
10
|
-
#
|
|
11
|
-
#
|
|
12
|
-
#
|
|
13
|
-
#
|
|
14
|
-
#
|
|
8
|
+
# Row-set differences from the layered / one-click flows (G5.1 decision).
|
|
9
|
+
# This STANDALONE file is a hand-composed evolution row set, and it
|
|
10
|
+
# deliberately omits the rows the platform or the host bundle already
|
|
11
|
+
# provides, so it is NOT a faithful superset of the full composition:
|
|
12
|
+
# - storage ownership (D-30): the storage stack (`storage`, `storage-json`,
|
|
13
|
+
# `storage-domain`) is HOST-plane in DSH — a preset must not own it. This
|
|
14
|
+
# STANDALONE composition lists it only because a hand-composed file has no
|
|
15
|
+
# host bundle behind it; the overlay form (cordis.patch.yml) relies on the
|
|
16
|
+
# host providing the facility and therefore does not list these rows. When
|
|
17
|
+
# composing manually, include the host storage rows yourself (or use the
|
|
18
|
+
# patch overlay on a host that already provides them).
|
|
19
|
+
# - `tool-session-query` is carried by the agent/one-click delta (the layered
|
|
20
|
+
# flow gets it from the Evolution agent preset), so it is not repeated
|
|
21
|
+
# here; a fully self-sufficient manual compose should add it (plus the
|
|
22
|
+
# host's `session-query-sqlite` index override) for cross-session recall.
|
|
23
|
+
# - `evolution-maintenance-tools`, the `session-query-sqlite` index override
|
|
24
|
+
# and the `tool-skill` 60-char catalog cap are evolution-host-owned; `host`
|
|
25
|
+
# and this one-click preset are ALTERNATIVE install targets (mutual
|
|
26
|
+
# exclusion, E-33), so repeating them here would mount the row twice.
|
|
27
|
+
# - `evolution-capability` is held out of the composition too (D-9, rc.51) —
|
|
28
|
+
# a staged Creator-mode governance seam with no live consumer; adopters
|
|
29
|
+
# add the row on top.
|
|
15
30
|
#
|
|
16
31
|
# The legacy `@deepseek-ai/dsh-evolution` facade was retired from publishing
|
|
17
32
|
# after the v0.1.0-rc.18 release tag (see docs/codebase-audit-rc16.md); this
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-preset",
|
|
3
3
|
"description": "Compatibility one-click bundle for the dsh-evolution plugin family (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.28",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -30,29 +30,29 @@
|
|
|
30
30
|
"@deepseek-ai/dsh-storage-json": "^0.1.1-rc.2",
|
|
31
31
|
"@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
|
|
32
32
|
"@deepseek-ai/dsh-tool-session-query": "^0.1.1-rc.2",
|
|
33
|
-
"@lmzhen/dsh-evolution-io": "^0.3.
|
|
34
|
-
"@lmzhen/dsh-evolution-io-node": "^0.3.
|
|
35
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.3.
|
|
36
|
-
"@lmzhen/dsh-evolution-state": "^0.3.
|
|
37
|
-
"@lmzhen/dsh-evolution-state-domain": "^0.3.
|
|
38
|
-
"@lmzhen/dsh-evolution-state-json": "^0.3.
|
|
39
|
-
"@lmzhen/dsh-memory": "^0.3.
|
|
40
|
-
"@lmzhen/dsh-memory-files": "^0.3.
|
|
41
|
-
"@lmzhen/dsh-tool-memory": "^0.3.
|
|
42
|
-
"@lmzhen/dsh-skill-usage": "^0.3.
|
|
43
|
-
"@lmzhen/dsh-tool-skill-manage": "^0.3.
|
|
44
|
-
"@lmzhen/dsh-evolution-policy": "^0.3.
|
|
45
|
-
"@lmzhen/dsh-evolution-approval": "^0.3.
|
|
46
|
-
"@lmzhen/dsh-evolution-threat": "^0.3.
|
|
47
|
-
"@lmzhen/dsh-evolution-review": "^0.3.
|
|
48
|
-
"@lmzhen/dsh-evolution-curator": "^0.3.
|
|
49
|
-
"@lmzhen/dsh-evolution-commands": "^0.3.
|
|
50
|
-
"@lmzhen/dsh-evolution-maintenance": "^0.3.
|
|
51
|
-
"@lmzhen/dsh-evolution-activity": "^0.3.
|
|
52
|
-
"@lmzhen/dsh-evolution-feedback": "^0.3.
|
|
53
|
-
"@lmzhen/dsh-evolution-learning-graph": "^0.3.
|
|
54
|
-
"@lmzhen/dsh-evolution-replay": "^0.3.
|
|
55
|
-
"@lmzhen/dsh-evolution-skill-catalog": "^0.3.
|
|
33
|
+
"@lmzhen/dsh-evolution-io": "^0.3.28",
|
|
34
|
+
"@lmzhen/dsh-evolution-io-node": "^0.3.28",
|
|
35
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.3.28",
|
|
36
|
+
"@lmzhen/dsh-evolution-state": "^0.3.28",
|
|
37
|
+
"@lmzhen/dsh-evolution-state-domain": "^0.3.28",
|
|
38
|
+
"@lmzhen/dsh-evolution-state-json": "^0.3.28",
|
|
39
|
+
"@lmzhen/dsh-memory": "^0.3.28",
|
|
40
|
+
"@lmzhen/dsh-memory-files": "^0.3.28",
|
|
41
|
+
"@lmzhen/dsh-tool-memory": "^0.3.28",
|
|
42
|
+
"@lmzhen/dsh-skill-usage": "^0.3.28",
|
|
43
|
+
"@lmzhen/dsh-tool-skill-manage": "^0.3.28",
|
|
44
|
+
"@lmzhen/dsh-evolution-policy": "^0.3.28",
|
|
45
|
+
"@lmzhen/dsh-evolution-approval": "^0.3.28",
|
|
46
|
+
"@lmzhen/dsh-evolution-threat": "^0.3.28",
|
|
47
|
+
"@lmzhen/dsh-evolution-review": "^0.3.28",
|
|
48
|
+
"@lmzhen/dsh-evolution-curator": "^0.3.28",
|
|
49
|
+
"@lmzhen/dsh-evolution-commands": "^0.3.28",
|
|
50
|
+
"@lmzhen/dsh-evolution-maintenance": "^0.3.28",
|
|
51
|
+
"@lmzhen/dsh-evolution-activity": "^0.3.28",
|
|
52
|
+
"@lmzhen/dsh-evolution-feedback": "^0.3.28",
|
|
53
|
+
"@lmzhen/dsh-evolution-learning-graph": "^0.3.28",
|
|
54
|
+
"@lmzhen/dsh-evolution-replay": "^0.3.28",
|
|
55
|
+
"@lmzhen/dsh-evolution-skill-catalog": "^0.3.28"
|
|
56
56
|
},
|
|
57
57
|
"exports": {
|
|
58
58
|
"./invariant": {
|