@lmzhen/dsh-evolution-host 0.1.0-rc.1 → 0.1.0-rc.3
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 +75 -74
- package/package.json +24 -24
package/cordis.patch.yml
CHANGED
|
@@ -1,74 +1,75 @@
|
|
|
1
|
-
# Host-plane evolution bundle.
|
|
2
|
-
#
|
|
3
|
-
# This layer owns the shared self-evolution INFRASTRUCTURE: registries,
|
|
4
|
-
# providers, control plane, background review/curator, and observability.
|
|
5
|
-
# It deliberately registers NO model-facing tools. Model tools are the
|
|
6
|
-
# agent-preset layer (see ../evolution-agent/agent.cordis.yml), so a profile
|
|
7
|
-
# can run evolution automation without exposing `memory`/`skill_manage` to
|
|
8
|
-
# every session.
|
|
9
|
-
- insert:
|
|
10
|
-
# ── control plane ───────────────────────────────────────────────────────
|
|
11
|
-
- id: evolution-policy
|
|
12
|
-
name: '@lmzhen/dsh-evolution-policy'
|
|
13
|
-
|
|
14
|
-
# ── IO seam: one registry, one node:fs provider ─────────────────────────
|
|
15
|
-
- id: evolution-io
|
|
16
|
-
name: '@lmzhen/dsh-evolution-io'
|
|
17
|
-
- id: evolution-io-node
|
|
18
|
-
name: '@lmzhen/dsh-evolution-io-node'
|
|
19
|
-
|
|
20
|
-
# ── durable state: storage-domain KV first, portable JSON fallback ──────
|
|
21
|
-
- id: evolution-state-storage
|
|
22
|
-
name: '@lmzhen/dsh-evolution-state-storage'
|
|
23
|
-
- id: evolution-state-domain
|
|
24
|
-
name: '@lmzhen/dsh-evolution-state-domain'
|
|
25
|
-
# The storage-domain
|
|
26
|
-
#
|
|
27
|
-
# state
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
#
|
|
61
|
-
#
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
1
|
+
# Host-plane evolution bundle.
|
|
2
|
+
#
|
|
3
|
+
# This layer owns the shared self-evolution INFRASTRUCTURE: registries,
|
|
4
|
+
# providers, control plane, background review/curator, and observability.
|
|
5
|
+
# It deliberately registers NO model-facing tools. Model tools are the
|
|
6
|
+
# agent-preset layer (see ../evolution-agent/agent.cordis.yml), so a profile
|
|
7
|
+
# can run evolution automation without exposing `memory`/`skill_manage` to
|
|
8
|
+
# every session.
|
|
9
|
+
- insert:
|
|
10
|
+
# ── control plane ───────────────────────────────────────────────────────
|
|
11
|
+
- id: evolution-policy
|
|
12
|
+
name: '@lmzhen/dsh-evolution-policy'
|
|
13
|
+
|
|
14
|
+
# ── IO seam: one registry, one node:fs provider ─────────────────────────
|
|
15
|
+
- id: evolution-io
|
|
16
|
+
name: '@lmzhen/dsh-evolution-io'
|
|
17
|
+
- id: evolution-io-node
|
|
18
|
+
name: '@lmzhen/dsh-evolution-io-node'
|
|
19
|
+
|
|
20
|
+
# ── durable state: storage-domain KV first, portable JSON fallback ──────
|
|
21
|
+
- id: evolution-state-storage
|
|
22
|
+
name: '@lmzhen/dsh-evolution-state-storage'
|
|
23
|
+
- id: evolution-state-domain
|
|
24
|
+
name: '@lmzhen/dsh-evolution-state-domain'
|
|
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
|
|
30
|
+
- id: evolution-state-json
|
|
31
|
+
name: '@lmzhen/dsh-evolution-state-json'
|
|
32
|
+
- id: evolution-state
|
|
33
|
+
name: '@lmzhen/dsh-evolution-state'
|
|
34
|
+
|
|
35
|
+
# ── memory seam: registry and provider, no model tool ───────────────────
|
|
36
|
+
- id: memory
|
|
37
|
+
name: '@lmzhen/dsh-memory'
|
|
38
|
+
- id: memory-files
|
|
39
|
+
name: '@lmzhen/dsh-memory-files'
|
|
40
|
+
|
|
41
|
+
# ── skill telemetry (skill catalog/writer live in agent presets) ────────
|
|
42
|
+
- id: skill-usage
|
|
43
|
+
name: '@lmzhen/dsh-skill-usage'
|
|
44
|
+
|
|
45
|
+
# ── write admission: staged approval (off by default) + threat guard ────
|
|
46
|
+
- id: evolution-approval
|
|
47
|
+
name: '@lmzhen/dsh-evolution-approval'
|
|
48
|
+
config:
|
|
49
|
+
enabled: false
|
|
50
|
+
stageForeground: true
|
|
51
|
+
- id: evolution-capability
|
|
52
|
+
name: '@lmzhen/dsh-evolution-capability'
|
|
53
|
+
- id: evolution-threat
|
|
54
|
+
name: '@lmzhen/dsh-evolution-threat'
|
|
55
|
+
|
|
56
|
+
# ── review / curator / observability / human controls ───────────────────
|
|
57
|
+
- id: evolution-review
|
|
58
|
+
name: '@lmzhen/dsh-evolution-review'
|
|
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]
|
|
64
|
+
- id: evolution-curator
|
|
65
|
+
name: '@lmzhen/dsh-evolution-curator'
|
|
66
|
+
- id: evolution-commands
|
|
67
|
+
name: '@lmzhen/dsh-evolution-commands'
|
|
68
|
+
- id: evolution-activity
|
|
69
|
+
name: '@lmzhen/dsh-evolution-activity'
|
|
70
|
+
- id: evolution-feedback
|
|
71
|
+
name: '@lmzhen/dsh-evolution-feedback'
|
|
72
|
+
- id: evolution-learning-graph
|
|
73
|
+
name: '@lmzhen/dsh-evolution-learning-graph'
|
|
74
|
+
- id: evolution-replay
|
|
75
|
+
name: '@lmzhen/dsh-evolution-replay'
|
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.3",
|
|
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.
|
|
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.
|
|
29
|
+
"@lmzhen/dsh-evolution-policy": "^0.1.0-rc.3",
|
|
30
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.3",
|
|
31
|
+
"@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.3",
|
|
32
|
+
"@lmzhen/dsh-evolution-state-storage": "^0.1.0-rc.3",
|
|
33
|
+
"@lmzhen/dsh-evolution-state-domain": "^0.1.0-rc.3",
|
|
34
|
+
"@lmzhen/dsh-evolution-state-json": "^0.1.0-rc.3",
|
|
35
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.3",
|
|
36
|
+
"@lmzhen/dsh-memory": "^0.1.0-rc.3",
|
|
37
|
+
"@lmzhen/dsh-memory-files": "^0.1.0-rc.3",
|
|
38
|
+
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.3",
|
|
39
|
+
"@lmzhen/dsh-evolution-approval": "^0.1.0-rc.3",
|
|
40
|
+
"@lmzhen/dsh-evolution-threat": "^0.1.0-rc.3",
|
|
41
|
+
"@lmzhen/dsh-evolution-review": "^0.1.0-rc.3",
|
|
42
|
+
"@lmzhen/dsh-evolution-curator": "^0.1.0-rc.3",
|
|
43
|
+
"@lmzhen/dsh-evolution-commands": "^0.1.0-rc.3",
|
|
44
|
+
"@lmzhen/dsh-evolution-activity": "^0.1.0-rc.3",
|
|
45
|
+
"@lmzhen/dsh-evolution-feedback": "^0.1.0-rc.3",
|
|
46
|
+
"@lmzhen/dsh-evolution-learning-graph": "^0.1.0-rc.3",
|
|
47
|
+
"@lmzhen/dsh-evolution-replay": "^0.1.0-rc.3",
|
|
48
|
+
"@lmzhen/dsh-evolution-capability": "^0.1.0-rc.3"
|
|
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.
|
|
56
|
-
"@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.
|
|
57
|
-
"@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.
|
|
55
|
+
"@lmzhen/dsh-tool-memory": "^0.1.0-rc.3",
|
|
56
|
+
"@lmzhen/dsh-tool-skill-manage": "^0.1.0-rc.3",
|
|
57
|
+
"@lmzhen/dsh-evolution-skill-catalog": "^0.1.0-rc.3"
|
|
58
58
|
},
|
|
59
59
|
"exports": {
|
|
60
60
|
"./invariant": {
|