@lmzhen/dsh-evolution-curator 0.1.0-rc.50 → 0.1.0-rc.52
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/lib/index.js +3 -1
- package/package.json +7 -7
package/lib/index.js
CHANGED
|
@@ -482,6 +482,7 @@ var EvolutionCurator = class extends Service {
|
|
|
482
482
|
const errors = [];
|
|
483
483
|
const archivedSkills = [];
|
|
484
484
|
let suppressedChanged = false;
|
|
485
|
+
const suppressedAdded = /* @__PURE__ */ new Set();
|
|
485
486
|
for (const name of archiveCandidates) {
|
|
486
487
|
const archived = await this.skills.archive(name, {
|
|
487
488
|
reason: "Lifecycle: reached archive threshold",
|
|
@@ -505,6 +506,7 @@ var EvolutionCurator = class extends Service {
|
|
|
505
506
|
});
|
|
506
507
|
if (bundledNames.has(name)) {
|
|
507
508
|
suppressedNames.add(name);
|
|
509
|
+
suppressedAdded.add(name);
|
|
508
510
|
suppressedChanged = true;
|
|
509
511
|
}
|
|
510
512
|
}
|
|
@@ -535,7 +537,7 @@ var EvolutionCurator = class extends Service {
|
|
|
535
537
|
}
|
|
536
538
|
if (suppressedChanged) try {
|
|
537
539
|
await updateSuppressedNames(root, this.io, (current) => {
|
|
538
|
-
for (const name of
|
|
540
|
+
for (const name of suppressedAdded) current.add(name);
|
|
539
541
|
});
|
|
540
542
|
} catch {
|
|
541
543
|
this.ctx.logger.warn("evolution-curator: failed to persist suppressed names; archived built-ins may re-enter the lifecycle");
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-curator",
|
|
3
3
|
"description": "Deterministic skill lifecycle and recovery (community build)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.52",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
36
|
-
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.
|
|
36
|
+
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.52"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
40
40
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|
|
41
41
|
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
|
|
42
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
43
|
-
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.
|
|
42
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.52",
|
|
43
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.52"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
46
46
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|
|
47
47
|
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6",
|
|
48
|
-
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.
|
|
49
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
50
|
-
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.
|
|
48
|
+
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.52",
|
|
49
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.52",
|
|
50
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.52"
|
|
51
51
|
}
|
|
52
52
|
}
|