@lmzhen/dsh-evolution-commands 0.1.0-rc.37 → 0.1.0-rc.39
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 +2 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -65,6 +65,7 @@ function apply(ctx) {
|
|
|
65
65
|
`Lifecycle scope at ${(/* @__PURE__ */ new Date()).toISOString().slice(0, 10)}`,
|
|
66
66
|
line("Managed (may transition)", view.managed),
|
|
67
67
|
line("Watched (stale / quality-warned)", view.watched),
|
|
68
|
+
line("Quality-warned", view.qualityWarned),
|
|
68
69
|
line("Exempted (exclude / referenced)", view.exempted),
|
|
69
70
|
line("Protected (pinned / bundled / hub)", view.protected)
|
|
70
71
|
].join("\n"));
|
|
@@ -83,7 +84,7 @@ function apply(ctx) {
|
|
|
83
84
|
}
|
|
84
85
|
if (input.startsWith("restore ")) {
|
|
85
86
|
const curator = ctx.get("evolutionCurator");
|
|
86
|
-
const result = curator ? await curator.
|
|
87
|
+
const result = curator ? await curator.restoreSnapshot() : {
|
|
87
88
|
ok: false,
|
|
88
89
|
message: "Curator service not mounted."
|
|
89
90
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-commands",
|
|
3
3
|
"description": "Human commands for the evolution family (community build)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.39",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -33,7 +33,7 @@
|
|
|
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.39"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|