@papi-ai/skills 0.1.4 → 0.1.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/lib/manifest.mjs +3 -1
- package/manifest.json +2 -2
- package/package.json +1 -1
package/lib/manifest.mjs
CHANGED
|
@@ -49,7 +49,9 @@ function walk(root, dir, out) {
|
|
|
49
49
|
if (entry.isDirectory()) {
|
|
50
50
|
walk(root, abs, out);
|
|
51
51
|
} else if (entry.isFile()) {
|
|
52
|
-
|
|
52
|
+
// Manifest checksums are portable identities, so never hash the host's
|
|
53
|
+
// path separator (Windows `\\` versus POSIX `/`).
|
|
54
|
+
out.push(abs.slice(root.length + 1).replace(/\\/g, '/'));
|
|
53
55
|
}
|
|
54
56
|
}
|
|
55
57
|
}
|
package/manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@papi-ai/skills",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "PAPI's shareable Claude Code skill bundle — single source of truth, installed (not copied) into projects with pinned versioning",
|
|
5
5
|
"license": "Elastic-2.0",
|
|
6
6
|
"type": "module",
|