qaa-agent 1.6.2 → 1.7.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.
Files changed (78) hide show
  1. package/.mcp.json +8 -8
  2. package/CHANGELOG.md +93 -71
  3. package/CLAUDE.md +553 -553
  4. package/agents/qa-pipeline-orchestrator.md +1378 -1378
  5. package/agents/qaa-analyzer.md +539 -524
  6. package/agents/qaa-bug-detective.md +479 -446
  7. package/agents/qaa-codebase-mapper.md +935 -935
  8. package/agents/qaa-discovery.md +384 -0
  9. package/agents/qaa-e2e-runner.md +416 -415
  10. package/agents/qaa-executor.md +651 -651
  11. package/agents/qaa-planner.md +405 -390
  12. package/agents/qaa-project-researcher.md +319 -319
  13. package/agents/qaa-scanner.md +424 -424
  14. package/agents/qaa-testid-injector.md +643 -585
  15. package/agents/qaa-validator.md +490 -452
  16. package/bin/install.cjs +200 -198
  17. package/bin/lib/commands.cjs +709 -709
  18. package/bin/lib/config.cjs +307 -307
  19. package/bin/lib/core.cjs +497 -497
  20. package/bin/lib/frontmatter.cjs +299 -299
  21. package/bin/lib/init.cjs +989 -989
  22. package/bin/lib/milestone.cjs +241 -241
  23. package/bin/lib/model-profiles.cjs +60 -60
  24. package/bin/lib/phase.cjs +911 -911
  25. package/bin/lib/roadmap.cjs +306 -306
  26. package/bin/lib/state.cjs +748 -748
  27. package/bin/lib/template.cjs +222 -222
  28. package/bin/lib/verify.cjs +842 -842
  29. package/bin/qaa-tools.cjs +607 -607
  30. package/commands/qa-audit.md +119 -0
  31. package/commands/qa-create-test.md +288 -0
  32. package/commands/qa-fix.md +147 -0
  33. package/commands/qa-map.md +137 -0
  34. package/{.claude/commands → commands}/qa-pr.md +23 -23
  35. package/{.claude/commands → commands}/qa-start.md +22 -22
  36. package/{.claude/commands → commands}/qa-testid.md +19 -19
  37. package/docs/COMMANDS.md +341 -341
  38. package/docs/DEMO.md +182 -182
  39. package/docs/TESTING.md +156 -156
  40. package/package.json +6 -7
  41. package/{.claude/settings.json → settings.json} +1 -2
  42. package/templates/failure-classification.md +391 -391
  43. package/templates/gap-analysis.md +409 -409
  44. package/templates/pr-template.md +48 -48
  45. package/templates/qa-analysis.md +381 -381
  46. package/templates/qa-audit-report.md +465 -465
  47. package/templates/qa-repo-blueprint.md +636 -636
  48. package/templates/scan-manifest.md +312 -312
  49. package/templates/test-inventory.md +582 -582
  50. package/templates/testid-audit-report.md +354 -354
  51. package/templates/validation-report.md +243 -243
  52. package/workflows/qa-analyze.md +296 -296
  53. package/workflows/qa-from-ticket.md +536 -536
  54. package/workflows/qa-gap.md +309 -303
  55. package/workflows/qa-pr.md +389 -389
  56. package/workflows/qa-start.md +1192 -1168
  57. package/workflows/qa-testid.md +384 -356
  58. package/workflows/qa-validate.md +299 -295
  59. package/.claude/commands/create-test.md +0 -164
  60. package/.claude/commands/qa-audit.md +0 -37
  61. package/.claude/commands/qa-blueprint.md +0 -54
  62. package/.claude/commands/qa-fix.md +0 -36
  63. package/.claude/commands/qa-from-ticket.md +0 -24
  64. package/.claude/commands/qa-gap.md +0 -20
  65. package/.claude/commands/qa-map.md +0 -47
  66. package/.claude/commands/qa-pom.md +0 -36
  67. package/.claude/commands/qa-pyramid.md +0 -37
  68. package/.claude/commands/qa-report.md +0 -38
  69. package/.claude/commands/qa-research.md +0 -33
  70. package/.claude/commands/qa-validate.md +0 -42
  71. package/.claude/commands/update-test.md +0 -58
  72. package/.claude/skills/qa-learner/SKILL.md +0 -150
  73. /package/{.claude/skills → skills}/qa-bug-detective/SKILL.md +0 -0
  74. /package/{.claude/skills → skills}/qa-repo-analyzer/SKILL.md +0 -0
  75. /package/{.claude/skills → skills}/qa-self-validator/SKILL.md +0 -0
  76. /package/{.claude/skills → skills}/qa-template-engine/SKILL.md +0 -0
  77. /package/{.claude/skills → skills}/qa-testid-injector/SKILL.md +0 -0
  78. /package/{.claude/skills → skills}/qa-workflow-documenter/SKILL.md +0 -0
@@ -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)