pi-aia-asf 0.8.0 → 0.8.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/CHANGELOG.md +7 -0
- package/index.ts +1 -0
- package/package.json +1 -1
- package/skills/aia-asf/references/06b-testing-qa.md +1 -0
package/CHANGELOG.md
CHANGED
package/index.ts
CHANGED
|
@@ -52,6 +52,7 @@ const QA_CHECKLIST: Array<{ key: string; label: string }> = [
|
|
|
52
52
|
{ key: "browser", label: "Web surfaces exercised through a real browser (n/a if none)" },
|
|
53
53
|
{ key: "specs", label: "Every MUST spec 'met' with concrete evidence" },
|
|
54
54
|
{ key: "trace", label: "Spec-to-code traceability: every met spec has outcome → codePath → test" },
|
|
55
|
+
{ key: "code-health", label: "Code Health Gate passed (or enabled:false / gate.mode:warn with the report shown)" },
|
|
55
56
|
{ key: "surface", label: "Every delivered feature is consumed by a surface (UI or API) — nothing dead" },
|
|
56
57
|
{ key: "e2e", label: "Feature specs have an end-to-end behavioral test through the real entry point" },
|
|
57
58
|
{ key: "honest", label: "Skipped/inconclusive checks reported explicitly" },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-aia-asf",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.1",
|
|
4
4
|
"description": "Ai Applied Agentic Software Factory — codifies the full software development flow: intake, research, spec capture, adversarial analysis, planning with approval gates, test-first implementation, and release. Requires pi-vigilant, pi-smart-web-search, pi-smart-fetch, and pi-aia-browser.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package",
|
|
@@ -143,6 +143,7 @@ never arrives, the wiring is dead — that is a failed test.
|
|
|
143
143
|
- [ ] Web surfaces exercised through a real browser
|
|
144
144
|
- [ ] Every MUST spec `met` with concrete evidence (`update_spec_status`)
|
|
145
145
|
- [ ] **Spec-to-code traceability: every `met` spec carries `trace` (outcome → codePath → testFile + assertion); `/asf verify` mechanically validates it (large work)**
|
|
146
|
+
- [ ] **Code Health Gate passed (or `enabled: false` / `gate.mode: warn` with the report shown)**
|
|
146
147
|
- [ ] **Consumed by a surface: every delivered feature's output is visible in the product (UI or API) — nothing ships as dead machinery**
|
|
147
148
|
- [ ] **E2E behavioral test: every feature spec has a test through the real entry point asserting the operator-facing outcome**
|
|
148
149
|
- [ ] Unverifiable specs → `partial` + asked the user (never self-certified)
|