spec-runner 1.0.8 → 1.0.9

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.md CHANGED
@@ -79,6 +79,14 @@ SPEC_RUNNER_FORCE=1 npx spec-runner
79
79
 
80
80
  ---
81
81
 
82
+ ## バージョン運用ルール
83
+
84
+ - このリポジトリでは、今後 **コミットごとに `package.json` の `version` を更新**する。
85
+ - バージョンは原則として SemVer に従い、迷う場合はパッチ(`x.y.Z`)を 1 つ上げる。
86
+ - 1コミット内で複数の変更をまとめた場合も、コミット単位で 1 回だけ更新する。
87
+
88
+ ---
89
+
82
90
  ## ライセンス
83
91
 
84
92
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "spec-runner",
3
- "version": "1.0.8",
3
+ "version": "1.0.9",
4
4
  "description": "フェーズ駆動で設計先行を強制。npx で .spec-runner を展開し、次のステップ .md に従って進める",
5
5
  "license": "MIT",
6
6
  "bin": {
@@ -119,7 +119,7 @@
119
119
  {
120
120
  "id": "clarify",
121
121
  "name_ja": "曖昧さ解消",
122
- "phase": 1,
122
+ "phase": null,
123
123
  "md_file": "曖昧さ解消.md",
124
124
  "commands": [
125
125
  { "id": "check", "command": ".spec-runner/scripts/check.sh" }
@@ -129,7 +129,7 @@
129
129
  {
130
130
  "id": "analyze",
131
131
  "name_ja": "分析",
132
- "phase": 1,
132
+ "phase": null,
133
133
  "md_file": "分析.md",
134
134
  "commands": [
135
135
  { "id": "check", "command": ".spec-runner/scripts/check.sh" }
@@ -1,12 +1,13 @@
1
1
  ---
2
2
  step_id: analyze
3
- phase: quality
3
+ phase: null
4
4
  readonly: true
5
+ note: 任意フェーズで実行可能(読み取り専用)
5
6
  ---
6
7
 
7
8
  # 分析(品質フロー)
8
9
 
9
- **やること**: **読み取り専用**で、UC 仕様・憲章の一貫性・矛盾・カバレッジを分析し、構造化レポートを出力する(ファイルは変更しない)。
10
+ **やること**: 任意フェーズで、**読み取り専用**で UC 仕様・憲章の一貫性・矛盾・カバレッジを分析し、構造化レポートを出力する(ファイルは変更しない)。
10
11
 
11
12
  | 項目 | 内容 |
12
13
  |------|------|
@@ -1,16 +1,16 @@
1
1
  ---
2
2
  step_id: clarify
3
- phase: 3
4
- note: UC 仕様の前後で曖昧さを解消
3
+ phase: null
4
+ note: 任意フェーズで曖昧さを解消
5
5
  ---
6
6
 
7
7
  # 曖昧さ解消(品質フロー)
8
8
 
9
- **やること**: Phase 3(UC 仕様)の曖昧さ・不足決定を検出し、**対話で 1 問ずつ**解消して仕様ファイルに反映する。
9
+ **やること**: 任意フェーズで UC 仕様の曖昧さ・不足決定を検出し、**対話で 1 問ずつ**解消して仕様ファイルに反映する。
10
10
 
11
11
  | 項目 | 内容 |
12
12
  |------|------|
13
- | **タイミング** | 「実装計画」の**前**に完了想定。ユーザーがスキップする場合は警告のうえ進めてよい |
13
+ | **タイミング** | 任意フェーズで実行可能。必要に応じて複数回実行してよい |
14
14
  | **仕様パス** | `FEATURE_SPEC` = `docs/02_ユースケース仕様/<カテゴリ>/UC-N-xxx.md` |
15
15
  | **判断ログ(任意)** | `FEATURE_DIR/判断記録/UC-N-MMDD-題名.md`。テンプレ: `.spec-runner/templates/UC-N-MMDD-判断記録テンプレ.md`。横断は `docs/04_アーキテクチャ/設計判断記録/` |
16
16