@papi-ai/skills 0.1.4 → 0.1.6

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
@@ -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
- 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, '/'));
53
55
  }
54
56
  }
55
57
  }
package/manifest.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "packageVersion": "0.1.4",
4
- "generatedAt": "2026-08-21T22:03:31.002Z",
3
+ "packageVersion": "0.1.6",
4
+ "generatedAt": "2026-09-03T16:31:35.941Z",
5
5
  "skills": [
6
6
  {
7
7
  "name": "check-mcp",
@@ -36,7 +36,7 @@
36
36
  {
37
37
  "name": "papi-plan",
38
38
  "kind": "lazy",
39
- "checksum": "6b9a42f263fa409e"
39
+ "checksum": "1a5789e13ae68d31"
40
40
  },
41
41
  {
42
42
  "name": "papi-strategy",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@papi-ai/skills",
3
- "version": "0.1.4",
3
+ "version": "0.1.6",
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",
@@ -70,6 +70,14 @@ idea → (picked up by next plan)
70
70
  - **idea** — Captures a new task idea and writes it to the backlog.
71
71
  Next: The next `plan` run will prioritise and schedule it.
72
72
 
73
+ **First contact — a work-dump is an `idea` batch, not a coding session.** When the
74
+ user hands you a list of work on an empty or near-empty board — an audit's
75
+ findings, a bug list, "build all of these", a pasted backlog — do NOT start
76
+ writing code. There is no task, no BUILD HANDOFF and no cycle for it yet. File
77
+ each item with `idea`, then run `plan` to scope a cycle. The user should never
78
+ need to know these verbs — route the request through the pipeline for them and
79
+ say what you did.
80
+
73
81
  ### Project Bootstrap
74
82
 
75
83
  ```
@@ -1,4 +0,0 @@
1
- {
2
- "status": "failed",
3
- "failedTests": []
4
- }