@lmzhen/dsh-evolution-host 0.1.0-rc.2 → 0.1.0-rc.20

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 +22 -4
  2. package/package.json +24 -24
package/cordis.patch.yml CHANGED
@@ -22,10 +22,11 @@
22
22
  name: '@lmzhen/dsh-evolution-state-storage'
23
23
  - id: evolution-state-domain
24
24
  name: '@lmzhen/dsh-evolution-state-domain'
25
- # The storage-domain facility is host-plane. On hosts that do not mount
26
- # it, keep this row dormant so the JSON provider remains the active
27
- # state backend instead of turning the whole tree into a pending entry.
28
- disabled: !!js ctx.get('storageDomain') === undefined
25
+ # The storage-domain provider is opt-in. It is disabled by default so a
26
+ # profile without the host storage-domain facility boots deterministically
27
+ # and evolution-state-json remains the active portable backend. Enable it
28
+ # explicitly in a profile overlay only when storage-domain is mounted.
29
+ disabled: true
29
30
  - id: evolution-state-json
30
31
  name: '@lmzhen/dsh-evolution-state-json'
31
32
  - id: evolution-state
@@ -72,3 +73,20 @@
72
73
  name: '@lmzhen/dsh-evolution-learning-graph'
73
74
  - id: evolution-replay
74
75
  name: '@lmzhen/dsh-evolution-replay'
76
+
77
+ # ── cross-session recall: enable the native session-query index ─────────────
78
+ # `tool-session-query` (agent preset) exposes `session_search`; this overlay
79
+ # enables the backing SQLite full-text index so that search actually works.
80
+ # It is a configuration OVERRIDE of the base `session-query-sqlite` row (never
81
+ # an insert — base already provides it), so it must sit OUTSIDE the `- insert:`
82
+ # block above. Both fields are parameterized via environment variables (dsh
83
+ # `!!js` runtime evaluation), and any profile cordis.patch.yml overlay may still
84
+ # override them later. `openAt` defaults to `startup` so the index is ready for
85
+ # cross-session recall; set `DSH_EVOLUTION_SESSION_QUERY=never` to disable, or
86
+ # `first-search` to build it lazily. A durable `path` (not `:memory:`) lets the
87
+ # index survive restarts. Note: `config` values replace the base entry's config
88
+ # wholesale, so both path and openAt are set here.
89
+ - id: session-query-sqlite
90
+ config:
91
+ path: !!js (process.env.DSH_EVOLUTION_SESSION_QUERY_PATH ?? ((process.env.DSH_HOME ?? process.env.USERPROFILE ?? '.') + '/evolution/session-query.db'))
92
+ openAt: !!js process.env.DSH_EVOLUTION_SESSION_QUERY ?? 'startup'
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.2",
4
+ "version": "0.1.0-rc.20",
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.2",
30
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.2",
31
- "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.2",
32
- "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.2",
33
- "@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.2",
34
- "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.2",
35
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.2",
36
- "@lmzhen/dsh-memory": "^0.1.0-rc.2",
37
- "@lmzhen/dsh-memory-files": "^0.1.0-rc.2",
38
- "@lmzhen/dsh-skill-usage": "^0.1.0-rc.2",
39
- "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.2",
40
- "@lmzhen/dsh-evolution-threat": "^0.1.0-rc.2",
41
- "@lmzhen/dsh-evolution-review": "^0.1.0-rc.2",
42
- "@lmzhen/dsh-evolution-curator": "^0.1.0-rc.2",
43
- "@lmzhen/dsh-evolution-commands": "^0.1.0-rc.2",
44
- "@lmzhen/dsh-evolution-activity": "^0.1.0-rc.2",
45
- "@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.2",
46
- "@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.2",
47
- "@lmzhen/dsh-evolution-replay": "^0.1.0-rc.2",
48
- "@lmzhen/dsh-evolution-capability": "^0.1.0-rc.2"
29
+ "@lmzhen/dsh-evolution-policy": "^0.1.0-rc.20",
30
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.20",
31
+ "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.20",
32
+ "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.20",
33
+ "@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.20",
34
+ "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.20",
35
+ "@lmzhen/dsh-evolution-state": "^0.1.0-rc.20",
36
+ "@lmzhen/dsh-memory": "^0.1.0-rc.20",
37
+ "@lmzhen/dsh-memory-files": "^0.1.0-rc.20",
38
+ "@lmzhen/dsh-skill-usage": "^0.1.0-rc.20",
39
+ "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.20",
40
+ "@lmzhen/dsh-evolution-threat": "^0.1.0-rc.20",
41
+ "@lmzhen/dsh-evolution-review": "^0.1.0-rc.20",
42
+ "@lmzhen/dsh-evolution-curator": "^0.1.0-rc.20",
43
+ "@lmzhen/dsh-evolution-commands": "^0.1.0-rc.20",
44
+ "@lmzhen/dsh-evolution-activity": "^0.1.0-rc.20",
45
+ "@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.20",
46
+ "@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.20",
47
+ "@lmzhen/dsh-evolution-replay": "^0.1.0-rc.20",
48
+ "@lmzhen/dsh-evolution-capability": "^0.1.0-rc.20"
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.2",
56
- "@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.2",
57
- "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.2"
55
+ "@lmzhen/dsh-tool-memory": "^0.1.0-rc.20",
56
+ "@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.20",
57
+ "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.20"
58
58
  },
59
59
  "exports": {
60
60
  "./invariant": {