skillwiki 0.10.59 → 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.
@@ -5512,6 +5512,7 @@ var VAULT_HYGIENE_GITIGNORE_PATTERNS = [
5512
5512
  ".snapshots/",
5513
5513
  ".superpowers/",
5514
5514
  ".antigravitycli/",
5515
+ ".drafts/",
5515
5516
  ".obsidian/plugins/*/main.js",
5516
5517
  ".claude/dev-loop/"
5517
5518
  ];
@@ -5533,6 +5534,7 @@ var VAULT_SYNC_FILTER_REQUIRED_EXCLUDES = [
5533
5534
  ".snapshots/",
5534
5535
  ".superpowers/",
5535
5536
  ".antigravitycli/",
5537
+ ".drafts/",
5536
5538
  ".obsidian/plugins/*/main.js",
5537
5539
  ".claude/dev-loop/"
5538
5540
  ];
@@ -5546,12 +5548,13 @@ function mergeGitignore(existing, required = VAULT_HYGIENE_GITIGNORE_PATTERNS) {
5546
5548
  }
5547
5549
  const base = existing.length === 0 || existing.endsWith("\n") ? existing : `${existing}
5548
5550
  `;
5549
- const block = [
5550
- "# SkillWiki local scratch (not GitHub SSOT; keep session-brief and agent-memory-trends)",
5551
- ...added,
5552
- ""
5553
- ].join("\n");
5554
- return { text: `${base}${block}`, changed: true, added };
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 };
5555
5558
  }
5556
5559
  function renderVaultGitignoreTemplate() {
5557
5560
  return [
@@ -39,7 +39,7 @@ import {
39
39
  snapshotterAliasForLocalHost,
40
40
  toUndirectedWeighted,
41
41
  writeDotenv
42
- } from "./chunk-X7LZ27HX.js";
42
+ } from "./chunk-CUSHQB5N.js";
43
43
  import {
44
44
  atomicWriteText,
45
45
  prepareTypedPage
package/dist/cli.js CHANGED
@@ -50,7 +50,7 @@ import {
50
50
  snapshotterHealthChecks,
51
51
  upsertIndexEntry,
52
52
  vectorIndexStatus
53
- } from "./chunk-CG64DPM2.js";
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-X7LZ27HX.js";
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-5K5FGY4X.js");
10173
+ const { runManagedWriteTransaction: runManagedWriteTransaction2 } = await import("./managed-write-preflight-Z6MEAGQI.js");
10174
10174
  const run = await runManagedWriteTransaction2({
10175
10175
  vault,
10176
10176
  command,
@@ -6,7 +6,7 @@ import {
6
6
  runManagedWritePeerGate,
7
7
  runManagedWritePreflight,
8
8
  runManagedWriteTransaction
9
- } from "./chunk-X7LZ27HX.js";
9
+ } from "./chunk-CUSHQB5N.js";
10
10
  import "./chunk-NG72ZD4C.js";
11
11
  import "./chunk-6AMXNODT.js";
12
12
  import "./chunk-MHGUYPGE.js";
@@ -1,10 +1,10 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  runSkillwikiMcpStdio
4
- } from "./chunk-CG64DPM2.js";
4
+ } from "./chunk-NTM3WRAV.js";
5
5
  import "./chunk-7I2TPIV5.js";
6
6
  import "./chunk-NHRRYAXT.js";
7
- import "./chunk-X7LZ27HX.js";
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.59",
3
+ "version": "0.10.60",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "skillwiki": "dist/cli.js",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwiki",
3
- "version": "0.10.59",
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": {
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skillwiki",
3
- "version": "0.10.59",
3
+ "version": "0.10.60",
4
4
  "description": "Project-aware Karpathy-style knowledge base for Codex with 20 prompt-only skills backed by the deterministic skillwiki CLI.",
5
5
  "author": {
6
6
  "name": "karlorz",
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skillwiki/skills",
3
- "version": "0.10.59",
3
+ "version": "0.10.60",
4
4
  "private": true,
5
5
  "files": [
6
6
  "wiki-*",