@lmzhen/dsh-evolution-feedback 0.1.0-rc.3 → 0.1.0-rc.31
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 +9 -3
- package/lib/types/index.d.ts +1 -1
- package/package.json +6 -7
package/lib/index.js
CHANGED
|
@@ -34,8 +34,14 @@ var EvolutionFeedback = class {
|
|
|
34
34
|
try {
|
|
35
35
|
const parsed = JSON.parse(raw);
|
|
36
36
|
this.state = {
|
|
37
|
-
skills: {
|
|
38
|
-
|
|
37
|
+
skills: {
|
|
38
|
+
...parsed.skills,
|
|
39
|
+
...this.state.skills
|
|
40
|
+
},
|
|
41
|
+
sessions: {
|
|
42
|
+
...parsed.sessions,
|
|
43
|
+
...this.state.sessions
|
|
44
|
+
}
|
|
39
45
|
};
|
|
40
46
|
} catch {}
|
|
41
47
|
});
|
|
@@ -107,4 +113,4 @@ function apply(ctx, rawConfig = {}) {
|
|
|
107
113
|
}, "evolution-feedback.flush");
|
|
108
114
|
}
|
|
109
115
|
//#endregion
|
|
110
|
-
export { Config, EvolutionFeedback,
|
|
116
|
+
export { Config, EvolutionFeedback, apply, name };
|
package/lib/types/index.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-feedback",
|
|
3
3
|
"description": "Feedback-to-quality scoring for self-evolution (community build)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.31",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -37,14 +37,13 @@
|
|
|
37
37
|
"peerDependencies": {
|
|
38
38
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
40
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
41
|
-
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.
|
|
40
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.31",
|
|
41
|
+
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.31"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
44
|
"@deepseek-ai/dsh-invariants": "^0.1.0-rc.6",
|
|
45
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
46
|
-
"@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.
|
|
47
|
-
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.
|
|
48
|
-
"@lmzhen/dsh-evolution": "^0.1.0-rc.3"
|
|
45
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.31",
|
|
46
|
+
"@lmzhen/dsh-evolution-io-node": "^0.1.0-rc.31",
|
|
47
|
+
"@lmzhen/dsh-skill-usage": "^0.1.0-rc.31"
|
|
49
48
|
}
|
|
50
49
|
}
|