infinity-harness 2.8.11 → 2.8.12

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 +2 -3
package/CHANGELOG.md CHANGED
@@ -4,6 +4,14 @@ All notable changes to this project are documented here.
4
4
  Format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/); versions follow
5
5
  [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [2.8.12] — 2026-08-31
8
+
9
+ Hotfix for 2.8.11 — pi loaded the extension twice and refused to start.
10
+
11
+ ### Fixed
12
+
13
+ - **pi refused to start — `Tool \u201cinfinity_plan\u201d conflicts` on every launch.** `2.8.11` listed both `./dist/extensions` and `./extensions` in `pi.extensions` so pi loaded `extensions/infinity-harness/index.ts` *and* `dist/extensions/infinity-harness/index.js` and saw duplicate tool registrations. Reverted to a single entry `dist/extensions`; the published package always has `dist/` (built by `prepare`), so a fresh `pi install npm:infinity-harness` no longer double-registers. Dev checkouts without a build should run `npm run build` once.
14
+
7
15
  ## [2.8.11] — 2026-08-31
8
16
 
9
17
  Node 26 fix — daemon ran as raw .ts under node_modules and crashed; widget never updated.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "infinity-harness",
3
- "version": "2.8.11",
3
+ "version": "2.8.12",
4
4
  "description": "A pi agent extension that runs a gated build pipeline unattended \u2014 enforces phases, validates with deterministic gates, and keeps working for hours or days without losing the plan.",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,8 +19,7 @@
19
19
  },
20
20
  "pi": {
21
21
  "extensions": [
22
- "./dist/extensions",
23
- "./extensions"
22
+ "./dist/extensions"
24
23
  ],
25
24
  "skills": [
26
25
  "./harness/skills"