qfai 0.2.8 → 0.2.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.
@@ -31,7 +31,7 @@ npx qfai report --json-path .qfai/out/validate.json --out .qfai/out/report.md
31
31
 
32
32
  ## Prompts の使い方(重要)
33
33
 
34
- `prompts/` は **人間が手動で使う資産**です。v0.2.6 では自動読取を行いません。
34
+ `prompts/` は **人間が手動で使う資産**です。現時点では自動読取は行いません(将来のバージョンで CLI 連携を検討します)。
35
35
 
36
36
  例:
37
37
 
@@ -1,6 +1,6 @@
1
1
  # OpenAPI contract sample (API-0001)
2
2
  # - 必須: openapi, info, paths
3
- # - 参照: BR/SC ID x-qfai-refs に記載
3
+ # - 重要: operationId API-0001 のような ID を含める(validate が参照整合に利用)
4
4
  openapi: 3.0.0
5
5
  info:
6
6
  title: QFAI Sample API
@@ -9,9 +9,6 @@ paths:
9
9
  /health:
10
10
  get:
11
11
  operationId: API-0001
12
- x-qfai-refs:
13
- - BR-0001
14
- - SC-0001
15
12
  responses:
16
13
  "200":
17
14
  description: OK
@@ -1,6 +1,6 @@
1
1
  # Prompts (手動利用)
2
2
 
3
- このディレクトリのプロンプトは **手動で使う資産**です。v0.2.6 では自動読取を行いません。
3
+ このディレクトリのプロンプトは **手動で使う資産**です。現時点では自動読取は行いません(将来のバージョンで CLI 連携を検討します)。
4
4
 
5
5
  ## 目的
6
6
 
@@ -4,6 +4,6 @@
4
4
 
5
5
  - Status: Proposed
6
6
  - Context: 承認者を増やすと運用が複雑になる
7
- - Decision: v0.2.6 では1段階の承認に固定する
7
+ - Decision: 現時点では1段階の承認に固定する
8
8
  - Consequences: 多段承認が必要な場合は拡張が必要
9
9
  - Related: BR-0001, SPEC-0001
@@ -15,7 +15,7 @@ ADR は「なぜその判断をしたか」を記録するための軽量な意
15
15
 
16
16
  - Status: Proposed
17
17
  - Context: 承認者を増やすと運用が複雑になる
18
- - Decision: v0.2.6 では1段階の承認に固定する
18
+ - Decision: 現時点では1段階の承認に固定する
19
19
  - Consequences: 多段承認が必要な場合は拡張が必要
20
20
  - Related: BR-0001, SPEC-0001
21
21
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qfai",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "qfai": "./dist/cli/index.mjs"