skillwiki 0.9.4 → 0.9.5
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
|
@@ -10188,7 +10188,8 @@ async function postCommit(vault, exitCode) {
|
|
|
10188
10188
|
if (exitCode !== 0) return;
|
|
10189
10189
|
const home = process.env.HOME ?? "";
|
|
10190
10190
|
const dotenv = await parseDotenvFile(configPath(home));
|
|
10191
|
-
|
|
10191
|
+
const autoCommit = process.env.AUTO_COMMIT ?? dotenv["AUTO_COMMIT"];
|
|
10192
|
+
if (autoCommit === "false") return;
|
|
10192
10193
|
if (!existsSync20(join47(vault, ".git"))) return;
|
|
10193
10194
|
const lastOps = readLastOp(vault);
|
|
10194
10195
|
if (lastOps.length === 0) return;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.5",
|
|
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": {
|