skillwiki 0.2.0-beta.34 → 0.2.0-beta.35
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 +7 -1
- package/package.json +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -1171,8 +1171,10 @@ var VAULT_DIRS = [
|
|
|
1171
1171
|
"comparisons",
|
|
1172
1172
|
"queries",
|
|
1173
1173
|
"meta",
|
|
1174
|
-
"projects"
|
|
1174
|
+
"projects",
|
|
1175
|
+
".obsidian"
|
|
1175
1176
|
];
|
|
1177
|
+
var ATTACHMENT_FOLDER = "raw/assets";
|
|
1176
1178
|
function extractDomainFromSchema(text) {
|
|
1177
1179
|
const m = text.match(/^##\s+Domain\s*\n([\s\S]*?)(?=\n\n|\n##|\s*$)/m);
|
|
1178
1180
|
if (!m) return "";
|
|
@@ -1302,6 +1304,10 @@ async function runInit(input) {
|
|
|
1302
1304
|
return tpl.replace("{{INIT_DATE}}", today);
|
|
1303
1305
|
});
|
|
1304
1306
|
if (err1) return err1;
|
|
1307
|
+
const errObsidian = await writeOrPreserve(".obsidian/app.json", async () => {
|
|
1308
|
+
return JSON.stringify({ attachmentFolderPath: ATTACHMENT_FOLDER }, null, 2) + "\n";
|
|
1309
|
+
});
|
|
1310
|
+
if (errObsidian) return errObsidian;
|
|
1305
1311
|
const err22 = await writeOrPreserve("log.md", async () => {
|
|
1306
1312
|
const tpl = await readFile6(join7(input.templates, "log.md"), "utf8");
|
|
1307
1313
|
return tpl.replace(/\{\{INIT_DATE\}\}/g, today).replace("{{DOMAIN}}", domain).replace("{{WIKI_LANG}}", canonicalLang);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.2.0-beta.
|
|
3
|
+
"version": "0.2.0-beta.35",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 11 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI (8 subcommands, JSON-by-default).",
|
|
6
6
|
"author": {
|