testeiya 0.3.1-5.1 → 0.3.1-5.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.
package/package.json
CHANGED
package/skills/skills.lock.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
{
|
|
4
4
|
"source": "testomatio/skills",
|
|
5
5
|
"ref": null,
|
|
6
|
-
"sha": "
|
|
6
|
+
"sha": "e7cee9e276d96d22f2e3f185b4279a3092f8b428",
|
|
7
7
|
"folder": "testomatio",
|
|
8
8
|
"skills": [
|
|
9
9
|
"automate-manual-test-cases",
|
|
@@ -22,6 +22,7 @@
|
|
|
22
22
|
"qa-lead-strategy-advisor",
|
|
23
23
|
"qa-pr-requirements-analyzer",
|
|
24
24
|
"qa-requirement-reviewer",
|
|
25
|
+
"qa-review-pr",
|
|
25
26
|
"qa-split-testing-levels-pyramid",
|
|
26
27
|
"qa-sprint-report-by-testomatio",
|
|
27
28
|
"qa-test-code-coverage",
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: qa-review-pr
|
|
3
|
+
description: Review a pull request as a QA engineer — check whether the change actually solves the stated issue, flag backwards-compatibility breaks and risks, and list the scenarios that must be verified before merge. Use when asked to "review this PR as QA", "what should we test in this PR?", or "is this PR safe to merge?".
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# QA Review of a Pull Request
|
|
7
|
+
|
|
8
|
+
Think about a feature like a senior QA engineer and surface risk scenarios.
|
|
9
|
+
Gather intent with the `qa-pr-requirements-analyzer` skill first.
|
|
10
|
+
|
|
11
|
+
## Think
|
|
12
|
+
|
|
13
|
+
- Does the provided implementation represent original task or requirement.
|
|
14
|
+
- Possible ambiguities in implementation
|
|
15
|
+
- Possible contradictions with existing practices, features
|
|
16
|
+
- Possible duplication of existing features or patterns
|
|
17
|
+
- Unobvious usage: edge cases, repeated actions, boundary values, cancellations.
|
|
18
|
+
- Combinations: how this feature interacts with other features.
|
|
19
|
+
- Security vulnerabilities.
|
|
20
|
+
|
|
21
|
+
## Output
|
|
22
|
+
|
|
23
|
+
Your output should be readable by person who doesn't understand or doesn't look into code.
|
|
24
|
+
Use QA language, avoid coding jargon
|
|
25
|
+
Avoid mentioning internal variable names, syntax, queries, not relevant for QAs.
|
|
26
|
+
Use high-level business domain specific terms and not low level coding details
|
|
27
|
+
If needed mention class names, file names, but never get into deeper internal details
|
|
28
|
+
Explain risks and ambiguities from terms of persona using the software
|
|
29
|
+
Try to resolve ambiguities based on your code and requirements understanding
|
|
30
|
+
|
|
31
|
+
Only requested section named exactly the way we provide
|
|
32
|
+
Information in section written as numbered lists
|
|
33
|
+
|
|
34
|
+
Requested sections:
|
|
35
|
+
|
|
36
|
+
- Section `👷♀️ Is it done`: does the code meet the original request (pr title, issue description, etc). Include brief (1 line) original issue summary in it. Avoid details, your goal is to detect unmatched or wrongly understood issues.
|
|
37
|
+
- Section `🦕 Backwards Compatibility`: how this change is aligned with our existsing features, is there a significant behavior changes we need to be aware of
|
|
38
|
+
- Section `🌋 Potential Risks`: what are potential problems can be introduced by merging this PR
|
|
39
|
+
- Section `🔬 What must be verified`: up to 5 most risk scenarios, no more. Start in form: "What if"
|
|
40
|
+
|
|
41
|
+
Prefer simple wording and short sentences.
|
|
@@ -6,26 +6,35 @@ description: Analyze a feature a developer is building from a QA perspective —
|
|
|
6
6
|
# QA Thinking
|
|
7
7
|
|
|
8
8
|
Think about a feature like a senior QA engineer and surface risk scenarios.
|
|
9
|
+
Explain these risks to a developer who implements this feature
|
|
10
|
+
You are provided either with a feature specification or implementation
|
|
11
|
+
You must provide a critical review of it from QA perspective and ask clarifying questions
|
|
9
12
|
The user can explain the idea, or take it from the current branch or PR.
|
|
10
13
|
For a PR, gather intent with the `qa-pr-requirements-analyzer` skill first.
|
|
11
14
|
When the feature's current behavior is unclear, establish it with the `qa-explain-behavior` skill first.
|
|
12
15
|
|
|
13
|
-
## Think
|
|
16
|
+
## Think as QA
|
|
14
17
|
|
|
15
|
-
-
|
|
18
|
+
- What is this feature is about
|
|
19
|
+
- How does it align with exiting features, common project patterns, business intends
|
|
20
|
+
- Is there already implemented a similar pattern in codebase (aren't we duplicating existing behavior)
|
|
16
21
|
- Negative scenarios: possible misuse and failures.
|
|
17
|
-
- Unobvious usage:
|
|
22
|
+
- Unobvious usage: edge cases, boundary values, cancellations during executions.
|
|
18
23
|
- Combinations: how this feature interacts with other features.
|
|
19
|
-
- Possible abuses.
|
|
20
|
-
- Data consistency: inputs that create inconsistent state, and how it affects the system later.
|
|
21
24
|
- Security vulnerabilities.
|
|
22
25
|
|
|
23
26
|
## Output
|
|
24
27
|
|
|
25
|
-
|
|
26
|
-
|
|
28
|
+
Only requested section named exactly the way we provide
|
|
29
|
+
Information in section written as numbered lists
|
|
30
|
+
|
|
31
|
+
Requested sections:
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
- Section `👷 Must be aknowledged`: brief summary in bullet points. Potential correlation with other areas. Potential risks
|
|
35
|
+
- Section `👓 Must be clarified`: up to 5 questions to resolve important ambiguities. Start each with "What if".
|
|
36
|
+
- Section `🔬 Must be verified`: up to 5 most important risk scenarios, no more.
|
|
27
37
|
- Prefer simple wording and short sentences.
|
|
28
|
-
- When asked for more, propose the next batch of scenarios.
|
|
29
38
|
|
|
30
39
|
## Next actions
|
|
31
40
|
|