phasegate 0.160.2 → 0.160.3

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/CHANGELOG.md CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.160.3] - 2026-05-14
11
+
12
+ ### Fixed
13
+
14
+ - **WI-187 — doctor no-op repair semantics** — stops `phasegate doctor` from advertising `migrate work-items --apply` as a mechanical repair for `_shared` ad-hoc plan drift, marks the finding manual with `repairHint: null`, and adds a regression flow proving the migration command would apply zero candidates and leave the doctor finding unresolved.
15
+
10
16
  ## [0.160.2] - 2026-05-14
11
17
 
12
18
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phasegate",
3
- "version": "0.160.2",
3
+ "version": "0.160.3",
4
4
  "packageManager": "pnpm@10.30.1",
5
5
  "description": "Phasegate — AI-agnostic quality defense toolkit. Enforces structural integrity between design intent and code.",
6
6
  "license": "MIT",
@@ -1,6 +1,7 @@
1
1
  // @unit installation
2
2
  // @layer application
3
3
  // @work-item-id WI-143
4
+ // @work-item-id WI-187
4
5
 
5
6
  import { join, relative, sep } from "node:path";
6
7
  import { DiagnosticFinding } from "../../domain/diagnostic-finding.js";
@@ -37,8 +38,8 @@ export class WiWorkflowDriftCheck implements HeuristicCheck {
37
38
  severity: "red",
38
39
  target: "docs/inception",
39
40
  message,
40
- repairMode: "mechanical",
41
- repairHint: "phasegate migrate work-items --apply",
41
+ repairMode: "manual",
42
+ repairHint: null,
42
43
  suggestedSkill: null,
43
44
  });
44
45
  }