@lmzhen/dsh-evolution-curator 0.3.18 → 0.3.20

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 +1 -1
  2. package/package.json +7 -7
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;
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.18",
4
+ "version": "0.3.20",
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.3.18"
36
+ "@lmzhen/dsh-evolution-core": "^0.3.20"
37
37
  },
38
38
  "peerDependencies": {
39
39
  "@deepseek-ai/cordis": "^4.0.1",
40
40
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
41
41
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
42
- "@lmzhen/dsh-evolution-io": "^0.3.18",
43
- "@lmzhen/dsh-evolution-state": "^0.3.18"
42
+ "@lmzhen/dsh-evolution-io": "^0.3.20",
43
+ "@lmzhen/dsh-evolution-state": "^0.3.20"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
47
47
  "@deepseek-ai/dsh-llm": "^0.1.1-rc.2",
48
- "@lmzhen/dsh-evolution-core": "^0.3.18",
49
- "@lmzhen/dsh-evolution-io": "^0.3.18",
50
- "@lmzhen/dsh-evolution-state": "^0.3.18"
48
+ "@lmzhen/dsh-evolution-core": "^0.3.20",
49
+ "@lmzhen/dsh-evolution-io": "^0.3.20",
50
+ "@lmzhen/dsh-evolution-state": "^0.3.20"
51
51
  }
52
52
  }