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
|
@@ -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
|