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.
- package/.mcp.json +8 -8
- package/CHANGELOG.md +93 -71
- package/CLAUDE.md +553 -553
- package/agents/qa-pipeline-orchestrator.md +1378 -1378
- package/agents/qaa-analyzer.md +539 -524
- package/agents/qaa-bug-detective.md +479 -446
- package/agents/qaa-codebase-mapper.md +935 -935
- package/agents/qaa-discovery.md +384 -0
- package/agents/qaa-e2e-runner.md +416 -415
- package/agents/qaa-executor.md +651 -651
- package/agents/qaa-planner.md +405 -390
- package/agents/qaa-project-researcher.md +319 -319
- package/agents/qaa-scanner.md +424 -424
- package/agents/qaa-testid-injector.md +643 -585
- package/agents/qaa-validator.md +490 -452
- package/bin/install.cjs +200 -198
- package/bin/lib/commands.cjs +709 -709
- package/bin/lib/config.cjs +307 -307
- package/bin/lib/core.cjs +497 -497
- package/bin/lib/frontmatter.cjs +299 -299
- package/bin/lib/init.cjs +989 -989
- package/bin/lib/milestone.cjs +241 -241
- package/bin/lib/model-profiles.cjs +60 -60
- package/bin/lib/phase.cjs +911 -911
- package/bin/lib/roadmap.cjs +306 -306
- package/bin/lib/state.cjs +748 -748
- package/bin/lib/template.cjs +222 -222
- package/bin/lib/verify.cjs +842 -842
- package/bin/qaa-tools.cjs +607 -607
- package/commands/qa-audit.md +119 -0
- package/commands/qa-create-test.md +288 -0
- package/commands/qa-fix.md +147 -0
- package/commands/qa-map.md +137 -0
- package/{.claude/commands → commands}/qa-pr.md +23 -23
- package/{.claude/commands → commands}/qa-start.md +22 -22
- package/{.claude/commands → commands}/qa-testid.md +19 -19
- package/docs/COMMANDS.md +341 -341
- package/docs/DEMO.md +182 -182
- package/docs/TESTING.md +156 -156
- package/package.json +6 -7
- package/{.claude/settings.json → settings.json} +1 -2
- package/templates/failure-classification.md +391 -391
- package/templates/gap-analysis.md +409 -409
- package/templates/pr-template.md +48 -48
- package/templates/qa-analysis.md +381 -381
- package/templates/qa-audit-report.md +465 -465
- package/templates/qa-repo-blueprint.md +636 -636
- package/templates/scan-manifest.md +312 -312
- package/templates/test-inventory.md +582 -582
- package/templates/testid-audit-report.md +354 -354
- package/templates/validation-report.md +243 -243
- package/workflows/qa-analyze.md +296 -296
- package/workflows/qa-from-ticket.md +536 -536
- package/workflows/qa-gap.md +309 -303
- package/workflows/qa-pr.md +389 -389
- package/workflows/qa-start.md +1192 -1168
- package/workflows/qa-testid.md +384 -356
- package/workflows/qa-validate.md +299 -295
- package/.claude/commands/create-test.md +0 -164
- package/.claude/commands/qa-audit.md +0 -37
- package/.claude/commands/qa-blueprint.md +0 -54
- package/.claude/commands/qa-fix.md +0 -36
- package/.claude/commands/qa-from-ticket.md +0 -24
- package/.claude/commands/qa-gap.md +0 -20
- package/.claude/commands/qa-map.md +0 -47
- package/.claude/commands/qa-pom.md +0 -36
- package/.claude/commands/qa-pyramid.md +0 -37
- package/.claude/commands/qa-report.md +0 -38
- package/.claude/commands/qa-research.md +0 -33
- package/.claude/commands/qa-validate.md +0 -42
- package/.claude/commands/update-test.md +0 -58
- package/.claude/skills/qa-learner/SKILL.md +0 -150
- /package/{.claude/skills → skills}/qa-bug-detective/SKILL.md +0 -0
- /package/{.claude/skills → skills}/qa-repo-analyzer/SKILL.md +0 -0
- /package/{.claude/skills → skills}/qa-self-validator/SKILL.md +0 -0
- /package/{.claude/skills → skills}/qa-template-engine/SKILL.md +0 -0
- /package/{.claude/skills → skills}/qa-testid-injector/SKILL.md +0 -0
- /package/{.claude/skills → skills}/qa-workflow-documenter/SKILL.md +0 -0
package/.mcp.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
{
|
|
2
|
-
"mcpServers": {
|
|
3
|
-
"playwright": {
|
|
4
|
-
"command": "npx",
|
|
5
|
-
"args": ["@playwright/mcp@latest"]
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"playwright": {
|
|
4
|
+
"command": "npx",
|
|
5
|
+
"args": ["@playwright/mcp@latest"]
|
|
6
|
+
}
|
|
7
|
+
}
|
|
8
|
+
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,71 +1,93 @@
|
|
|
1
|
-
|
|
2
|
-
# Changelog
|
|
3
|
-
|
|
4
|
-
All notable changes to QAA (QA Automation Agent) are documented here.
|
|
5
|
-
|
|
6
|
-
## [1.
|
|
7
|
-
|
|
8
|
-
### Added
|
|
9
|
-
- Playwright MCP
|
|
10
|
-
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
-
|
|
14
|
-
-
|
|
15
|
-
-
|
|
16
|
-
-
|
|
17
|
-
|
|
18
|
-
### Changed
|
|
19
|
-
-
|
|
20
|
-
-
|
|
21
|
-
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
-
|
|
61
|
-
|
|
62
|
-
## [1.
|
|
63
|
-
|
|
64
|
-
### Added
|
|
65
|
-
-
|
|
66
|
-
-
|
|
67
|
-
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
1
|
+
|
|
2
|
+
# Changelog
|
|
3
|
+
|
|
4
|
+
All notable changes to QAA (QA Automation Agent) are documented here.
|
|
5
|
+
|
|
6
|
+
## [1.7.0] - 2026-04-02
|
|
7
|
+
|
|
8
|
+
### Added
|
|
9
|
+
- **qaa-testid-injector**: Playwright MCP integration for live DOM verification before injection, codebase map reading (CODE_PATTERNS, TEST_SURFACE, TESTABILITY), and locator registry cross-referencing
|
|
10
|
+
- **qaa-validator**: codebase map reading (CODE_PATTERNS, TEST_SURFACE, API_CONTRACTS) for structure and logic validation, locator registry cross-check for POM accuracy
|
|
11
|
+
- **qaa-planner**: locator registry reading to assess E2E feasibility and improve complexity estimation
|
|
12
|
+
- **qaa-analyzer**: locator registry reading to inform risk assessment and testing pyramid recommendations
|
|
13
|
+
- **qaa-e2e-runner**: locator registry update after execution -- all discovered real locators are persisted
|
|
14
|
+
- **qa-validate workflow**: now passes codebase map and locator registry to validator agent
|
|
15
|
+
- **qa-gap workflow**: now passes codebase map and locator registry to analyzer agent
|
|
16
|
+
- **qa-testid workflow**: now passes codebase map, locator registry, and app_url to injector agent
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
- **E2E runner max fix loops: 3 → 5** -- more attempts to fix locator/assertion mismatches before giving up
|
|
20
|
+
- **Installer**: updated paths for new package structure (commands/ and skills/ at root level), updated command list to reflect 7 consolidated commands
|
|
21
|
+
- **Package structure**: commands and skills now live at package root instead of `.claude/` subdirectory
|
|
22
|
+
- **Repository**: moved to `capmation/qaa-testing`
|
|
23
|
+
|
|
24
|
+
### Consolidated
|
|
25
|
+
- 7 slash commands: `/qa-start`, `/qa-create-test`, `/qa-map`, `/qa-testid`, `/qa-pr`, `/qa-audit`, `/qa-fix`
|
|
26
|
+
- Removed standalone `/qa-analyze`, `/qa-validate`, `/qa-gap` -- integrated into other commands
|
|
27
|
+
|
|
28
|
+
## [1.6.0] - 2026-03-25
|
|
29
|
+
|
|
30
|
+
### Added
|
|
31
|
+
- Playwright MCP server bundled in agent package (`.mcp.json`) -- starts automatically when opening project in Claude Code
|
|
32
|
+
- Persistent locator registry at `.qa-output/locators/` -- accumulates real locators across features over time
|
|
33
|
+
- Per-feature files: `{feature}.locators.md` -- extracted locators for each feature tested
|
|
34
|
+
- Central index: `LOCATOR_REGISTRY.md` -- all locators by page, searchable by any command
|
|
35
|
+
- Browser-based locator extraction step in `/create-test` and `/qa-from-ticket` -- navigates live app with Playwright MCP and captures real data-testid, ARIA roles, and labels before generating tests
|
|
36
|
+
- Registry cache: if locators for a feature already exist in the registry, browser extraction is skipped (reuses cached locators)
|
|
37
|
+
- `--app-url` flag added to `/qa-from-ticket`
|
|
38
|
+
- CHANGELOG.md
|
|
39
|
+
|
|
40
|
+
### Changed
|
|
41
|
+
- `qaa-executor` now reads locator registry (when available) to use real locators in POMs instead of proposing them
|
|
42
|
+
- `/create-test` flow: checks registry first, then extracts via browser if needed, BEFORE test generation
|
|
43
|
+
- `/qa-from-ticket` workflow: locator extraction step added after source scan, before test case generation
|
|
44
|
+
|
|
45
|
+
### Removed
|
|
46
|
+
- `/qa-analyze` command (deprecated since v1.4.0, fully replaced by `/qa-map`)
|
|
47
|
+
|
|
48
|
+
## [1.5.0] - 2026-03-24
|
|
49
|
+
|
|
50
|
+
### Added
|
|
51
|
+
- Stable release
|
|
52
|
+
|
|
53
|
+
## [1.4.0]
|
|
54
|
+
|
|
55
|
+
### Changed
|
|
56
|
+
- Merged `/qa-analyze` into `/qa-map` -- single command for codebase scanning and analysis
|
|
57
|
+
- Consolidated pipeline flow
|
|
58
|
+
|
|
59
|
+
### Deprecated
|
|
60
|
+
- `/qa-analyze` command (use `/qa-map` instead)
|
|
61
|
+
|
|
62
|
+
## [1.3.0]
|
|
63
|
+
|
|
64
|
+
### Added
|
|
65
|
+
- `qa-learner` skill -- persistent preferences from user corrections
|
|
66
|
+
- Preferences saved to `~/.claude/qaa/MY_PREFERENCES.md`
|
|
67
|
+
- Trigger detection for English and Spanish frustration signals
|
|
68
|
+
|
|
69
|
+
## [1.2.0]
|
|
70
|
+
|
|
71
|
+
### Added
|
|
72
|
+
- `qaa-codebase-mapper` agent -- 4 parallel focus areas (testability, risk, patterns, existing tests)
|
|
73
|
+
- `qaa-project-researcher` agent -- researches best testing stack and practices
|
|
74
|
+
- 8 codebase map documents produced by mapper
|
|
75
|
+
|
|
76
|
+
## [1.1.0]
|
|
77
|
+
|
|
78
|
+
### Added
|
|
79
|
+
- Workflow definitions for all pipeline stages
|
|
80
|
+
- Interactive installer (`npx qaa-agent`)
|
|
81
|
+
- `qaa init` command for per-project initialization
|
|
82
|
+
- npm package distribution
|
|
83
|
+
|
|
84
|
+
## [1.0.0]
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- Full QA automation pipeline -- 11 agents, 17 commands, 10 templates, 7 workflows
|
|
88
|
+
- 3 workflow options (dev-only, immature QA, mature QA)
|
|
89
|
+
- 4-layer test validation (syntax, structure, dependencies, logic)
|
|
90
|
+
- Page Object Model generation with CLAUDE.md standards
|
|
91
|
+
- Test ID injection for frontend components
|
|
92
|
+
- Bug detective failure classification
|
|
93
|
+
- Draft PR delivery with branch naming convention
|