phasegate 0.31.0 → 0.32.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/README.ja.md +3 -3
- package/package.json +4 -4
package/README.ja.md
CHANGED
|
@@ -726,9 +726,9 @@ AIDLCを使わないプロジェクトでは、`phasegate.config.json` の `gate
|
|
|
726
726
|
|
|
727
727
|
```bash
|
|
728
728
|
# 3種のテンプレートを生成
|
|
729
|
-
npx phasegate ci:generate-template --type
|
|
729
|
+
npx phasegate ci:generate-template --type aidlc-gate
|
|
730
730
|
npx phasegate ci:generate-template --type pre-commit
|
|
731
|
-
npx phasegate ci:generate-template --type
|
|
731
|
+
npx phasegate ci:generate-template --type consistency-check
|
|
732
732
|
```
|
|
733
733
|
|
|
734
734
|
| テンプレート | 用途 | 配置先 |
|
|
@@ -741,7 +741,7 @@ npx phasegate ci:generate-template --type weekly-check
|
|
|
741
741
|
|
|
742
742
|
```bash
|
|
743
743
|
# aidlc-gate.yml を .github/workflows/ にコピー
|
|
744
|
-
npx phasegate ci:generate-template --type
|
|
744
|
+
npx phasegate ci:generate-template --type aidlc-gate --render > .github/workflows/aidlc-gate.yml
|
|
745
745
|
|
|
746
746
|
# pre-commit フックを設定
|
|
747
747
|
npx phasegate ci:generate-template --type pre-commit --render > .husky/pre-commit
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "phasegate",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.32.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": "Apache-2.0",
|
|
@@ -44,11 +44,11 @@
|
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"phasegate": "npx tsx scripts/harness/main.ts",
|
|
47
|
-
"phasegate:status": "npx tsx scripts/harness/main.ts
|
|
47
|
+
"phasegate:status": "npx tsx scripts/harness/main.ts phasegate:status",
|
|
48
48
|
"phasegate:enable": "npx tsx scripts/harness/main.ts enable-feature",
|
|
49
49
|
"phasegate:disable": "npx tsx scripts/harness/main.ts disable-feature",
|
|
50
|
-
"phasegate:check-phase": "npx tsx scripts/harness/main.ts
|
|
51
|
-
"phasegate:check-ready": "npx tsx scripts/harness/main.ts
|
|
50
|
+
"phasegate:check-phase": "npx tsx scripts/harness/main.ts phasegate:check-phase",
|
|
51
|
+
"phasegate:check-ready": "npx tsx scripts/harness/main.ts phasegate:check-ready",
|
|
52
52
|
"test": "vitest run --config scripts/harness/__tests__/vitest.config.forks.ts && vitest run --config scripts/harness/__tests__/vitest.config.ts"
|
|
53
53
|
},
|
|
54
54
|
"dependencies": {
|