@papi-ai/skills 0.1.3 → 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 CHANGED
@@ -39,12 +39,19 @@ 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()) {
45
50
  walk(root, abs, out);
46
51
  } else if (entry.isFile()) {
47
- out.push(abs.slice(root.length + 1));
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, '/'));
48
55
  }
49
56
  }
50
57
  }
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.1.3",
4
- "generatedAt": "2026-08-20T01:24:25.346Z",
3
+ "packageVersion": "0.1.5",
4
+ "generatedAt": "2026-08-25T19:18:26.689Z",
5
5
  "skills": [
6
6
  {
7
7
  "name": "check-mcp",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papi-ai/skills",
3
- "version": "0.1.3",
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",
@@ -0,0 +1,4 @@
1
+ {
2
+ "status": "failed",
3
+ "failedTests": []
4
+ }