pi-gauntlet 4.5.0 → 4.5.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/package.json +4 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## v4.5.1 - 2026-07-30
4
+
5
+ Fix the v4.5.0 package startup regression that exposed the new top-level
6
+ `extensions/phase-tracker.test.ts` file to Pi's directory-wide extension discovery.
7
+ `package.json#pi.extensions` now names only the three runtime factory files, and the
8
+ release validator enforces that exact entrypoint set so tests and helpers cannot be
9
+ loaded as extensions again.
10
+
3
11
  ## v4.5.0 - 2026-07-30
4
12
 
5
13
  Recover stalled automatic handoffs without weakening gauntlet gates (#3). The existing
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pi-gauntlet",
3
- "version": "4.5.0",
3
+ "version": "4.5.1",
4
4
  "description": "Opinionated, gated workflow skills, subagent personas, and runtime extensions for the pi coding agent.",
5
5
  "author": "Jacek Juraszek",
6
6
  "type": "module",
@@ -36,7 +36,9 @@
36
36
  "./skills"
37
37
  ],
38
38
  "extensions": [
39
- "./extensions"
39
+ "./extensions/phase-tracker.ts",
40
+ "./extensions/plan-tracker.ts",
41
+ "./extensions/verify-before-ship.ts"
40
42
  ],
41
43
  "image": "https://raw.githubusercontent.com/jjuraszek/pi-gauntlet/main/pi-gauntlet.png"
42
44
  },