@lmzhen/dsh-evolution-curator 0.1.0-rc.49 → 0.1.0-rc.50

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.
Files changed (2) hide show
  1. package/lib/index.js +8 -5
  2. package/package.json +7 -7
package/lib/index.js CHANGED
@@ -3,7 +3,7 @@ import { randomUUID } from "node:crypto";
3
3
  import { join } from "node:path";
4
4
  import { BlockAssembler, createUserMessage } from "@deepseek-ai/dsh-llm";
5
5
  import z from "@deepseek-ai/schemastery";
6
- import { CURATOR_DRY_RUN_BANNER, CURATOR_PROMPT, DEFAULT_ARCHIVE_AFTER_DAYS, DEFAULT_CURATOR_INTERVAL_HOURS, DEFAULT_MIN_IDLE_HOURS, DEFAULT_STALE_AFTER_DAYS, EvolutionGateSet, SkillLibrary, buildCuratorRunReport, computeLifecycleTransitions, computeQualityScores, computeScopeView, emptyRecord, evolutionHome, evolutionIoAdapter, loadSuppressedNames, loadUsage, parseCuratorNominations, relatedSkillNames, renderCuratorReportMarkdown, saveSuppressedNames, saveUsage } from "@lmzhen/dsh-evolution-core";
6
+ import { CURATOR_DRY_RUN_BANNER, CURATOR_PROMPT, DEFAULT_ARCHIVE_AFTER_DAYS, DEFAULT_CURATOR_INTERVAL_HOURS, DEFAULT_MIN_IDLE_HOURS, DEFAULT_STALE_AFTER_DAYS, EvolutionGateSet, SkillLibrary, buildCuratorRunReport, computeLifecycleTransitions, computeQualityScores, computeScopeView, emptyRecord, evolutionHome, evolutionIoAdapter, loadSuppressedNames, loadUsage, parseCuratorNominations, relatedSkillNames, renderCuratorReportMarkdown, saveUsage, updateSuppressedNames } from "@lmzhen/dsh-evolution-core";
7
7
  //#region lib/types/index.js
8
8
  /**
9
9
  * Deterministic skill lifecycle curator with interval gate and archive.
@@ -534,7 +534,9 @@ var EvolutionCurator = class extends Service {
534
534
  });
535
535
  }
536
536
  if (suppressedChanged) try {
537
- await saveSuppressedNames(root, suppressedNames, this.io);
537
+ await updateSuppressedNames(root, this.io, (current) => {
538
+ for (const name of suppressedNames) current.add(name);
539
+ });
538
540
  } catch {
539
541
  this.ctx.logger.warn("evolution-curator: failed to persist suppressed names; archived built-ins may re-enter the lifecycle");
540
542
  }
@@ -686,9 +688,10 @@ var EvolutionCurator = class extends Service {
686
688
  if (record) record.state = "active";
687
689
  if (record) record.archived_at = null;
688
690
  await saveUsage(this.skills.root, usage, this.io);
689
- const suppressed = new Set(await loadSuppressedNames(this.skills.root, this.io));
690
- if (suppressed.delete(name)) try {
691
- await saveSuppressedNames(this.skills.root, suppressed, this.io);
691
+ if (new Set(await loadSuppressedNames(this.skills.root, this.io)).has(name)) try {
692
+ await updateSuppressedNames(this.skills.root, this.io, (current) => {
693
+ current.delete(name);
694
+ });
692
695
  } catch {
693
696
  this.ctx.logger.warn(`evolution-curator: failed to persist suppressed names after restoring ${name}`);
694
697
  }
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.49",
4
+ "version": "0.1.0-rc.50",
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.49"
36
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.50"
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.49",
43
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.49"
42
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.50",
43
+ "@lmzhen/dsh-evolution-state": "^0.1.0-rc.50"
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",
49
- "@lmzhen/dsh-evolution-io": "^0.1.0-rc.49",
50
- "@lmzhen/dsh-evolution-state": "^0.1.0-rc.49"
48
+ "@lmzhen/dsh-evolution-core": "^0.1.0-rc.50",
49
+ "@lmzhen/dsh-evolution-io": "^0.1.0-rc.50",
50
+ "@lmzhen/dsh-evolution-state": "^0.1.0-rc.50"
51
51
  }
52
52
  }