skillwiki 0.10.32 → 0.10.33
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.
|
@@ -251,7 +251,17 @@ platform_launchd_plist_validate() {
|
|
|
251
251
|
function process(line) {
|
|
252
252
|
line = trim(line)
|
|
253
253
|
if (line == "") return
|
|
254
|
-
|
|
254
|
+
# Comments are ignorable XML; skip content until the closing -->.
|
|
255
|
+
# The shipped templates carry a multi-line comment, so a single-line
|
|
256
|
+
# /^<!--.*-->$/ match is not enough.
|
|
257
|
+
if (in_comment) {
|
|
258
|
+
if (line ~ /-->$/) in_comment = 0
|
|
259
|
+
return
|
|
260
|
+
}
|
|
261
|
+
if (line ~ /^<!--/) {
|
|
262
|
+
if (line !~ /-->$/) in_comment = 1
|
|
263
|
+
return
|
|
264
|
+
}
|
|
255
265
|
if (line ~ /^<\?xml[[:space:]][^>]*\?>$/) {
|
|
256
266
|
if (plist_seen || xml_declaration_seen) invalid()
|
|
257
267
|
xml_declaration_seen = 1
|
|
@@ -359,7 +369,7 @@ platform_launchd_plist_validate() {
|
|
|
359
369
|
if (program_wait_array) program_kind = "not-array"
|
|
360
370
|
if (program_wait_first) program_kind = "missing"
|
|
361
371
|
document_kind = (plist_seen && plist_closed && root_dict_seen && root_dict_closed &&
|
|
362
|
-
dict_depth == 0 && container_depth == 0 && !invalid_token ? "valid" : "invalid")
|
|
372
|
+
dict_depth == 0 && container_depth == 0 && !invalid_token && !in_comment ? "valid" : "invalid")
|
|
363
373
|
printf "DOCUMENT_KIND=%s\n", document_kind
|
|
364
374
|
printf "LABEL_KIND=%s\n", label_kind
|
|
365
375
|
printf "LABEL_VALUE=%s\n", label_value
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "skillwiki",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.33",
|
|
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": {
|