@lmzhen/dsh-evolution-host 0.1.0-rc.7 → 0.1.0-rc.71
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/cordis.patch.yml +36 -6
- package/package.json +27 -28
package/cordis.patch.yml
CHANGED
|
@@ -48,8 +48,9 @@
|
|
|
48
48
|
config:
|
|
49
49
|
enabled: false
|
|
50
50
|
stageForeground: true
|
|
51
|
-
-
|
|
52
|
-
|
|
51
|
+
# D-9 (rc.51): `evolution-capability` is no longer part of the host bundle
|
|
52
|
+
# — staged, non-executing Creator-mode adapter with no live consumer; keep
|
|
53
|
+
# the host mount minimal and let deployments opt in by adding the row.
|
|
53
54
|
- id: evolution-threat
|
|
54
55
|
name: '@lmzhen/dsh-evolution-threat'
|
|
55
56
|
|
|
@@ -57,10 +58,11 @@
|
|
|
57
58
|
- id: evolution-review
|
|
58
59
|
name: '@lmzhen/dsh-evolution-review'
|
|
59
60
|
config:
|
|
60
|
-
#
|
|
61
|
-
#
|
|
62
|
-
#
|
|
63
|
-
|
|
61
|
+
# The DSH tool catalog exposes the plain `skill` tool only — the
|
|
62
|
+
# `skill_search`/`skill_load` discovery pair does not exist here, so
|
|
63
|
+
# listing it would be dead configuration. Allow `skill` so review
|
|
64
|
+
# subagents can load skills under the Anchored Standard preset family.
|
|
65
|
+
reviewToolAllow: [skill]
|
|
64
66
|
- id: evolution-curator
|
|
65
67
|
name: '@lmzhen/dsh-evolution-curator'
|
|
66
68
|
- id: evolution-commands
|
|
@@ -73,3 +75,31 @@
|
|
|
73
75
|
name: '@lmzhen/dsh-evolution-learning-graph'
|
|
74
76
|
- id: evolution-replay
|
|
75
77
|
name: '@lmzhen/dsh-evolution-replay'
|
|
78
|
+
|
|
79
|
+
# ── cross-session recall: enable the native session-query index ─────────────
|
|
80
|
+
# `tool-session-query` (agent preset) exposes `session_search`; this overlay
|
|
81
|
+
# enables the backing SQLite full-text index so that search actually works.
|
|
82
|
+
# It is a configuration OVERRIDE of the base `session-query-sqlite` row (never
|
|
83
|
+
# an insert — base already provides it), so it must sit OUTSIDE the `- insert:`
|
|
84
|
+
# block above. Both fields are parameterized via environment variables (dsh
|
|
85
|
+
# `!!js` runtime evaluation), and any profile cordis.patch.yml overlay may still
|
|
86
|
+
# override them later. `openAt` defaults to `startup` so the index is ready for
|
|
87
|
+
# cross-session recall; set `DSH_EVOLUTION_SESSION_QUERY=never` to disable, or
|
|
88
|
+
# `first-search` to build it lazily. A durable `path` (not `:memory:`) lets the
|
|
89
|
+
# index survive restarts. Note: `config` values replace the base entry's config
|
|
90
|
+
# wholesale, so both path and openAt are set here.
|
|
91
|
+
- id: session-query-sqlite
|
|
92
|
+
config:
|
|
93
|
+
path: !!js (process.env.DSH_EVOLUTION_SESSION_QUERY_PATH ?? dshHomePath('evolution', 'session-query.db'))
|
|
94
|
+
openAt: !!js process.env.DSH_EVOLUTION_SESSION_QUERY ?? 'startup'
|
|
95
|
+
|
|
96
|
+
# ── Hermes 60-char catalog rule: platform interface, deployment default ──────
|
|
97
|
+
# Upstream tool-skill exposes `catalogDescriptionMaxLength` (the 500 constant is
|
|
98
|
+
# only the schema default); the Hermes authoring standard is 60 and the index
|
|
99
|
+
# truncates at the configured value. Override here so INSTALLING the evolution
|
|
100
|
+
# host bundle carries the 60-char behavior automatically — no manual profile
|
|
101
|
+
# edit needed. Base `tool-skill` row carries no other config today, so the
|
|
102
|
+
# whole-config replacement is safe; if upstream adds fields there, copy them.
|
|
103
|
+
- id: tool-skill
|
|
104
|
+
config:
|
|
105
|
+
catalogDescriptionMaxLength: 60
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-host",
|
|
3
3
|
"description": "Host-plane self-evolution infrastructure bundle for DeepSeek Harness (community build)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.71",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -26,35 +26,34 @@
|
|
|
26
26
|
}
|
|
27
27
|
},
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"@lmzhen/dsh-evolution-policy": "^0.1.0-rc.
|
|
30
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
31
|
-
"@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.
|
|
32
|
-
"@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.
|
|
33
|
-
"@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.
|
|
34
|
-
"@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.
|
|
35
|
-
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.
|
|
36
|
-
"@lmzhen/dsh-memory": "^0.1.0-rc.
|
|
37
|
-
"@lmzhen/dsh-memory-files": "^0.1.0-rc.
|
|
38
|
-
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.
|
|
39
|
-
"@lmzhen/dsh-evolution-approval": "^0.1.0-rc.
|
|
40
|
-
"@lmzhen/dsh-evolution-threat": "^0.1.0-rc.
|
|
41
|
-
"@lmzhen/dsh-evolution-review": "^0.1.0-rc.
|
|
42
|
-
"@lmzhen/dsh-evolution-curator": "^0.1.0-rc.
|
|
43
|
-
"@lmzhen/dsh-evolution-commands": "^0.1.0-rc.
|
|
44
|
-
"@lmzhen/dsh-evolution-activity": "^0.1.0-rc.
|
|
45
|
-
"@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.
|
|
46
|
-
"@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.
|
|
47
|
-
"@lmzhen/dsh-evolution-replay": "^0.1.0-rc.
|
|
48
|
-
"@lmzhen/dsh-evolution-capability": "^0.1.0-rc.7"
|
|
29
|
+
"@lmzhen/dsh-evolution-policy": "^0.1.0-rc.71",
|
|
30
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.71",
|
|
31
|
+
"@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.71",
|
|
32
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.71",
|
|
33
|
+
"@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.71",
|
|
34
|
+
"@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.71",
|
|
35
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.71",
|
|
36
|
+
"@lmzhen/dsh-memory": "^0.1.0-rc.71",
|
|
37
|
+
"@lmzhen/dsh-memory-files": "^0.1.0-rc.71",
|
|
38
|
+
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.71",
|
|
39
|
+
"@lmzhen/dsh-evolution-approval": "^0.1.0-rc.71",
|
|
40
|
+
"@lmzhen/dsh-evolution-threat": "^0.1.0-rc.71",
|
|
41
|
+
"@lmzhen/dsh-evolution-review": "^0.1.0-rc.71",
|
|
42
|
+
"@lmzhen/dsh-evolution-curator": "^0.1.0-rc.71",
|
|
43
|
+
"@lmzhen/dsh-evolution-commands": "^0.1.0-rc.71",
|
|
44
|
+
"@lmzhen/dsh-evolution-activity": "^0.1.0-rc.71",
|
|
45
|
+
"@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.71",
|
|
46
|
+
"@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.71",
|
|
47
|
+
"@lmzhen/dsh-evolution-replay": "^0.1.0-rc.71"
|
|
49
48
|
},
|
|
50
49
|
"devDependencies": {
|
|
51
|
-
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.
|
|
52
|
-
"@deepseek-ai/dsh-skill": "^0.1.
|
|
53
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
50
|
+
"@deepseek-ai/dsh-agent-loop-testkit": "^0.1.1-rc.2",
|
|
51
|
+
"@deepseek-ai/dsh-skill": "^0.1.1-rc.2",
|
|
52
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
54
53
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
55
|
-
"@lmzhen/dsh-tool-memory": "^0.1.0-rc.
|
|
56
|
-
"@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.
|
|
57
|
-
"@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.
|
|
54
|
+
"@lmzhen/dsh-tool-memory": "^0.1.0-rc.71",
|
|
55
|
+
"@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.71",
|
|
56
|
+
"@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.71"
|
|
58
57
|
},
|
|
59
58
|
"exports": {
|
|
60
59
|
"./invariant": {
|
|
@@ -69,7 +68,7 @@
|
|
|
69
68
|
"./package.json": "./package.json"
|
|
70
69
|
},
|
|
71
70
|
"peerDependencies": {
|
|
72
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
71
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
73
72
|
"@deepseek-ai/cordis": "^4.0.1"
|
|
74
73
|
},
|
|
75
74
|
"main": "lib/index.js",
|