@lmzhen/dsh-evolution-host 0.1.0-rc.5 → 0.1.0-rc.50

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