qfai 1.1.0 → 1.1.1
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/assets/init/.qfai/README.md +0 -1
- package/assets/init/.qfai/assistant/prompts/qfai-configure.md +2 -0
- package/assets/init/.qfai/assistant/steering/README.md +1 -1
- package/assets/init/.qfai/assistant/steering/manifest.md +8 -6
- package/assets/init/.qfai/specs/README.md +2 -0
- package/dist/cli/index.cjs +2 -2
- package/dist/cli/index.mjs +2 -2
- package/dist/index.cjs +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
|
@@ -156,6 +156,7 @@ Fill steering templates with repo evidence.
|
|
|
156
156
|
- Keep existing content when already accurate.
|
|
157
157
|
- When evidence is missing, write `TBD` and record what is missing.
|
|
158
158
|
- Do not invent facts.
|
|
159
|
+
- For `steering/manifest.md`, explicitly record **Evidence** and **Assumptions** (if evidence is missing).
|
|
159
160
|
|
|
160
161
|
## Step 4 - Update `qfai.config.yaml` (minimal diff)
|
|
161
162
|
|
|
@@ -178,6 +179,7 @@ Sample 5-15 actual test files that match the proposed globs.
|
|
|
178
179
|
|
|
179
180
|
- [ ] Repository analysis completed (frameworks, test layout, naming rules).
|
|
180
181
|
- [ ] Steering files updated with evidence or `TBD`.
|
|
182
|
+
- [ ] Manifest includes evidence and assumptions (or `TBD`).
|
|
181
183
|
- [ ] Proposed include/exclude globs with rationale.
|
|
182
184
|
- [ ] `qfai.config.yaml` updated (minimal diff).
|
|
183
185
|
- [ ] Optional: specSections tuned when requested (or kept empty).
|
|
@@ -7,7 +7,7 @@ These are intentionally short and practical:
|
|
|
7
7
|
- `product.md` : what we are building and why
|
|
8
8
|
- `tech.md` : stack, versions, constraints
|
|
9
9
|
- `structure.md` : repo structure, key directories, how to run gates
|
|
10
|
-
- `manifest.md` : product-level decision spine and governance rubric
|
|
10
|
+
- `manifest.md` : product-level decision spine and governance rubric (Product/Mission, Axioms, Compatibility vs Change, Governance)
|
|
11
11
|
|
|
12
12
|
QFAI prompts are expected to read these before producing deliverables.
|
|
13
13
|
|
|
@@ -6,23 +6,24 @@
|
|
|
6
6
|
- Value:
|
|
7
7
|
- Evidence:
|
|
8
8
|
|
|
9
|
-
##
|
|
9
|
+
## Axioms (Non-negotiable)
|
|
10
10
|
|
|
11
|
-
- Axioms / principles:
|
|
11
|
+
- Axioms / principles (non-negotiable):
|
|
12
12
|
- Decision lens (what we optimize for):
|
|
13
13
|
- Evidence:
|
|
14
14
|
|
|
15
|
-
## Compatibility vs Change
|
|
15
|
+
## Compatibility vs Change Rubric
|
|
16
16
|
|
|
17
|
-
- Compatibility:
|
|
18
|
-
- Change:
|
|
17
|
+
- Criteria (Compatibility):
|
|
18
|
+
- Criteria (Change):
|
|
19
19
|
- Examples:
|
|
20
20
|
- Evidence:
|
|
21
21
|
|
|
22
|
-
## Ownership /
|
|
22
|
+
## Governance (Ownership / Review / Evidence)
|
|
23
23
|
|
|
24
24
|
- Owner:
|
|
25
25
|
- Review / approval:
|
|
26
|
+
- Evidence requirements:
|
|
26
27
|
- Update cadence:
|
|
27
28
|
- Evidence:
|
|
28
29
|
|
|
@@ -30,6 +31,7 @@
|
|
|
30
31
|
|
|
31
32
|
- Rule (e.g., link to repo evidence for every claim):
|
|
32
33
|
- Evidence:
|
|
34
|
+
- Assumptions (if evidence is missing):
|
|
33
35
|
|
|
34
36
|
## Non-goals / Not-now (Optional)
|
|
35
37
|
|
|
@@ -10,6 +10,8 @@ Create/update spec packs with `/qfai-spec`.
|
|
|
10
10
|
|
|
11
11
|
Decision Guardrails can be stored under `delta.md` as `## Decision Guardrails`. See `.qfai/samples/guardrails/delta_with_guardrails.md` for an opt-in example.
|
|
12
12
|
|
|
13
|
+
Before writing a spec pack, read `.qfai/assistant/steering/manifest.md` to align on product-level decisions.
|
|
14
|
+
|
|
13
15
|
Manifest is maintained under `.qfai/assistant/steering/manifest.md` (product-level decision spine). Do not duplicate a manifest under specs.
|
|
14
16
|
|
|
15
17
|
Note: After `qfai init`, this folder contains only this README. Spec packs (`spec-XXXX/`) are created by running `/qfai-spec`.
|
package/dist/cli/index.cjs
CHANGED
|
@@ -1067,8 +1067,8 @@ var import_promises7 = require("fs/promises");
|
|
|
1067
1067
|
var import_node_path9 = __toESM(require("path"), 1);
|
|
1068
1068
|
var import_node_url2 = require("url");
|
|
1069
1069
|
async function resolveToolVersion() {
|
|
1070
|
-
if ("1.1.
|
|
1071
|
-
return "1.1.
|
|
1070
|
+
if ("1.1.1".length > 0) {
|
|
1071
|
+
return "1.1.1";
|
|
1072
1072
|
}
|
|
1073
1073
|
try {
|
|
1074
1074
|
const packagePath = resolvePackageJsonPath();
|
package/dist/cli/index.mjs
CHANGED
|
@@ -1048,8 +1048,8 @@ import { readFile as readFile4 } from "fs/promises";
|
|
|
1048
1048
|
import path9 from "path";
|
|
1049
1049
|
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
1050
1050
|
async function resolveToolVersion() {
|
|
1051
|
-
if ("1.1.
|
|
1052
|
-
return "1.1.
|
|
1051
|
+
if ("1.1.1".length > 0) {
|
|
1052
|
+
return "1.1.1";
|
|
1053
1053
|
}
|
|
1054
1054
|
try {
|
|
1055
1055
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.cjs
CHANGED
|
@@ -1699,8 +1699,8 @@ var import_promises8 = require("fs/promises");
|
|
|
1699
1699
|
var import_node_path9 = __toESM(require("path"), 1);
|
|
1700
1700
|
var import_node_url = require("url");
|
|
1701
1701
|
async function resolveToolVersion() {
|
|
1702
|
-
if ("1.1.
|
|
1703
|
-
return "1.1.
|
|
1702
|
+
if ("1.1.1".length > 0) {
|
|
1703
|
+
return "1.1.1";
|
|
1704
1704
|
}
|
|
1705
1705
|
try {
|
|
1706
1706
|
const packagePath = resolvePackageJsonPath();
|
package/dist/index.mjs
CHANGED
|
@@ -1639,8 +1639,8 @@ import { readFile as readFile5 } from "fs/promises";
|
|
|
1639
1639
|
import path9 from "path";
|
|
1640
1640
|
import { fileURLToPath } from "url";
|
|
1641
1641
|
async function resolveToolVersion() {
|
|
1642
|
-
if ("1.1.
|
|
1643
|
-
return "1.1.
|
|
1642
|
+
if ("1.1.1".length > 0) {
|
|
1643
|
+
return "1.1.1";
|
|
1644
1644
|
}
|
|
1645
1645
|
try {
|
|
1646
1646
|
const packagePath = resolvePackageJsonPath();
|