@lmzhen/dsh-evolution-curator 0.3.19 → 0.3.21

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 CHANGED
@@ -687,7 +687,7 @@ var EvolutionCurator = class extends Service {
687
687
  }
688
688
  async latestReport() {
689
689
  const reportsRoot = join(evolutionHome(), "reports");
690
- const names = (await this.io.list(reportsRoot)).filter((name) => name.startsWith("curator-") && name.endsWith(".json"));
690
+ const names = (await this.io.list(reportsRoot)).filter((name) => name.startsWith("curator-") && name.endsWith(".json") && !name.startsWith("curator-error-"));
691
691
  let latest = null;
692
692
  for (const name of names) {
693
693
  const mtime = await this.io.mtime?.(join(reportsRoot, name)) ?? null;
@@ -1,12 +1,12 @@
1
1
  /**
2
2
  * Deterministic skill lifecycle curator with interval gate and archive.
3
- * @module @deepseek-ai/dsh-evolution-curator
3
+ * @module @lmzhen/dsh-evolution-curator
4
4
  */
5
5
  import { Context, Service } from '@deepseek-ai/cordis';
6
6
  import type Schema from '@deepseek-ai/schemastery';
7
- import { EvolutionGateSet, SkillLibrary } from '@deepseek-ai/dsh-evolution-core';
8
- import { type CuratorConsolidation, type CuratorNominations, type CuratorRunReport, type ScopeView, type SkillActionResult, type SkillHealthVerdict } from '@deepseek-ai/dsh-evolution-core';
9
- import type { CuratorStateRecord } from '@deepseek-ai/dsh-evolution-state';
7
+ import { EvolutionGateSet, SkillLibrary } from '@lmzhen/dsh-evolution-core';
8
+ import { type CuratorConsolidation, type CuratorNominations, type CuratorRunReport, type ScopeView, type SkillActionResult, type SkillHealthVerdict } from '@lmzhen/dsh-evolution-core';
9
+ import type { CuratorStateRecord } from '@lmzhen/dsh-evolution-state';
10
10
  declare module '@deepseek-ai/cordis' {
11
11
  interface Context {
12
12
  evolutionCurator: EvolutionCurator;
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.3.19",
4
+ "version": "0.3.21",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
@@ -25,28 +25,26 @@
25
25
  "./package.json": "./package.json"
26
26
  },
27
27
  "files": [
28
- "lib/index.js",
29
- "lib/invariant.js",
30
- "lib/types/**/*.d.ts",
31
- "lib/types/invariant.d.ts"
28
+ "lib/*.js",
29
+ "lib/types/**/*.d.ts"
32
30
  ],
33
31
  "license": "MIT",
34
32
  "dependencies": {
35
33
  "@deepseek-ai/schemastery": "^3.18.1",
36
- "@lmzhen/dsh-evolution-core": "^0.3.19"
34
+ "@lmzhen/dsh-evolution-core": "^0.3.21"
37
35
  },
38
36
  "peerDependencies": {
39
37
  "@deepseek-ai/cordis": "^4.0.1",
40
38
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
41
39
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
42
- "@lmzhen/dsh-evolution-io": "^0.3.19",
43
- "@lmzhen/dsh-evolution-state": "^0.3.19"
40
+ "@lmzhen/dsh-evolution-io": "^0.3.21",
41
+ "@lmzhen/dsh-evolution-state": "^0.3.21"
44
42
  },
45
43
  "devDependencies": {
46
44
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
47
45
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
48
- "@lmzhen/dsh-evolution-core": "^0.3.19",
49
- "@lmzhen/dsh-evolution-io": "^0.3.19",
50
- "@lmzhen/dsh-evolution-state": "^0.3.19"
46
+ "@lmzhen/dsh-evolution-core": "^0.3.21",
47
+ "@lmzhen/dsh-evolution-io": "^0.3.21",
48
+ "@lmzhen/dsh-evolution-state": "^0.3.21"
51
49
  }
52
50
  }