@lmzhen/dsh-evolution-curator 0.1.0-rc.64 → 0.1.0-rc.65
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 +4 -1
- package/package.json +7 -7
package/lib/index.js
CHANGED
|
@@ -503,7 +503,10 @@ var EvolutionCurator = class extends Service {
|
|
|
503
503
|
if (!archived.ok) {
|
|
504
504
|
const record = usage.get(name);
|
|
505
505
|
const from = failedFrom?.get(name);
|
|
506
|
-
if (record && (from === "stale" || from === "active"))
|
|
506
|
+
if (record && (from === "stale" || from === "active")) {
|
|
507
|
+
record.state = from;
|
|
508
|
+
record.archived_at = null;
|
|
509
|
+
}
|
|
507
510
|
errors.push(`${name}: ${archived.message}`);
|
|
508
511
|
} else {
|
|
509
512
|
const record = usage.get(name);
|
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.65",
|
|
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.65"
|
|
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.1.0-rc.
|
|
43
|
-
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.
|
|
42
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.65",
|
|
43
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.65"
|
|
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.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.65",
|
|
49
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.65",
|
|
50
|
+
"@lmzhen/dsh-evolution-state": "^0.1.0-rc.65"
|
|
51
51
|
}
|
|
52
52
|
}
|