phasegate 0.148.0 → 0.149.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "phasegate",
3
- "version": "0.148.0",
3
+ "version": "0.149.0",
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,6 @@
1
1
  // @layer domain
2
2
  // @unit harness-api
3
- // @work-item-id WI-108
3
+ // @work-item-id WI-108 / WI-114
4
4
  // command-dispatch-service.ts — CommandDispatchService Domain Service
5
5
 
6
6
  import { CommandRegistry } from './command-registry.js';
@@ -1,5 +1,6 @@
1
1
  // @layer domain
2
2
  // @unit harness-api
3
+ // @work-item-id WI-112
3
4
  // status-derivation-service.ts — StatusDerivationService Domain Service
4
5
 
5
6
  import { LayerHealth, type LayerId } from '../value-objects/layer-health.js';
@@ -1,5 +1,6 @@
1
1
  // @layer domain
2
2
  // @unit harness-api
3
+ // @work-item-id WI-114
3
4
  // drift-report-summary.ts — DriftReportSummary Value Object
4
5
 
5
6
  export interface DriftItem {
@@ -1,5 +1,6 @@
1
1
  // @layer domain
2
2
  // @unit harness-api
3
+ // @work-item-id WI-112
3
4
  // layer-health.ts — LayerHealth Value Object
4
5
 
5
6
  export type LayerId = 'L1' | 'L2' | 'L3' | 'L4';
@@ -1,7 +1,7 @@
1
1
  /**
2
2
  * @unit harness-api
3
3
  * @layer presentation
4
- * @work-item-id WI-142
4
+ * @work-item-id WI-113 / WI-142
5
5
  *
6
6
  * Phasegate CLI エントリポイント。
7
7
  * 各Unitの Composition Root からハンドラーを取得し、コマンドに応じてディスパッチする。
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer infrastructure
3
3
  * @unit phase-dependency-model
4
+ * @work-item-id WI-115
4
5
  */
5
6
 
6
7
  import type { Dirent } from "node:fs";
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer domain
3
3
  * @unit validator-system
4
+ * @work-item-id WI-116
4
5
  *
5
6
  * ValidatorId 値オブジェクト
6
7
  * L1-001〜L4-005 のバリデータを識別する不変値オブジェクト
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer presentation
3
3
  * @unit validator-system
4
+ * @work-item-id WI-113
4
5
  *
5
6
  * RunValidatorsHandler — バリデータ実行 CLIハンドラー
6
7
  */