skillwiki 0.10.15 → 0.10.16
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/cli.js
CHANGED
|
@@ -6625,8 +6625,9 @@ async function runSnapshotMaintenanceDryRun(input) {
|
|
|
6625
6625
|
const home = input.home ?? env.HOME ?? "";
|
|
6626
6626
|
const audit = input.auditSink ?? defaultAuditSink(home);
|
|
6627
6627
|
const now = input.now ?? Date.now();
|
|
6628
|
+
const liveVaultPath = input.liveVaultPath ? canonicalize(input.liveVaultPath) : await resolveLiveVault({ env, home });
|
|
6628
6629
|
const fleetLoad = input.fleetLoad !== void 0 ? input.fleetLoad : await loadFleetManifestAndHost({
|
|
6629
|
-
vault:
|
|
6630
|
+
vault: liveVaultPath,
|
|
6630
6631
|
env,
|
|
6631
6632
|
home,
|
|
6632
6633
|
cwd: process.cwd(),
|
|
@@ -6656,7 +6657,6 @@ async function runSnapshotMaintenanceDryRun(input) {
|
|
|
6656
6657
|
audit(makeAuditEvent(input, fleetLoad.hostId, now, "refusal", "MAINTENANCE_MISSING_GIT_REPO"));
|
|
6657
6658
|
return { exitCode: ExitCode.PROTECTED_SNAPSHOTTER_WRITE_BLOCKED, result: refusalErr("MAINTENANCE_MISSING_GIT_REPO", `snapshot worktree is not a git repository: ${requested}`) };
|
|
6658
6659
|
}
|
|
6659
|
-
const liveVaultPath = input.liveVaultPath ? canonicalize(input.liveVaultPath) : await resolveLiveVault({ env, home });
|
|
6660
6660
|
if (liveVaultPath && requested === canonicalize(liveVaultPath)) {
|
|
6661
6661
|
audit(makeAuditEvent(input, fleetLoad.hostId, now, "refusal", "MAINTENANCE_LIVE_VAULT_TARGET"));
|
|
6662
6662
|
return { exitCode: ExitCode.PROTECTED_SNAPSHOTTER_WRITE_BLOCKED, result: refusalErr("MAINTENANCE_LIVE_VAULT_TARGET", "requested path is the live vault, not the snapshot worktree") };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.16",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 19 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|