skillwiki 0.9.44 → 0.9.45
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.
|
@@ -3398,6 +3398,14 @@ async function runLint(input) {
|
|
|
3398
3398
|
}
|
|
3399
3399
|
const scan = scanResult.data;
|
|
3400
3400
|
const pageTextCache = /* @__PURE__ */ new Map();
|
|
3401
|
+
if (!input.fix) {
|
|
3402
|
+
await mapWithConcurrency(scan.allMarkdown, vaultIoConcurrency(), async (page) => {
|
|
3403
|
+
try {
|
|
3404
|
+
await readPageCached(page, pageTextCache);
|
|
3405
|
+
} catch {
|
|
3406
|
+
}
|
|
3407
|
+
});
|
|
3408
|
+
}
|
|
3401
3409
|
const links = await runLinks({ vault: input.vault, scan, pageTextCache });
|
|
3402
3410
|
if (links.result.ok && links.result.data.broken.length > 0) buckets.broken_wikilinks = links.result.data.broken;
|
|
3403
3411
|
if (!links.result.ok && links.result.error === "INVALID_FRONTMATTER") {
|
package/dist/cli.js
CHANGED
package/dist/skillwiki-mcp.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.45",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 18 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|