@lmzhen/dsh-evolution-commands 0.1.0-rc.40 → 0.1.0-rc.41
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 +6 -1
- package/package.json +2 -2
package/lib/index.js
CHANGED
|
@@ -111,7 +111,12 @@ function apply(ctx) {
|
|
|
111
111
|
return result.ok ? ok(result.message) : err(result.message);
|
|
112
112
|
}
|
|
113
113
|
if (input === "learn" || input.startsWith("learn ")) return ok(buildLearnPrompt(input === "learn" ? "" : input.slice(6).trim()));
|
|
114
|
-
|
|
114
|
+
if (input === "replay") {
|
|
115
|
+
const replay = ctx.get("evolutionReplay");
|
|
116
|
+
if (!replay) return err("Replay service not mounted.");
|
|
117
|
+
return ok(replay.compare().report);
|
|
118
|
+
}
|
|
119
|
+
return ok("Evolution: memory, skills, review, curator. Use /evolution pending | curator run | curator report | curator scope | restore | consolidate <target> <source...> | skill restore <name> | learn [request] | replay.");
|
|
115
120
|
}
|
|
116
121
|
});
|
|
117
122
|
});
|
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.41",
|
|
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.41"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|