phasegate 0.147.0 → 0.148.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.147.0",
3
+ "version": "0.148.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",
@@ -4,6 +4,7 @@
4
4
  *
5
5
  * RunL1ValidatorsUseCase — H08-07/H08-08: L1バリデータ実行
6
6
  * L1-017 ITテスト内部モック検出、L1-018 スタブコメント残存検出を実行する。
7
+ * @work-item-id WI-110
7
8
  */
8
9
  import { ValidatorId } from '../../domain/value-objects/validator-id.js';
9
10
  import { ValidationResult } from '../../domain/value-objects/validation-result.js';
@@ -3,7 +3,7 @@
3
3
  * @unit validator-system
4
4
  *
5
5
  * RunL2ValidatorsUseCase — H08-01: L2バリデータ実行
6
- * @work-item-id WI-140
6
+ * @work-item-id WI-110 / WI-111 / WI-140
7
7
  */
8
8
  import { readFile } from 'node:fs/promises';
9
9
  import { ValidatorId, InvalidValidatorIdError } from '../../domain/value-objects/validator-id.js';
@@ -3,6 +3,7 @@
3
3
  * @unit validator-system
4
4
  *
5
5
  * DI 組み立て — validator-system の全依存関係を構築する
6
+ * @work-item-id WI-110 / WI-111
6
7
  */
7
8
  import { ValidatorId } from './domain/value-objects/validator-id.js';
8
9
  import { ValidatorDefinition } from './domain/value-objects/validator-definition.js';
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer domain
3
3
  * @unit validator-system
4
+ * @work-item-id WI-111
4
5
  *
5
6
  * CliCommandRegistryPort — 登録済みCLIコマンド一覧取得ポート
6
7
  */
@@ -12,4 +13,4 @@ export interface CliCommandRegistryPort {
12
13
  getRegisteredCommands(): Promise<readonly string[]>;
13
14
  }
14
15
 
15
- // @story-id H08-07
16
+ // @story-id H08-07
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer domain
3
3
  * @unit validator-system
4
+ * @work-item-id WI-111
4
5
  *
5
6
  * E2eTestFileRegistryPort — E2Eテストファイル一覧取得ポート
6
7
  */
@@ -12,4 +13,4 @@ export interface E2eTestFileRegistryPort {
12
13
  getE2eTestFiles(): Promise<readonly string[]>;
13
14
  }
14
15
 
15
- // @story-id H08-07
16
+ // @story-id H08-07
@@ -1,5 +1,6 @@
1
1
  // @unit validator-system
2
2
  // @layer domain
3
+ // @work-item-id WI-111
3
4
 
4
5
  import { CliE2eTestCoverageReport, type CliCommandCoverageEntry } from '../value-objects/cli-e2e-test-coverage-report.js';
5
6
 
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer domain
3
3
  * @unit validator-system
4
+ * @work-item-id WI-111
4
5
  *
5
6
  * CliE2eTestCoverageReport 値オブジェクト
6
7
  * CLIコマンド一覧とE2Eテストカバレッジ状況を表す不変値オブジェクト
@@ -1,5 +1,6 @@
1
1
  // @unit validator-system
2
2
  // @layer infrastructure
3
+ // @work-item-id WI-111
3
4
 
4
5
  import type { CliCommandRegistryPort } from '../../domain/ports/cli-command-registry-port.js';
5
6
 
@@ -19,4 +20,4 @@ export class CliCommandRegistryAdapter implements CliCommandRegistryPort {
19
20
  }
20
21
  }
21
22
 
22
- // @story-id H08-07
23
+ // @story-id H08-07
@@ -1,6 +1,7 @@
1
1
  /**
2
2
  * @layer infrastructure
3
3
  * @unit validator-system
4
+ * @work-item-id WI-111
4
5
  *
5
6
  * E2eTestFileRegistryAdapter — E2eTestFileRegistryPort実装
6
7
  * E2Eテストファイルのパス一覧を提供する。