skillwiki 0.2.1-beta.14 → 0.2.1-beta.15
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 +1 -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
|
@@ -2913,7 +2913,7 @@ program.command("doctor").description("diagnose skillwiki setup issues").action(
|
|
|
2913
2913
|
currentVersion: pkg.version,
|
|
2914
2914
|
cwd: process.cwd()
|
|
2915
2915
|
})));
|
|
2916
|
-
program.command("archive <page> [vault]").description("archive a typed-knowledge page").option("--wiki <name>", "wiki profile name").action(async (page, vault, opts) => {
|
|
2916
|
+
program.command("archive <page> [vault]").description("archive a typed-knowledge or raw page").option("--wiki <name>", "wiki profile name").action(async (page, vault, opts) => {
|
|
2917
2917
|
const v = await resolveVaultArg(vault, opts.wiki);
|
|
2918
2918
|
if (!v.ok) emit({ exitCode: v.exitCode, result: v.payload });
|
|
2919
2919
|
else emit(await runArchive({ vault: v.vault, page }));
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.2.1-beta.
|
|
3
|
+
"version": "0.2.1-beta.15",
|
|
4
4
|
"skills": "./",
|
|
5
5
|
"description": "Project-aware Karpathy-style knowledge base for Claude Code: 15 prompt-only skills (wiki-*, proj-*, using-skillwiki) backed by the deterministic `skillwiki` CLI.",
|
|
6
6
|
"author": {
|