@lmzhen/dsh-evolution-skill-catalog 0.1.0-rc.6 → 0.1.0-rc.60
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 -2
- package/package.json +9 -9
package/lib/index.js
CHANGED
|
@@ -54,10 +54,10 @@ function apply(ctx, rawConfig = {}) {
|
|
|
54
54
|
async get(candidate) {
|
|
55
55
|
const name = candidate.name;
|
|
56
56
|
if (!visible(name)) return void 0;
|
|
57
|
-
const content = await library.read(name);
|
|
58
|
-
if (content === null) return void 0;
|
|
59
57
|
const summary = (await library.list()).find((item) => item.name === name);
|
|
60
58
|
if (!summary) return void 0;
|
|
59
|
+
const content = await library.read(name);
|
|
60
|
+
if (content === null) return void 0;
|
|
61
61
|
return {
|
|
62
62
|
name,
|
|
63
63
|
description: summary.description,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lmzhen/dsh-evolution-skill-catalog",
|
|
3
3
|
"description": "Native ctx.skills provider for the evolution-managed skill tree (community build)",
|
|
4
|
-
"version": "0.1.0-rc.
|
|
4
|
+
"version": "0.1.0-rc.60",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -33,18 +33,18 @@
|
|
|
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.60"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
39
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
40
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
41
|
-
"@deepseek-ai/dsh-skill": "^0.1.
|
|
42
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
40
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
41
|
+
"@deepseek-ai/dsh-skill": "^0.1.1-rc.2",
|
|
42
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.60"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@deepseek-ai/dsh-invariants": "^0.1.
|
|
46
|
-
"@deepseek-ai/dsh-skill": "^0.1.
|
|
47
|
-
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.
|
|
48
|
-
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.
|
|
45
|
+
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
46
|
+
"@deepseek-ai/dsh-skill": "^0.1.1-rc.2",
|
|
47
|
+
"@lmzhen/dsh-evolution-core": "^0.1.0-rc.60",
|
|
48
|
+
"@lmzhen/dsh-evolution-io": "^0.1.0-rc.60"
|
|
49
49
|
}
|
|
50
50
|
}
|