skillwiki 0.10.58 → 0.10.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/dist/{chunk-LXZPRAZU.js → chunk-CUSHQB5N.js} +25 -8
- package/dist/{chunk-Y2EPEJT7.js → chunk-NTM3WRAV.js} +1 -1
- package/dist/cli.js +3 -3
- package/dist/{managed-write-preflight-DOOM7XIV.js → managed-write-preflight-Z6MEAGQI.js} +1 -1
- package/dist/skillwiki-mcp.js +2 -2
- package/dist/vault-sync/scripts/wiki-push.sh +0 -2
- package/package.json +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/.codex-plugin/plugin.json +1 -1
- package/skills/package.json +1 -1
|
@@ -5506,7 +5506,15 @@ var VAULT_HYGIENE_GITIGNORE_PATTERNS = [
|
|
|
5506
5506
|
".skillwiki/memory/",
|
|
5507
5507
|
".skillwiki/memory-topics.json",
|
|
5508
5508
|
".skillwiki/work-complete/",
|
|
5509
|
-
".skillwiki/vectors/"
|
|
5509
|
+
".skillwiki/vectors/",
|
|
5510
|
+
".playwright-cli/",
|
|
5511
|
+
".pytest_cache/",
|
|
5512
|
+
".snapshots/",
|
|
5513
|
+
".superpowers/",
|
|
5514
|
+
".antigravitycli/",
|
|
5515
|
+
".drafts/",
|
|
5516
|
+
".obsidian/plugins/*/main.js",
|
|
5517
|
+
".claude/dev-loop/"
|
|
5510
5518
|
];
|
|
5511
5519
|
var VAULT_HYGIENE_GENERATED_COMMIT_PATHS = VAULT_HYGIENE_GITIGNORE_PATTERNS.map(
|
|
5512
5520
|
(pattern) => pattern.replace(/\/$/, "")
|
|
@@ -5520,7 +5528,15 @@ var VAULT_SYNC_FILTER_REQUIRED_EXCLUDES = [
|
|
|
5520
5528
|
".skillwiki/memory-topics.json",
|
|
5521
5529
|
".skillwiki/work-complete/",
|
|
5522
5530
|
".skillwiki/last-op.json",
|
|
5523
|
-
".claude/settings.local.json"
|
|
5531
|
+
".claude/settings.local.json",
|
|
5532
|
+
".playwright-cli/",
|
|
5533
|
+
".pytest_cache/",
|
|
5534
|
+
".snapshots/",
|
|
5535
|
+
".superpowers/",
|
|
5536
|
+
".antigravitycli/",
|
|
5537
|
+
".drafts/",
|
|
5538
|
+
".obsidian/plugins/*/main.js",
|
|
5539
|
+
".claude/dev-loop/"
|
|
5524
5540
|
];
|
|
5525
5541
|
function missingIgnorePatterns(content, patterns) {
|
|
5526
5542
|
return patterns.filter((pattern) => !content.includes(pattern));
|
|
@@ -5532,12 +5548,13 @@ function mergeGitignore(existing, required = VAULT_HYGIENE_GITIGNORE_PATTERNS) {
|
|
|
5532
5548
|
}
|
|
5533
5549
|
const base = existing.length === 0 || existing.endsWith("\n") ? existing : `${existing}
|
|
5534
5550
|
`;
|
|
5535
|
-
const
|
|
5536
|
-
|
|
5537
|
-
|
|
5538
|
-
|
|
5539
|
-
|
|
5540
|
-
|
|
5551
|
+
const comment = "# SkillWiki local scratch (not GitHub SSOT; keep session-brief and agent-memory-trends)";
|
|
5552
|
+
const lines = [];
|
|
5553
|
+
if (!existing.includes(comment)) {
|
|
5554
|
+
lines.push(comment);
|
|
5555
|
+
}
|
|
5556
|
+
lines.push(...added, "");
|
|
5557
|
+
return { text: `${base}${lines.join("\n")}`, changed: true, added };
|
|
5541
5558
|
}
|
|
5542
5559
|
function renderVaultGitignoreTemplate() {
|
|
5543
5560
|
return [
|
package/dist/cli.js
CHANGED
|
@@ -50,7 +50,7 @@ import {
|
|
|
50
50
|
snapshotterHealthChecks,
|
|
51
51
|
upsertIndexEntry,
|
|
52
52
|
vectorIndexStatus
|
|
53
|
-
} from "./chunk-
|
|
53
|
+
} from "./chunk-NTM3WRAV.js";
|
|
54
54
|
import {
|
|
55
55
|
normalizeDistTag,
|
|
56
56
|
readCache,
|
|
@@ -151,7 +151,7 @@ import {
|
|
|
151
151
|
supersedeStaleReviewRequiredJournals,
|
|
152
152
|
taxonomyCommentForPage,
|
|
153
153
|
writeDotenv
|
|
154
|
-
} from "./chunk-
|
|
154
|
+
} from "./chunk-CUSHQB5N.js";
|
|
155
155
|
import {
|
|
156
156
|
assertTargetInsideVault,
|
|
157
157
|
atomicWriteText,
|
|
@@ -10170,7 +10170,7 @@ async function emitManagedVaultWrite(vault, command, mutate, opts) {
|
|
|
10170
10170
|
if (dirty) {
|
|
10171
10171
|
return emit(dirty, void 0, { postCommit: false });
|
|
10172
10172
|
}
|
|
10173
|
-
const { runManagedWriteTransaction: runManagedWriteTransaction2 } = await import("./managed-write-preflight-
|
|
10173
|
+
const { runManagedWriteTransaction: runManagedWriteTransaction2 } = await import("./managed-write-preflight-Z6MEAGQI.js");
|
|
10174
10174
|
const run = await runManagedWriteTransaction2({
|
|
10175
10175
|
vault,
|
|
10176
10176
|
command,
|
package/dist/skillwiki-mcp.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
import {
|
|
3
3
|
runSkillwikiMcpStdio
|
|
4
|
-
} from "./chunk-
|
|
4
|
+
} from "./chunk-NTM3WRAV.js";
|
|
5
5
|
import "./chunk-7I2TPIV5.js";
|
|
6
6
|
import "./chunk-NHRRYAXT.js";
|
|
7
|
-
import "./chunk-
|
|
7
|
+
import "./chunk-CUSHQB5N.js";
|
|
8
8
|
import "./chunk-NG72ZD4C.js";
|
|
9
9
|
import "./chunk-JMV7YBQN.js";
|
|
10
10
|
import "./chunk-6AMXNODT.js";
|
|
@@ -407,8 +407,6 @@ conflict_marker_guard
|
|
|
407
407
|
# Inherited debt is logged. Malformed/missing delta evidence fails closed.
|
|
408
408
|
if command -v skillwiki >/dev/null 2>&1; then
|
|
409
409
|
DELTA_OUT=$(skillwiki sync lint-delta "$WIKI_DIR" --base-ref origin/main 2>&1) || true
|
|
410
|
-
printf '%s
|
|
411
|
-
' "$DELTA_OUT" >>"$LOG_FILE"
|
|
412
410
|
eval "$(printf '%s\n' "$DELTA_OUT" | python3 -c '
|
|
413
411
|
import json,sys
|
|
414
412
|
try:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.60",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 20 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|