@lmzhen/dsh-evolution-preset 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.
package/cordis.patch.yml CHANGED
@@ -25,10 +25,11 @@
25
25
  name: '@lmzhen/dsh-evolution-state-storage'
26
26
  - id: evolution-state-domain
27
27
  name: '@lmzhen/dsh-evolution-state-domain'
28
- # The storage-domain facility is host-plane. On hosts that do not mount
29
- # it, keep this row dormant so the JSON provider remains the active
30
- # state backend instead of turning the whole tree into a pending entry.
31
- disabled: !!js ctx.get('storageDomain') === undefined
28
+ # The storage-domain provider is opt-in. It is disabled by default so a
29
+ # profile without the host storage-domain facility boots deterministically
30
+ # and evolution-state-json remains the active portable backend. Enable it
31
+ # explicitly in a profile overlay only when storage-domain is mounted.
32
+ disabled: true
32
33
  - id: evolution-state-json
33
34
  name: '@lmzhen/dsh-evolution-state-json'
34
35
  - id: evolution-state
@@ -47,6 +48,8 @@
47
48
  name: '@lmzhen/dsh-skill-usage'
48
49
  - id: tool-skill-manage
49
50
  name: '@lmzhen/dsh-tool-skill-manage'
51
+ - id: tool-session-query
52
+ name: '@deepseek-ai/dsh-tool-session-query'
50
53
  - id: evolution-skill-catalog
51
54
  name: '@lmzhen/dsh-evolution-skill-catalog'
52
55
 
@@ -76,3 +79,12 @@
76
79
  name: '@lmzhen/dsh-evolution-learning-graph'
77
80
  - id: evolution-replay
78
81
  name: '@lmzhen/dsh-evolution-replay'
82
+
83
+ # ── cross-session recall: enable the native session-query index ─────────────
84
+ # Mirrors evolution-host: this is an OVERRIDE of the base `session-query-sqlite`
85
+ # row (never an insert) so it sits OUTSIDE the `- insert:` block. Parameterized
86
+ # via dsh `!!js` runtime env evaluation; profile overlays may still override.
87
+ - id: session-query-sqlite
88
+ config:
89
+ path: !!js (process.env.DSH_EVOLUTION_SESSION_QUERY_PATH ?? ((process.env.DSH_HOME ?? process.env.USERPROFILE ?? '.') + '/evolution/session-query.db'))
90
+ openAt: !!js process.env.DSH_EVOLUTION_SESSION_QUERY ?? 'startup'
package/cordis.yml CHANGED
@@ -5,9 +5,8 @@
5
5
  # ctx.evolutionStateStorage -> storage-domain KV provider, with a JSON
6
6
  # provider mounted as fallback/portable audit
7
7
  #
8
- # The legacy `@lmzhen/dsh-evolution` facade is NOT mounted here. It stays
9
- # available as a one-row compatibility plugin; this composition uses the
10
- # smaller native packages instead.
8
+ # The legacy `@deepseek-ai/dsh-evolution` facade was retired at rc.18; this
9
+ # composition uses the smaller native packages instead.
11
10
 
12
11
  # ── control plane (immutable policy, deterministic plan validation) ────────
13
12
  - id: evolution-policy
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.1.0-rc.2",
4
+ "version": "0.1.0-rc.20",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -31,28 +31,29 @@
31
31
  "@deepseek-ai/dsh-storage": "^0.1.0-rc.6",
32
32
  "@deepseek-ai/dsh-storage-json": "^0.1.0-rc.6",
33
33
  "@deepseek-ai/dsh-storage-domain": "^0.1.0-rc.6",
34
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.2",
35
- "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.2",
36
- "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.2",
37
- "@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.2",
38
- "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.2",
39
- "@lmzhen/dsh-memory": "^0.1.0-rc.2",
40
- "@lmzhen/dsh-memory-files": "^0.1.0-rc.2",
41
- "@lmzhen/dsh-tool-memory": "^0.1.0-rc.2",
42
- "@lmzhen/dsh-skill-usage": "^0.1.0-rc.2",
43
- "@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.2",
44
- "@lmzhen/dsh-evolution-policy": "^0.1.0-rc.2",
45
- "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.2",
46
- "@lmzhen/dsh-evolution-threat": "^0.1.0-rc.2",
47
- "@lmzhen/dsh-evolution-review": "^0.1.0-rc.2",
48
- "@lmzhen/dsh-evolution-curator": "^0.1.0-rc.2",
49
- "@lmzhen/dsh-evolution-commands": "^0.1.0-rc.2",
50
- "@lmzhen/dsh-evolution-activity": "^0.1.0-rc.2",
51
- "@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.2",
52
- "@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.2",
53
- "@lmzhen/dsh-evolution-replay": "^0.1.0-rc.2",
54
- "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.2",
55
- "@lmzhen/dsh-evolution-capability": "^0.1.0-rc.2"
34
+ "@deepseek-ai/dsh-tool-session-query": "^0.1.0-rc.6",
35
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.20",
36
+ "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.20",
37
+ "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.20",
38
+ "@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.20",
39
+ "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.20",
40
+ "@lmzhen/dsh-memory": "^0.1.0-rc.20",
41
+ "@lmzhen/dsh-memory-files": "^0.1.0-rc.20",
42
+ "@lmzhen/dsh-tool-memory": "^0.1.0-rc.20",
43
+ "@lmzhen/dsh-skill-usage": "^0.1.0-rc.20",
44
+ "@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.20",
45
+ "@lmzhen/dsh-evolution-policy": "^0.1.0-rc.20",
46
+ "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.20",
47
+ "@lmzhen/dsh-evolution-threat": "^0.1.0-rc.20",
48
+ "@lmzhen/dsh-evolution-review": "^0.1.0-rc.20",
49
+ "@lmzhen/dsh-evolution-curator": "^0.1.0-rc.20",
50
+ "@lmzhen/dsh-evolution-commands": "^0.1.0-rc.20",
51
+ "@lmzhen/dsh-evolution-activity": "^0.1.0-rc.20",
52
+ "@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.20",
53
+ "@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.20",
54
+ "@lmzhen/dsh-evolution-replay": "^0.1.0-rc.20",
55
+ "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.20",
56
+ "@lmzhen/dsh-evolution-capability": "^0.1.0-rc.20"
56
57
  },
57
58
  "exports": {
58
59
  "./invariant": {