skillwiki 0.10.42 → 0.10.43
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-VBA5TBPS.js → chunk-G5M65BHV.js} +9 -3
- package/dist/cli.js +2 -2
- package/dist/{managed-write-preflight-DCUMILQT.js → managed-write-preflight-ZDBELXAM.js} +1 -1
- 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
|
@@ -434,9 +434,15 @@ var STASH_AUDIT_CLASSIFICATIONS = [
|
|
|
434
434
|
var STASH_AUDIT_FORMATS = ["wiki-sync", "vault-sync", "manual", "unknown"];
|
|
435
435
|
var STASH_RECENT_MINUTES = 120;
|
|
436
436
|
var MANAGED_WRITER_SPECS = [
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
["
|
|
437
|
+
// Real runner only: wiki-push.sh on Unix, wiki-push/wiki-push.exe as a
|
|
438
|
+
// Windows image name. Bare text mentions never match.
|
|
439
|
+
["wiki-push", /(?:^wiki-push(?:\.exe)?$)|(?:wiki-push\.sh(?:\s|$))/i],
|
|
440
|
+
// Write verbs only on Unix; Windows image name only (tasklist exposes
|
|
441
|
+
// no arguments). Read-only verbs and `rclone mount` (FUSE consumer)
|
|
442
|
+
// never match.
|
|
443
|
+
["rclone", /(?:^rclone(?:\.exe)?$)|(?:\brclone(?:\.exe)?\s+(?:copy|sync|move|delete|purge|deletefile|copyto|moveto|dedupe|mkdir|rmdir|rmdirs|touch|settier|bisync|copyurl)(?:\s|$))/i],
|
|
444
|
+
// Writing helper scripts on Unix; Windows image name only.
|
|
445
|
+
["vault-sync", /(?:^vault-sync(?:\.exe)?$)|(?:wiki-(?:snapshot|pull-with-auto-resolve|git-repair-v3)\.sh(?:\s|$))/i]
|
|
440
446
|
];
|
|
441
447
|
var MANAGED_WRITER_KINDS = MANAGED_WRITER_SPECS.map(([kind]) => kind);
|
|
442
448
|
function classifyStash(ageMinutes, sessionId, currentSession) {
|
package/dist/cli.js
CHANGED
|
@@ -64,7 +64,7 @@ import {
|
|
|
64
64
|
runSyncStatus,
|
|
65
65
|
runSyncUnlock,
|
|
66
66
|
stageVaultContentChanges
|
|
67
|
-
} from "./chunk-
|
|
67
|
+
} from "./chunk-G5M65BHV.js";
|
|
68
68
|
import {
|
|
69
69
|
FLEET_REL_PATH,
|
|
70
70
|
acquireOwnedSyncLock,
|
|
@@ -9542,7 +9542,7 @@ async function emitManagedVaultWrite(vault, command, mutate, opts) {
|
|
|
9542
9542
|
if (dirty) {
|
|
9543
9543
|
return emit(dirty, void 0, { postCommit: false });
|
|
9544
9544
|
}
|
|
9545
|
-
const { runManagedWriteTransaction: runManagedWriteTransaction2 } = await import("./managed-write-preflight-
|
|
9545
|
+
const { runManagedWriteTransaction: runManagedWriteTransaction2 } = await import("./managed-write-preflight-ZDBELXAM.js");
|
|
9546
9546
|
const run = await runManagedWriteTransaction2({
|
|
9547
9547
|
vault,
|
|
9548
9548
|
command,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.43",
|
|
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": {
|