qfai 0.9.2 → 1.0.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.md CHANGED
@@ -62,7 +62,7 @@ npx qfai report
62
62
  - `npx qfai doctor` による設定/探索/パス/glob/validate.json の事前診断
63
63
  - `npx qfai report` によるレポート出力
64
64
 
65
- 補足: v0.x は日本語テンプレ中心で提供します。将来は英語を正本、日本語を別ドキュメントに切り替える方針です。
65
+ 補足: v1.x は日本語テンプレ中心で提供します。将来は英語を正本、日本語を別ドキュメントに切り替える方針です。
66
66
 
67
67
  ## 使い方(CLI)
68
68
 
@@ -78,6 +78,7 @@ QFAI が提供するプロンプト資産は次の 2 つに分離します。
78
78
  - `.qfai/prompts.local/**`: 利用者カスタム資産(QFAI はここを上書きしない)
79
79
 
80
80
  同じ相対パスのファイルがある場合は `.qfai/prompts.local` を優先して参照する運用とします。
81
+
81
82
  `report.json` は非契約(experimental / internal)として扱います。外部 consumer は依存しないでください。フィールドは例であり固定ではありません。短い例:
82
83
 
83
84
  ```json
@@ -123,7 +124,7 @@ doctor の JSON も非契約(内部形式。将来予告なく変更あり)
123
124
 
124
125
  ## analyze(意味矛盾のレビュー補助)
125
126
 
126
- `validate` は deterministic な構造矛盾(参照/フォーマット/トレーサビリティ)を検査し、CI Hard Gate にできます。一方で、**意味矛盾(解釈/前提/用語/例外/受入条件の齟齬)**は deterministic に検出できないため、v0.9 では **手動プロンプト**として導線を提供します。
127
+ `validate` は deterministic な構造矛盾(参照/フォーマット/トレーサビリティ)を検査し、CI Hard Gate にできます。一方で、**意味矛盾(解釈/前提/用語/例外/受入条件の齟齬)**は deterministic に検出できないため、v1.0 では **手動プロンプト**として導線を提供します。
127
128
 
128
129
  重要:
129
130
 
@@ -301,4 +302,4 @@ pnpm test:assets
301
302
 
302
303
  ## ライセンス
303
304
 
304
- [MIT](https://github.com/aganesy/QFAI/blob/main/packages/qfai/LICENSE)
305
+ [MIT](./LICENSE)
@@ -1120,8 +1120,8 @@ var import_promises8 = require("fs/promises");
1120
1120
  var import_node_path9 = __toESM(require("path"), 1);
1121
1121
  var import_node_url2 = require("url");
1122
1122
  async function resolveToolVersion() {
1123
- if ("0.9.2".length > 0) {
1124
- return "0.9.2";
1123
+ if ("1.0.0".length > 0) {
1124
+ return "1.0.0";
1125
1125
  }
1126
1126
  try {
1127
1127
  const packagePath = resolvePackageJsonPath();
@@ -1101,8 +1101,8 @@ import { readFile as readFile5 } from "fs/promises";
1101
1101
  import path9 from "path";
1102
1102
  import { fileURLToPath as fileURLToPath2 } from "url";
1103
1103
  async function resolveToolVersion() {
1104
- if ("0.9.2".length > 0) {
1105
- return "0.9.2";
1104
+ if ("1.0.0".length > 0) {
1105
+ return "1.0.0";
1106
1106
  }
1107
1107
  try {
1108
1108
  const packagePath = resolvePackageJsonPath();
package/dist/index.cjs CHANGED
@@ -1233,8 +1233,8 @@ var import_promises7 = require("fs/promises");
1233
1233
  var import_node_path7 = __toESM(require("path"), 1);
1234
1234
  var import_node_url = require("url");
1235
1235
  async function resolveToolVersion() {
1236
- if ("0.9.2".length > 0) {
1237
- return "0.9.2";
1236
+ if ("1.0.0".length > 0) {
1237
+ return "1.0.0";
1238
1238
  }
1239
1239
  try {
1240
1240
  const packagePath = resolvePackageJsonPath();
package/dist/index.mjs CHANGED
@@ -1180,8 +1180,8 @@ import { readFile as readFile4 } from "fs/promises";
1180
1180
  import path7 from "path";
1181
1181
  import { fileURLToPath } from "url";
1182
1182
  async function resolveToolVersion() {
1183
- if ("0.9.2".length > 0) {
1184
- return "0.9.2";
1183
+ if ("1.0.0".length > 0) {
1184
+ return "1.0.0";
1185
1185
  }
1186
1186
  try {
1187
1187
  const packagePath = resolvePackageJsonPath();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qfai",
3
- "version": "0.9.2",
3
+ "version": "1.0.0",
4
4
  "description": "Quality-first AI-driven development toolkit (SDD × ATDD × TDD).",
5
5
  "license": "MIT",
6
6
  "repository": {