skillwiki 0.2.0-beta.14 → 0.2.0-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 +3 -3
- package/package.json +1 -1
- package/skills/.claude-plugin/plugin.json +1 -1
- package/skills/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -108,10 +108,10 @@ var TypedKnowledgeSchema = z.object({
|
|
|
108
108
|
});
|
|
109
109
|
var sha256Hex = z.string().regex(/^[0-9a-f]{64}$/);
|
|
110
110
|
var RawSourceSchema = z.object({
|
|
111
|
-
title: z.string().min(1),
|
|
112
|
-
source_url: z.string().
|
|
111
|
+
title: z.string().min(1).optional(),
|
|
112
|
+
source_url: z.string().nullable(),
|
|
113
113
|
ingested: isoDate,
|
|
114
|
-
ingested_by: z.enum(["wiki-ingest", "proj-work", "manual"]),
|
|
114
|
+
ingested_by: z.enum(["wiki-ingest", "proj-work", "manual"]).optional(),
|
|
115
115
|
sha256: sha256Hex,
|
|
116
116
|
project: wikilink.optional(),
|
|
117
117
|
work_item: wikilink.optional(),
|
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.15",
|
|
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": {
|