@lmzhen/dsh-evolution-preset 0.1.0-rc.8 → 0.1.0

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
@@ -48,6 +48,8 @@
48
48
  name: '@lmzhen/dsh-skill-usage'
49
49
  - id: tool-skill-manage
50
50
  name: '@lmzhen/dsh-tool-skill-manage'
51
+ - id: tool-session-query
52
+ name: '@deepseek-ai/dsh-tool-session-query'
51
53
  - id: evolution-skill-catalog
52
54
  name: '@lmzhen/dsh-evolution-skill-catalog'
53
55
 
@@ -77,3 +79,12 @@
77
79
  name: '@lmzhen/dsh-evolution-learning-graph'
78
80
  - id: evolution-replay
79
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,9 @@
5
5
  # ctx.evolutionStateStorage -> storage-domain KV provider, with a JSON
6
6
  # provider mounted as fallback/portable audit
7
7
  #
8
- # The legacy `@deepseek-ai/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 from publishing
9
+ # after the v0.1.0-rc.18 release tag (see docs/codebase-audit-rc16.md); this
10
+ # composition uses the smaller native packages instead.
11
11
 
12
12
  # ── control plane (immutable policy, deterministic plan validation) ────────
13
13
  - id: evolution-policy
@@ -61,8 +61,8 @@
61
61
  config:
62
62
  enabled: false
63
63
  stageForeground: true
64
- - id: evolution-capability
65
- name: '@lmzhen/dsh-evolution-capability'
64
+ # D-9 (rc.51): `evolution-capability` is held out of the preset too — staged
65
+ # Creator-mode governance with no live consumer; adopters add the row on top.
66
66
  - id: evolution-threat
67
67
  name: '@lmzhen/dsh-evolution-threat'
68
68
 
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.8",
4
+ "version": "0.1.0",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -28,31 +28,31 @@
28
28
  }
29
29
  },
30
30
  "dependencies": {
31
- "@deepseek-ai/dsh-storage": "^0.1.0-rc.6",
32
- "@deepseek-ai/dsh-storage-json": "^0.1.0-rc.6",
33
- "@deepseek-ai/dsh-storage-domain": "^0.1.0-rc.6",
34
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.8",
35
- "@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.8",
36
- "@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.8",
37
- "@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.8",
38
- "@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.8",
39
- "@lmzhen/dsh-memory": "^0.1.0-rc.8",
40
- "@lmzhen/dsh-memory-files": "^0.1.0-rc.8",
41
- "@lmzhen/dsh-tool-memory": "^0.1.0-rc.8",
42
- "@lmzhen/dsh-skill-usage": "^0.1.0-rc.8",
43
- "@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.8",
44
- "@lmzhen/dsh-evolution-policy": "^0.1.0-rc.8",
45
- "@lmzhen/dsh-evolution-approval": "^0.1.0-rc.8",
46
- "@lmzhen/dsh-evolution-threat": "^0.1.0-rc.8",
47
- "@lmzhen/dsh-evolution-review": "^0.1.0-rc.8",
48
- "@lmzhen/dsh-evolution-curator": "^0.1.0-rc.8",
49
- "@lmzhen/dsh-evolution-commands": "^0.1.0-rc.8",
50
- "@lmzhen/dsh-evolution-activity": "^0.1.0-rc.8",
51
- "@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.8",
52
- "@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.8",
53
- "@lmzhen/dsh-evolution-replay": "^0.1.0-rc.8",
54
- "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.8",
55
- "@lmzhen/dsh-evolution-capability": "^0.1.0-rc.8"
31
+ "@deepseek-ai/dsh-storage": "^0.1.1-rc.2",
32
+ "@deepseek-ai/dsh-storage-json": "^0.1.1-rc.2",
33
+ "@deepseek-ai/dsh-storage-domain": "^0.1.1-rc.2",
34
+ "@deepseek-ai/dsh-tool-session-query": "^0.1.1-rc.2",
35
+ "@lmzhen/dsh-evolution-io": "^0.1.0",
36
+ "@lmzhen/dsh-evolution-io-node": "^0.1.0",
37
+ "@lmzhen/dsh-evolution-state-storage": "^0.1.0",
38
+ "@lmzhen/dsh-evolution-state-domain": "^0.1.0",
39
+ "@lmzhen/dsh-evolution-state-json": "^0.1.0",
40
+ "@lmzhen/dsh-memory": "^0.1.0",
41
+ "@lmzhen/dsh-memory-files": "^0.1.0",
42
+ "@lmzhen/dsh-tool-memory": "^0.1.0",
43
+ "@lmzhen/dsh-skill-usage": "^0.1.0",
44
+ "@lmzhen/dsh-tool-skill-manage": "^0.1.0",
45
+ "@lmzhen/dsh-evolution-policy": "^0.1.0",
46
+ "@lmzhen/dsh-evolution-approval": "^0.1.0",
47
+ "@lmzhen/dsh-evolution-threat": "^0.1.0",
48
+ "@lmzhen/dsh-evolution-review": "^0.1.0",
49
+ "@lmzhen/dsh-evolution-curator": "^0.1.0",
50
+ "@lmzhen/dsh-evolution-commands": "^0.1.0",
51
+ "@lmzhen/dsh-evolution-activity": "^0.1.0",
52
+ "@lmzhen/dsh-evolution-feedback": "^0.1.0",
53
+ "@lmzhen/dsh-evolution-learning-graph": "^0.1.0",
54
+ "@lmzhen/dsh-evolution-replay": "^0.1.0",
55
+ "@lmzhen/dsh-evolution-skill-catalog": "^0.1.0"
56
56
  },
57
57
  "exports": {
58
58
  "./invariant": {
@@ -68,11 +68,11 @@
68
68
  "./package.json": "./package.json"
69
69
  },
70
70
  "peerDependencies": {
71
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
71
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
72
72
  "@deepseek-ai/cordis": "^4.0.1"
73
73
  },
74
74
  "devDependencies": {
75
- "@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
75
+ "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
76
76
  "@deepseek-ai/cordis": "^4.0.1"
77
77
  },
78
78
  "types": "lib/types/index.d.ts"