@lmzhen/dsh-evolution-agent-preset 0.3.77 → 0.3.79
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/README.md +18 -10
- package/bases.json +14 -0
- package/package.json +8 -4
- package/preset.cordis.yml +3 -0
- package/preset.minimal.yml +3 -0
package/README.md
CHANGED
|
@@ -31,6 +31,8 @@ vendored — the preset follows whichever platform the user actually has.
|
|
|
31
31
|
|---|---|---|---|
|
|
32
32
|
| `standard` (default) | `<platform>/standard/agent.cordis.yml` | `evolution` | `preset.yml` |
|
|
33
33
|
| `ptc` | `<platform>/ptc/agent.cordis.yml` | `evolution-ptc` | `preset.ptc.yml` |
|
|
34
|
+
| `cordis` (`requires: dynamicCordisRunner`) | `<platform>/cordis/agent.cordis.yml` | `evolution-cordis` | `preset.cordis.yml` |
|
|
35
|
+
| `minimal` (unsupported) | — | `evolution-minimal` | `preset.minimal.yml` |
|
|
34
36
|
|
|
35
37
|
`bases.json` in this package is the single table behind all four columns — the installer
|
|
36
38
|
(`AGENT_PRESET_BASES`) and the host command (`/evolution preset install --base <name>`) both
|
|
@@ -73,16 +75,22 @@ Known limitations of this base:
|
|
|
73
75
|
|
|
74
76
|
### Base coverage
|
|
75
77
|
|
|
76
|
-
`bases.json` carries
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
78
|
+
`bases.json` carries four bases and is the single table behind the installer
|
|
79
|
+
(`AGENT_PRESET_BASES`), `/evolution preset install --base <name>` and the table
|
|
80
|
+
above: `standard` (default), `ptc`, `cordis` and `minimal`. Two of them carry a
|
|
81
|
+
precondition the table itself declares, and both install paths refuse them by
|
|
82
|
+
name when it is unmet — the preset is never composed from another base:
|
|
83
|
+
|
|
84
|
+
- `cordis` — `requires: { service: 'dynamicCordisRunner' }`. The cordis preset's
|
|
85
|
+
extra row is `tool-cordis`, which injects `dynamicCordisRunner`, and that
|
|
86
|
+
service is mounted only by the `web-app` bundle. A cordis-based preset on a
|
|
87
|
+
headless, ACP or SDK profile would mount a row whose injection cannot be
|
|
88
|
+
satisfied, and a preset row that never activates is refused at mount time
|
|
89
|
+
rather than degraded. Cordis sessions otherwise get the family through the
|
|
90
|
+
profile-wide `all` install, which needs no variant.
|
|
91
|
+
- `minimal` — `unsupported`: the platform minimal composition is only persona +
|
|
92
|
+
persistent-shell, so it mounts no skill or file tool rows for the family to
|
|
93
|
+
write through (see `packages/INSTALL.md` §Platform mode × self-evolution).
|
|
86
94
|
|
|
87
95
|
**Runtime invariant:** No companion is published. The platform auto-assembles nothing and the family mounts no `<pkg>/invariant` cordis row, so a companion here would never execute (v37 S2.1 / I-3).
|
|
88
96
|
|
package/bases.json
CHANGED
|
@@ -10,6 +10,20 @@
|
|
|
10
10
|
"name": "ptc",
|
|
11
11
|
"id": "evolution-ptc",
|
|
12
12
|
"metadata": "preset.ptc.yml"
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"name": "cordis",
|
|
16
|
+
"id": "evolution-cordis",
|
|
17
|
+
"metadata": "preset.cordis.yml",
|
|
18
|
+
"requires": {
|
|
19
|
+
"service": "dynamicCordisRunner"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"name": "minimal",
|
|
24
|
+
"id": "evolution-minimal",
|
|
25
|
+
"metadata": "preset.minimal.yml",
|
|
26
|
+
"unsupported": "the platform minimal composition is only persona + persistent-shell: it carries no tool-skill row, so the family skill surface (and the 60-char cap injection) has nothing to attach to"
|
|
13
27
|
}
|
|
14
28
|
]
|
|
15
29
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-agent-preset",
|
|
3
3
|
"description": "Agent preset exposing memory and skill evolution tools to a session (community build)",
|
|
4
|
-
"version": "0.3.
|
|
4
|
+
"version": "0.3.79",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -16,6 +16,8 @@
|
|
|
16
16
|
"bases.json",
|
|
17
17
|
"preset.yml",
|
|
18
18
|
"preset.ptc.yml",
|
|
19
|
+
"preset.cordis.yml",
|
|
20
|
+
"preset.minimal.yml",
|
|
19
21
|
"package.json",
|
|
20
22
|
"lib/*.js",
|
|
21
23
|
"lib/types/**/*.d.ts"
|
|
@@ -23,9 +25,9 @@
|
|
|
23
25
|
"license": "MIT",
|
|
24
26
|
"dependencies": {
|
|
25
27
|
"@deepseek-ai/dsh-tool-session-query": "^0.1.5-rc.2",
|
|
26
|
-
"@lmzhen/dsh-tool-memory": "^0.3.
|
|
27
|
-
"@lmzhen/dsh-tool-skill-manage": "^0.3.
|
|
28
|
-
"@lmzhen/dsh-evolution-skill-catalog": "^0.3.
|
|
28
|
+
"@lmzhen/dsh-tool-memory": "^0.3.79",
|
|
29
|
+
"@lmzhen/dsh-tool-skill-manage": "^0.3.79",
|
|
30
|
+
"@lmzhen/dsh-evolution-skill-catalog": "^0.3.79"
|
|
29
31
|
},
|
|
30
32
|
"exports": {
|
|
31
33
|
".": {
|
|
@@ -36,6 +38,8 @@
|
|
|
36
38
|
"./bases.json": "./bases.json",
|
|
37
39
|
"./preset.yml": "./preset.yml",
|
|
38
40
|
"./preset.ptc.yml": "./preset.ptc.yml",
|
|
41
|
+
"./preset.cordis.yml": "./preset.cordis.yml",
|
|
42
|
+
"./preset.minimal.yml": "./preset.minimal.yml",
|
|
39
43
|
"./package.json": "./package.json"
|
|
40
44
|
},
|
|
41
45
|
"main": "lib/index.js",
|