@lmzhen/dsh-evolution-skill-catalog 0.3.66 → 0.3.67
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/package.json +5 -5
package/lib/index.js
CHANGED
|
@@ -74,15 +74,21 @@ function apply(ctx, rawConfig = {}) {
|
|
|
74
74
|
let control;
|
|
75
75
|
let summariesCache = null;
|
|
76
76
|
let summariesStamp = null;
|
|
77
|
+
let summariesEpoch = 0;
|
|
77
78
|
async function summaries() {
|
|
78
79
|
const stamp = await io.mtime?.(library.root) ?? null;
|
|
79
80
|
if (summariesCache !== null && (stamp === null || summariesStamp === stamp)) return summariesCache;
|
|
80
81
|
if (summariesCache !== null && stamp !== null) control?.invalidate();
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
const epochAtScanStart = summariesEpoch;
|
|
83
|
+
const scanned = await library.list();
|
|
84
|
+
if (epochAtScanStart === summariesEpoch) {
|
|
85
|
+
summariesCache = scanned;
|
|
86
|
+
summariesStamp = stamp;
|
|
87
|
+
}
|
|
88
|
+
return scanned;
|
|
84
89
|
}
|
|
85
90
|
const dropSummariesCache = () => {
|
|
91
|
+
summariesEpoch += 1;
|
|
86
92
|
summariesCache = null;
|
|
87
93
|
control?.invalidate();
|
|
88
94
|
};
|
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.3.
|
|
4
|
+
"version": "0.3.67",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
7
7
|
},
|
|
@@ -31,18 +31,18 @@
|
|
|
31
31
|
"license": "MIT",
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@deepseek-ai/schemastery": "^3.18.1",
|
|
34
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
34
|
+
"@lmzhen/dsh-evolution-core": "^0.3.67"
|
|
35
35
|
},
|
|
36
36
|
"peerDependencies": {
|
|
37
37
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
38
38
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
39
39
|
"@deepseek-ai/dsh-skill": "^0.1.1-rc.2",
|
|
40
|
-
"@lmzhen/dsh-evolution-io": "^0.3.
|
|
40
|
+
"@lmzhen/dsh-evolution-io": "^0.3.67"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@deepseek-ai/dsh-invariants": "^0.1.1-rc.2",
|
|
44
44
|
"@deepseek-ai/dsh-skill": "^0.1.1-rc.2",
|
|
45
|
-
"@lmzhen/dsh-evolution-core": "^0.3.
|
|
46
|
-
"@lmzhen/dsh-evolution-io": "^0.3.
|
|
45
|
+
"@lmzhen/dsh-evolution-core": "^0.3.67",
|
|
46
|
+
"@lmzhen/dsh-evolution-io": "^0.3.67"
|
|
47
47
|
}
|
|
48
48
|
}
|