qaa-agent 1.6.2 → 1.6.3

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.
Files changed (73) hide show
  1. package/.claude/commands/create-test.md +164 -164
  2. package/.claude/commands/qa-audit.md +37 -37
  3. package/.claude/commands/qa-blueprint.md +54 -54
  4. package/.claude/commands/qa-fix.md +36 -36
  5. package/.claude/commands/qa-from-ticket.md +24 -24
  6. package/.claude/commands/qa-gap.md +20 -20
  7. package/.claude/commands/qa-map.md +47 -47
  8. package/.claude/commands/qa-pom.md +36 -36
  9. package/.claude/commands/qa-pr.md +23 -23
  10. package/.claude/commands/qa-pyramid.md +37 -37
  11. package/.claude/commands/qa-report.md +38 -38
  12. package/.claude/commands/qa-research.md +33 -33
  13. package/.claude/commands/qa-start.md +22 -22
  14. package/.claude/commands/qa-testid.md +19 -19
  15. package/.claude/commands/qa-validate.md +42 -42
  16. package/.claude/commands/update-test.md +58 -58
  17. package/.claude/settings.json +20 -20
  18. package/.claude/skills/qa-bug-detective/SKILL.md +122 -122
  19. package/.claude/skills/qa-learner/SKILL.md +150 -150
  20. package/.claude/skills/qa-repo-analyzer/SKILL.md +88 -88
  21. package/.claude/skills/qa-self-validator/SKILL.md +109 -109
  22. package/.claude/skills/qa-template-engine/SKILL.md +113 -113
  23. package/.claude/skills/qa-testid-injector/SKILL.md +93 -93
  24. package/.claude/skills/qa-workflow-documenter/SKILL.md +87 -87
  25. package/.mcp.json +8 -8
  26. package/CHANGELOG.md +71 -71
  27. package/CLAUDE.md +553 -553
  28. package/agents/qa-pipeline-orchestrator.md +1378 -1378
  29. package/agents/qaa-analyzer.md +524 -524
  30. package/agents/qaa-bug-detective.md +446 -446
  31. package/agents/qaa-codebase-mapper.md +935 -935
  32. package/agents/qaa-e2e-runner.md +415 -415
  33. package/agents/qaa-executor.md +651 -651
  34. package/agents/qaa-planner.md +390 -390
  35. package/agents/qaa-project-researcher.md +319 -319
  36. package/agents/qaa-scanner.md +424 -424
  37. package/agents/qaa-testid-injector.md +585 -585
  38. package/agents/qaa-validator.md +452 -452
  39. package/bin/install.cjs +198 -198
  40. package/bin/lib/commands.cjs +709 -709
  41. package/bin/lib/config.cjs +307 -307
  42. package/bin/lib/core.cjs +497 -497
  43. package/bin/lib/frontmatter.cjs +299 -299
  44. package/bin/lib/init.cjs +989 -989
  45. package/bin/lib/milestone.cjs +241 -241
  46. package/bin/lib/model-profiles.cjs +60 -60
  47. package/bin/lib/phase.cjs +911 -911
  48. package/bin/lib/roadmap.cjs +306 -306
  49. package/bin/lib/state.cjs +748 -748
  50. package/bin/lib/template.cjs +222 -222
  51. package/bin/lib/verify.cjs +842 -842
  52. package/bin/qaa-tools.cjs +607 -607
  53. package/docs/COMMANDS.md +341 -341
  54. package/docs/DEMO.md +182 -182
  55. package/docs/TESTING.md +156 -156
  56. package/package.json +41 -41
  57. package/templates/failure-classification.md +391 -391
  58. package/templates/gap-analysis.md +409 -409
  59. package/templates/pr-template.md +48 -48
  60. package/templates/qa-analysis.md +381 -381
  61. package/templates/qa-audit-report.md +465 -465
  62. package/templates/qa-repo-blueprint.md +636 -636
  63. package/templates/scan-manifest.md +312 -312
  64. package/templates/test-inventory.md +582 -582
  65. package/templates/testid-audit-report.md +354 -354
  66. package/templates/validation-report.md +243 -243
  67. package/workflows/qa-analyze.md +296 -296
  68. package/workflows/qa-from-ticket.md +536 -536
  69. package/workflows/qa-gap.md +303 -303
  70. package/workflows/qa-pr.md +389 -389
  71. package/workflows/qa-start.md +1168 -1168
  72. package/workflows/qa-testid.md +356 -356
  73. package/workflows/qa-validate.md +295 -295
@@ -1,48 +1,48 @@
1
- ## QA Automation Report
2
-
3
- ### Analysis Summary
4
-
5
- - **Architecture:** {architecture_type}
6
- - **Framework:** {framework}
7
- - **Risk Areas:** {risk_summary}
8
-
9
- ### Test Suite
10
-
11
- | Level | Count |
12
- |-------|-------|
13
- | Unit | {unit_count} |
14
- | Integration | {integration_count} |
15
- | API | {api_count} |
16
- | E2E | {e2e_count} |
17
- | **Total** | **{total_count}** |
18
-
19
- ### Coverage Metrics
20
-
21
- - **Modules covered:** {modules_covered}
22
- - **Estimated coverage:** {coverage_estimate}
23
-
24
- ### Validation Status
25
-
26
- - **Result:** {validation_result}
27
- - **Confidence:** {confidence}
28
- - **Fix loops used:** {fix_loops_used}
29
- - **Issues found:** {issues_found}
30
- - **Issues fixed:** {issues_fixed}
31
-
32
- ### Generated Files
33
-
34
- {file_list}
35
-
36
- ### Reviewer Checklist
37
-
38
- - [ ] Test IDs are unique across all files
39
- - [ ] Assertions use concrete values (no toBeTruthy/toBeDefined)
40
- - [ ] Page objects contain no assertions
41
- - [ ] No hardcoded credentials or secrets
42
- - [ ] Locators follow tier hierarchy (data-testid first)
43
- - [ ] Naming conventions match CLAUDE.md standards
44
- - [ ] Testing pyramid distribution is reasonable for this project
45
-
46
- ---
47
-
48
- Generated by QAA (QA Automation Agent)
1
+ ## QA Automation Report
2
+
3
+ ### Analysis Summary
4
+
5
+ - **Architecture:** {architecture_type}
6
+ - **Framework:** {framework}
7
+ - **Risk Areas:** {risk_summary}
8
+
9
+ ### Test Suite
10
+
11
+ | Level | Count |
12
+ |-------|-------|
13
+ | Unit | {unit_count} |
14
+ | Integration | {integration_count} |
15
+ | API | {api_count} |
16
+ | E2E | {e2e_count} |
17
+ | **Total** | **{total_count}** |
18
+
19
+ ### Coverage Metrics
20
+
21
+ - **Modules covered:** {modules_covered}
22
+ - **Estimated coverage:** {coverage_estimate}
23
+
24
+ ### Validation Status
25
+
26
+ - **Result:** {validation_result}
27
+ - **Confidence:** {confidence}
28
+ - **Fix loops used:** {fix_loops_used}
29
+ - **Issues found:** {issues_found}
30
+ - **Issues fixed:** {issues_fixed}
31
+
32
+ ### Generated Files
33
+
34
+ {file_list}
35
+
36
+ ### Reviewer Checklist
37
+
38
+ - [ ] Test IDs are unique across all files
39
+ - [ ] Assertions use concrete values (no toBeTruthy/toBeDefined)
40
+ - [ ] Page objects contain no assertions
41
+ - [ ] No hardcoded credentials or secrets
42
+ - [ ] Locators follow tier hierarchy (data-testid first)
43
+ - [ ] Naming conventions match CLAUDE.md standards
44
+ - [ ] Testing pyramid distribution is reasonable for this project
45
+
46
+ ---
47
+
48
+ Generated by QAA (QA Automation Agent)