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,23 +1,23 @@
1
- # Create QA Pull Request
2
-
3
- Create a draft PR from QA artifacts already on disk. Auto-detects git platform (GitHub, Azure DevOps, GitLab), applies your team's branch naming convention, and creates a draft PR with a summary. Asks for your branch pattern the first time and remembers it.
4
-
5
- ## Usage
6
-
7
- /qa-pr [--ticket <id>] [--title <description>] [--scope <type>] [--files <glob>] [--base <branch>]
8
-
9
- - --ticket: ticket/issue ID for branch name (e.g., PROJ-123)
10
- - --title: short description for branch and PR title (e.g., "login tests")
11
- - --scope: limit to file type: unit, api, e2e, all (default: all)
12
- - --files: explicit file glob to include (e.g., "tests/unit/auth*")
13
- - --base: target branch for PR (default: auto-detect)
14
-
15
- ## Instructions
16
-
17
- 1. Read `CLAUDE.md` -- git workflow, commit conventions.
18
- 2. Execute the workflow:
19
-
20
- Follow the workflow defined in `@workflows/qa-pr.md` end-to-end.
21
- Preserve all workflow gates (platform detection, user confirmation before push, branch convention save).
22
-
23
- $ARGUMENTS
1
+ # Create QA Pull Request
2
+
3
+ Create a draft PR from QA artifacts already on disk. Auto-detects git platform (GitHub, Azure DevOps, GitLab), applies your team's branch naming convention, and creates a draft PR with a summary. Asks for your branch pattern the first time and remembers it.
4
+
5
+ ## Usage
6
+
7
+ /qa-pr [--ticket <id>] [--title <description>] [--scope <type>] [--files <glob>] [--base <branch>]
8
+
9
+ - --ticket: ticket/issue ID for branch name (e.g., PROJ-123)
10
+ - --title: short description for branch and PR title (e.g., "login tests")
11
+ - --scope: limit to file type: unit, api, e2e, all (default: all)
12
+ - --files: explicit file glob to include (e.g., "tests/unit/auth*")
13
+ - --base: target branch for PR (default: auto-detect)
14
+
15
+ ## Instructions
16
+
17
+ 1. Read `CLAUDE.md` -- git workflow, commit conventions.
18
+ 2. Execute the workflow:
19
+
20
+ Follow the workflow defined in `@workflows/qa-pr.md` end-to-end.
21
+ Preserve all workflow gates (platform detection, user confirmation before push, branch convention save).
22
+
23
+ $ARGUMENTS
@@ -1,22 +1,22 @@
1
- # QA Automation -- Full Pipeline
2
-
3
- Run the complete QA automation pipeline. Analyzes a repository, generates a standards-compliant test suite, validates it, and delivers everything as a draft PR.
4
-
5
- ## Usage
6
-
7
- /qa-start [--dev-repo <path>] [--qa-repo <path>] [--auto]
8
-
9
- - No arguments: uses current directory as dev repo (Option 1)
10
- - --dev-repo: explicit path to developer repository
11
- - --qa-repo: path to existing QA repository (triggers Option 2 or 3)
12
- - --auto: enable auto-advance mode (no pauses at safe checkpoints)
13
-
14
- ## Instructions
15
-
16
- 1. Read `CLAUDE.md` -- all QA standards that govern the pipeline.
17
- 2. Execute the workflow:
18
-
19
- Follow the workflow defined in `@workflows/qa-start.md` end-to-end.
20
- Preserve all workflow gates (stage transitions, checkpoints, error handling, state updates, commits).
21
-
22
- $ARGUMENTS
1
+ # QA Automation -- Full Pipeline
2
+
3
+ Run the complete QA automation pipeline. Analyzes a repository, generates a standards-compliant test suite, validates it, and delivers everything as a draft PR.
4
+
5
+ ## Usage
6
+
7
+ /qa-start [--dev-repo <path>] [--qa-repo <path>] [--auto]
8
+
9
+ - No arguments: uses current directory as dev repo (Option 1)
10
+ - --dev-repo: explicit path to developer repository
11
+ - --qa-repo: path to existing QA repository (triggers Option 2 or 3)
12
+ - --auto: enable auto-advance mode (no pauses at safe checkpoints)
13
+
14
+ ## Instructions
15
+
16
+ 1. Read `CLAUDE.md` -- all QA standards that govern the pipeline.
17
+ 2. Execute the workflow:
18
+
19
+ Follow the workflow defined in `@workflows/qa-start.md` end-to-end.
20
+ Preserve all workflow gates (stage transitions, checkpoints, error handling, state updates, commits).
21
+
22
+ $ARGUMENTS
@@ -1,19 +1,19 @@
1
- # Inject Test IDs
2
-
3
- Scan frontend source code, audit missing data-testid attributes, and inject them following the naming convention in CLAUDE.md. Creates a separate branch for the changes.
4
-
5
- ## Usage
6
-
7
- /qa-testid [<source-directory>]
8
-
9
- - source-directory: path to frontend source (auto-detects if omitted)
10
-
11
- ## Instructions
12
-
13
- 1. Read `CLAUDE.md` -- data-testid Convention section.
14
- 2. Execute the workflow:
15
-
16
- Follow the workflow defined in `@workflows/qa-testid.md` end-to-end.
17
- Preserve all workflow gates (framework detection, user approval, branch creation).
18
-
19
- $ARGUMENTS
1
+ # Inject Test IDs
2
+
3
+ Scan frontend source code, audit missing data-testid attributes, and inject them following the naming convention in CLAUDE.md. Creates a separate branch for the changes.
4
+
5
+ ## Usage
6
+
7
+ /qa-testid [<source-directory>]
8
+
9
+ - source-directory: path to frontend source (auto-detects if omitted)
10
+
11
+ ## Instructions
12
+
13
+ 1. Read `CLAUDE.md` -- data-testid Convention section.
14
+ 2. Execute the workflow:
15
+
16
+ Follow the workflow defined in `@workflows/qa-testid.md` end-to-end.
17
+ Preserve all workflow gates (framework detection, user approval, branch creation).
18
+
19
+ $ARGUMENTS