@papi-ai/skills 0.1.2 → 0.1.4
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
CHANGED
|
@@ -39,6 +39,11 @@ function walk(root, dir, out) {
|
|
|
39
39
|
// Never let machine-local cruft influence the checksum.
|
|
40
40
|
if (entry.name === 'node_modules' || entry.name === '.git') continue;
|
|
41
41
|
if (entry.name.startsWith('.temp-execution-')) continue;
|
|
42
|
+
// task-3035 follow-up (C364): Playwright writes test-results/ into whatever
|
|
43
|
+
// directory it runs from, so a user who simply USES the playwright skill would
|
|
44
|
+
// have their own copy flagged as a stale fork. Run artefacts are machine-local
|
|
45
|
+
// cruft in exactly the sense this walk already excludes.
|
|
46
|
+
if (entry.name === 'test-results' || entry.name === 'playwright-report') continue;
|
|
42
47
|
if (entry.name === 'package-lock.json') continue;
|
|
43
48
|
const abs = join(dir, entry.name);
|
|
44
49
|
if (entry.isDirectory()) {
|
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.4",
|
|
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",
|