Quick Route
| Request |
Go to |
| Write one well-formed case from an AC |
Test-Case Anatomy |
| Bulk-generate cases from a story |
Bulk Authoring + tool section |
| "Lint these steps / are these verifiable?" |
Ambiguous-Step Linting + references/linting.md |
| TestRail / Xray / Zephyr / Qase API payload |
Tool Payloads + references/tool-apis.md |
| CSV to import into TestRail |
references/import-and-traceability.md (CSV section) |
| Organize suites/sections |
references/import-and-traceability.md (organization) |
| Requirements ↔ tests, coverage gaps |
Traceability + references/import-and-traceability.md |
| Manual → automation decision |
Automation Graduation |
Discovery Questions
First, check .agents/qa-project-context.md in the project root for the tool, project keys,
and conventions; skip anything answered there. If it's missing, suggest creating one with the
qa-project-context skill. Then clarify:
- Which tool — TestRail, Xray, Zephyr Scale, or Qase? Each has a different API auth scheme,
endpoint shape, and step-field name. Getting this wrong produces payloads that 401 or 400.
- TestRail only: single-repository mode or multiple suites? Changes whether cases live under
sections in one suite or in separate suites — affects every
section_id and the org plan.
- Xray/Zephyr only: Jira Cloud or Server/DC? Cloud and Server use different base paths and
auth. This skill targets Cloud; Server uses different endpoints.
- Source of the cases — acceptance criteria, a user story, a free-form feature? Drives how
many cases to generate and how to split rules.
- Do you need requirement traceability? If yes, capture the Jira/requirement issue keys now
so cases link on creation rather than being back-filled.
Core Principles
An expected result must be deterministically checkable. A second human (or a machine)
must be able to agree on pass/fail without guessing. "Works", "looks right", "is fine",
"wait a bit" fail this test. Name an exact value, a named element and its state, a specific
message, a status code, a count, or a time-bounded condition.
One assertion per step. Each step has a single expected result. Cramming three checks
into one step makes a failure ambiguous about which check broke and which to re-run.
One case per business rule, not one giant case. "Valid code reduces total / expired code
errors / used code rejected" is three cases with three independent pass/fail verdicts — not
one case with a paragraph of expecteds.
The tool's API is the spec — don't cross-wire the four tools. TestRail's
custom_steps_separated, Qase's Token header, Xray's two-step GraphQL auth, and Zephyr's
separate teststeps call are NOT interchangeable. Copy from the right tool's section.
Traceability exists to surface what is NOT covered. The deliverable is the list of
requirements with zero linked tests, from a native coverage report — not a spreadsheet that
rots and not "every test links to something."
Automate by ROI, not by volume. Limited capacity means stable, high-frequency,
regression/smoke cases graduate first; exploratory, one-off, and high-churn/flaky cases stay
manual. "Automate everything" wastes capacity on the worst candidates.
Test-Case Anatomy
A well-formed manual case has five parts. Every part is mandatory; a case missing preconditions
or test data is not reproducible.
| Part |
What it holds |
Failure if omitted |
| Title |
Feature — scenario — expected outcome, one line |
Unsearchable, duplicated |
| Preconditions |
State the test assumes (account exists, on page X, flag on) |
Tester guesses setup; flaky |
| Steps |
Discrete actions, one action per step |
Non-reproducible |
| Expected Results |
One observable post-condition per step |
Not verifiable |
| Test Data |
Concrete values used (codes, emails, counts, timings) |
Not repeatable |
BAD (single vague step, non-verifiable expected, no preconditions, no data):
Title: Login test
Steps: Test the login.
Expected: Verify it works.
GOOD — from the AC "after 5 wrong-password attempts, the account locks for 15 minutes":
Title: Login — account locks for 15 minutes after 5 failed attempts
Preconditions: A registered account exists for user@example.com. The user is logged out
on the /login page. Lockout policy: 5 attempts, 15-minute lockout.
Test Data: email user@example.com, wrong password "WrongPass!", correct password "Passw0rd!"
Steps (one assertion per step / single expected result each):
1. Action: Submit the login form with user@example.com and "WrongPass!".
Expected: Error "Invalid email or password." shows; the failed-attempt count is now 1.
2. Action: Repeat the wrong-password submit until 5 failed attempts total.
Expected: On the 5th failure the account is locked; message reads
"Account locked. Try again in 15 minutes."
3. Action: Immediately submit with the CORRECT password "Passw0rd!".
Expected: Login is still blocked; the same lockout message is shown (lockout overrides
valid credentials).
4. Action: Wait 15 minutes, then submit with the correct password.
Expected: Login succeeds and the dashboard loads.
Note: explicit preconditions, concrete test data (5 attempts, 15-minute lockout), discrete
steps, and a single deterministic expected result per step.
Bulk Authoring from Stories
Given a story or set of acceptance criteria, split into cases by rule, then generate the
tool-specific payload. Worked example for the discount-code story (valid reduces total / expired
errors / already-used rejected) → three cases:
- Apply a valid code → total reduces (happy path).
- Apply an expired (invalid) code → inline error, total unchanged.
- Apply an already-used / already-redeemed code → rejected, total unchanged.
Add the obvious negatives the story implies but doesn't state (empty code, malformed code) when
the team wants edge coverage. Each case gets discrete steps and one expected per step — never one
giant case covering all three rules. For the WHAT-to-test scope decision across a sprint, that's
test-planning, not this skill.
Ambiguous-Step Linting
When asked to "lint" a suite, your job is to FLAG non-deterministic steps and rewrite them — NOT
to agree that they "look fine." The agreeable failure mode (rubber-stamping "everything works")
is the exact thing this section prevents.
A step is bad when its expected result is not deterministically verifiable. Flag any of:
- Vague action — "click around", "test the X", "play with it" → name the exact element + action.
- Vague data — "some data", "a value", "stuff" → give concrete test data.
- Non-observable expected — "everything works", "it looks right", "is fine", "no problems"
→ name the exact observable result.
- Unbounded wait — "wait a bit", "after a while" → bound it ("within 10 s" / "until the
spinner disappears and a row appears").
- Multiple assertions in one step → split to one assertion per step.
For the classic four-step bad suite ("app opens / everything works / it looks right / the report
is ready"), all four are ambiguous and must be flagged and rewritten with explicit selectors,
exact values, and bounded conditions — never returned as "no issues found". The full lint
checklist, the worked rewrite of those four steps, and the lint-output table format are in
references/linting.md.
Tool Payloads
The four tools are easy to cross-wire. Summary — full curl/GraphQL bodies in
references/tool-apis.md:
| Tool |
Auth |
Create endpoint |
Steps field |
| TestRail |
Basic email:api_key |
POST add_case/{section_id} |
custom_steps_separated array of {content, expected} |
| Xray Cloud |
POST /api/v2/authenticate → Bearer token |
GraphQL createTest at /api/v2/graphql |
steps[] {action, result}; Gherkin → testType: Cucumber + gherkin |
| Zephyr Scale Cloud |
Authorization: Bearer <JWT> |
POST /v2/testcases then POST /v2/testcases/{key}/teststeps |
separate teststeps call, inline {description, expectedResult, testData} |
| Qase |
header Token: <key> |
POST /v1/case/{CODE}/bulk |
steps[] {action, expected_result, data} |
Tool-specific traps that the reference spells out and you must respect:
- TestRail — separated steps need
custom_steps_separated (NOT the plain custom_steps text
blob); the endpoint is add_case/{section_id} (NOT add_test, which is a run instance). Base
is {instance}/index.php?/api/v2. Don't use a Qase-style POST /case.
- Xray Cloud — authenticate first (
/api/v2/authenticate with client_id/client_secret →
bearer, 24h), then prefer GraphQL createTest. Import Gherkin as a Cucumber test, not
a Generic one. Avoid the deprecated Cloud path /rest/raven/1.0/... and Server-style REST and
Jira username/password basic auth.
- Zephyr Scale Cloud — base is
api.zephyrscale.smartbear.com/v2 with JWT Bearer. Steps are a
SEPARATE /testcases/{key}/teststeps call, not a text blob in the create body. Don't emit /v1/,
the wrong host, or Qase's Token header.
- Qase — auth is
Token: <key>, NOT Authorization: Bearer. Use POST /case/{CODE}/bulk
with a cases array instead of N single POSTs. Don't use TestRail's add_case /
custom_steps_separated.
CSV import for TestRail (header row mapped to importer fields: Title, Section Hierarchy,
Steps (Separated), Expected Result, Priority, Type, Preconditions) is in
references/import-and-traceability.md — use a real CSV with a header row, never free-form prose
or a single Description column, and never JSON when CSV was requested.
Organization
Use sections and subsections for hierarchy, kept shallow (3–4 levels). For a web + mobile
product the default is single-repository mode with top-level sections per platform
(Web, Mobile (iOS), Mobile (Android), Shared / API), feature sections beneath. Split into
multiple suites only when platforms are owned by separate teams with separate cadences.
Avoid: one folder per test case, deep nesting 7+ levels deep, dumping every case in the root
section, and duplicating the same case across suites (keep one source of truth). The
single-repository vs multiple-suites trade-off and the full org rules are in
references/import-and-traceability.md.
Traceability
Goal: a coverage report that shows which stories have no tests — the uncovered requirements.
For Xray on Jira: from each Test, add the native "tests" issue link to the requirement's
Jira issue key (NOT to a Test Execution — that records runs, not coverage). Read per-story
coverage from the Story's Test Coverage panel, and project-wide from the Traceability Report /
Requirement Coverage report. Then filter for requirements with 0 linked tests — those are
the gaps to close. Do not propose a manual spreadsheet as the only traceability mechanism, and do
not ignore uncovered requirements. Zephyr Scale, Qase, and TestRail equivalents (issue links +
their coverage/traceability views) are in references/import-and-traceability.md.
Automation Graduation
Score each manual case by ROI: value ≈ run_frequency × regression_importance ÷ (automation_cost × expected_maintenance). With limited capacity (e.g. a 400-case Zephyr Scale backlog):
- Automate first: high-frequency cases (run every release / regression / smoke), on stable /
low-churn / deterministic features, that guard critical regression or smoke paths.
- Stay manual: exploratory or one-off cases, rarely-run cases, high-churn UI still in flux,
flaky / non-deterministic behavior, and cases needing human judgment.
Reject "automate everything" and "automate the flaky, frequently changing UI first" — both spend
scarce capacity on the worst-ROI candidates. Full decision rule in
references/import-and-traceability.md. Once a case graduates, the actual test code is written
with ai-test-generation or a framework skill (playwright-automation, api-testing) — not
here.
Review Hygiene
- Every case is reviewable in one screen: title states the outcome, preconditions present, steps
discrete, each expected observable, test data concrete.
- Run the lint checklist on a new case before it merges; reject non-deterministic expecteds.
- Link to the requirement at creation time, not as a back-fill.
- Tag the suite (smoke / regression / platform) so runs can filter; an untagged 400-case repo is
unusable for release selection.
Anti-Patterns
1. One vague step with a "verify it works" expected
"Test the login → verify it works" is unrunnable. Write discrete steps, one observable expected
each, explicit preconditions, concrete test data.
2. Rubber-stamping a suite when asked to lint it
Saying steps "look fine" or lightly rewording while leaving "everything works" and "wait a bit"
in place is the failure linting exists to catch. Flag every non-verifiable expected and rewrite it.
3. Cross-wiring the four tools' APIs
Bearer on Qase (it uses Token), add_case/custom_steps_separated on Qase or Zephyr,
/rest/raven/1.0/ on Xray Cloud, /v1/ on Zephyr Scale Cloud, steps as a text blob in Zephyr's
create body. Each is a 4xx or a silent wrong-field. Copy from the correct tool section.
4. One giant case for a multi-rule story
Folding "valid / expired / already-used" into one case yields a single pass/fail that hides which
rule broke. One case per rule.
5. CSV as free-form prose or a single Description column
A TestRail import without a header row mapped to importer fields needs manual remapping. Provide
Title, Section Hierarchy, Steps (Separated), Expected Result, etc.
6. Deep nesting and per-case folders
7+ level trees and one-folder-per-case make the repository unnavigable. Keep 3–4 shallow levels of
sections; platform at the top for web+mobile.
7. Traceability as a manual spreadsheet
A hand-kept sheet can't reliably answer "which stories have no tests." Use the tool's native
requirement→test link and coverage/Traceability report, and surface the uncovered requirements.
8. Automate-everything / automate-the-flaky-first
Automating one-off exploratory cases or high-churn/flaky UI first burns capacity for negative ROI.
Sequence stable high-frequency regression/smoke first.
Verification
Prove the produced artifact actually works before handing it off, smallest check first:
- Lint your own output: grep the generated cases for the banned expecteds —
grep -niE "verify it works|looks right|is fine|wait a bit|no problems|everything works" cases.*
must return nothing. Any hit is a non-deterministic expected to rewrite.
- TestRail CSV: open it and confirm a header row exists with
Title, Section Hierarchy,
Steps (Separated), Expected Result — head -1 cases.csv should show those columns, not a
single Description. Dry-run the import wizard; the wizard auto-matches columns with no manual
remapping when the headers are right.
- API payload, before the real POST: validate the JSON (
jq . payload.json exits 0) and
confirm the auth header and endpoint match the target tool's row in
Tool Payloads — Qase Token: not Authorization: Bearer, TestRail
add_case/{section_id} not add_test. A 201/test-id in the response (or a 200 with the new
case key for Zephyr) confirms the create; a 401 means the auth scheme is cross-wired, a
400 means the step field is.
- Traceability: run the tool's coverage/Traceability report and confirm it lists requirements
with 0 linked tests — an empty "uncovered" column means the links landed; a populated one is the
gap list to close.
Done When
- Each generated case has a title, preconditions, discrete steps, one observable expected result
per step, and concrete test data — no "verify it works" / "looks right" / "wait a bit" expecteds.
- A multi-rule story produced one case per rule, not one combined case.
- Any emitted API payload uses the correct tool's auth scheme, endpoint, and step-field name
(TestRail
custom_steps_separated+add_case/{section_id}; Xray two-step auth + GraphQL
createTest, Cucumber for Gherkin; Zephyr /v2 Bearer + separate /teststeps; Qase Token
header + /case/{CODE}/bulk).
- Any TestRail CSV has a header row mapping columns to importer fields (
Title,
Section Hierarchy, Steps (Separated), Expected Result).
- A linted suite returns every ambiguous step flagged and rewritten — never "no issues found"
when smells are present.
- Traceability uses the tool's native requirement→test link and a coverage report that lists the
uncovered requirements.
- Automation graduation produces an ROI-ordered list (stable + high-frequency + regression/smoke
first) and names what stays manual.
Related Skills
- ai-test-generation — go there to turn a graduated manual case into automated TEST CODE; this
skill stops at the manual/hybrid case and its import payload.
- test-planning — go there for sprint/release WHAT-to-test selection; this skill authors the
cases once the scope is decided.
- exploratory-testing — the source of one-off/charter-based cases that should stay manual;
pairs with the automation-graduation decision here.
- qa-project-context — the universal dependency: the tool, project keys, and conventions this
skill reads before generating any payload.
Reference Files (in references/)
- tool-apis.md — full TestRail / Xray Cloud / Zephyr Scale / Qase create-case payloads
(curl + GraphQL), auth flows, and the per-tool cross-wiring traps.
- linting.md — the ambiguous-step lint checklist, the worked rewrite of the four classic bad
steps, and the lint-output table format.
- import-and-traceability.md — TestRail CSV column→field mapping with a 3-case example,
suite/section organization rules, requirement traceability + coverage-gap reports, and the
automation-graduation decision rule.
1---2name: test-case-management3description: Author and maintain MANUAL and hybrid test cases and suites in TestRail, Xray (Jira), Zephyr Scale, and Qase. Covers test-case anatomy (title, preconditions, steps, expected results, test data), suite/section organization, bulk authoring from user stories and acceptance criteria, ambiguous-step linting, CSV/API import-export payloads per tool, requirement traceability and coverage gaps, review hygiene, and when a manual case should graduate to automation. Use when: "write a test case," "manual test case," "TestRail case," "Xray test," "Zephyr Scale case," "Qase case," "import CSV into TestRail," "lint these steps," "traceability report," "should this be automated." Not for: Generating automated TEST CODE — that is ai-test-generation. Sprint-level WHAT-to-test selection — that is test-planning. Related: ai-test-generation, test-planning, exploratory-testing, qa-project-context.4license: MIT5---6
7<objective>
8A manual test case that says "test the login" with expected result "verify it works" passes
9every review and catches nothing — two testers run it differently and neither can say whether
10it failed. This skill produces deterministic cases (discrete steps, one observable expected
11result each, concrete test data), organizes them into navigable suites, and emits the
12tool-correct API/CSV payloads for TestRail, Xray Cloud, Zephyr Scale, and Qase — whose
13look-alike APIs use different auth schemes, endpoints, and step-field names that agents
14routinely cross-wire.
15</objective>
16
17## Quick Route
18
19| Request | Go to |
20|---------|-------|
21| Write one well-formed case from an AC | [Test-Case Anatomy](#test-case-anatomy) |
22| Bulk-generate cases from a story | [Bulk Authoring](#bulk-authoring-from-stories) + tool section |
23| "Lint these steps / are these verifiable?" | [Ambiguous-Step Linting](#ambiguous-step-linting) + `references/linting.md` |
24| TestRail / Xray / Zephyr / Qase API payload | [Tool Payloads](#tool-payloads) + `references/tool-apis.md` |
25| CSV to import into TestRail | `references/import-and-traceability.md` (CSV section) |
26| Organize suites/sections | `references/import-and-traceability.md` (organization) |
27| Requirements ↔ tests, coverage gaps | [Traceability](#traceability) + `references/import-and-traceability.md` |
28| Manual → automation decision | [Automation Graduation](#automation-graduation) |
29
30## Discovery Questions
31
32First, check `.agents/qa-project-context.md` in the project root for the tool, project keys,
33and conventions; skip anything answered there. If it's missing, suggest creating one with the
34`qa-project-context` skill. Then clarify:
35
36- **Which tool — TestRail, Xray, Zephyr Scale, or Qase?** Each has a different API auth scheme,
37 endpoint shape, and step-field name. Getting this wrong produces payloads that 401 or 400.
38- **TestRail only: single-repository mode or multiple suites?** Changes whether cases live under
39 sections in one suite or in separate suites — affects every `section_id` and the org plan.
40- **Xray/Zephyr only: Jira Cloud or Server/DC?** Cloud and Server use different base paths and
41 auth. This skill targets Cloud; Server uses different endpoints.
42- **Source of the cases — acceptance criteria, a user story, a free-form feature?** Drives how
43 many cases to generate and how to split rules.
44- **Do you need requirement traceability?** If yes, capture the Jira/requirement issue keys now
45 so cases link on creation rather than being back-filled.
46
47---
48
49## Core Principles
50
511. **An expected result must be deterministically checkable.** A second human (or a machine)
52 must be able to agree on pass/fail without guessing. "Works", "looks right", "is fine",
53 "wait a bit" fail this test. Name an exact value, a named element and its state, a specific
54 message, a status code, a count, or a time-bounded condition.
55
562. **One assertion per step.** Each step has a single expected result. Cramming three checks
57 into one step makes a failure ambiguous about which check broke and which to re-run.
58
593. **One case per business rule, not one giant case.** "Valid code reduces total / expired code
60 errors / used code rejected" is three cases with three independent pass/fail verdicts — not
61 one case with a paragraph of expecteds.
62
634. **The tool's API is the spec — don't cross-wire the four tools.** TestRail's
64 `custom_steps_separated`, Qase's `Token` header, Xray's two-step GraphQL auth, and Zephyr's
65 separate `teststeps` call are NOT interchangeable. Copy from the right tool's section.
66
675. **Traceability exists to surface what is NOT covered.** The deliverable is the list of
68 requirements with zero linked tests, from a native coverage report — not a spreadsheet that
69 rots and not "every test links to something."
70
716. **Automate by ROI, not by volume.** Limited capacity means stable, high-frequency,
72 regression/smoke cases graduate first; exploratory, one-off, and high-churn/flaky cases stay
73 manual. "Automate everything" wastes capacity on the worst candidates.
74
75---
76
77## Test-Case Anatomy
78
79A well-formed manual case has five parts. Every part is mandatory; a case missing preconditions
80or test data is not reproducible.
81
82| Part | What it holds | Failure if omitted |
83|------|---------------|--------------------|
84| **Title** | Feature — scenario — expected outcome, one line | Unsearchable, duplicated |
85| **Preconditions** | State the test assumes (account exists, on page X, flag on) | Tester guesses setup; flaky |
86| **Steps** | Discrete actions, one action per step | Non-reproducible |
87| **Expected Results** | One observable post-condition per step | Not verifiable |
88| **Test Data** | Concrete values used (codes, emails, counts, timings) | Not repeatable |
89
90**BAD** (single vague step, non-verifiable expected, no preconditions, no data):
91
92```
93Title: Login test
94Steps: Test the login.
95Expected: Verify it works.
96```
97
98**GOOD** — from the AC "after 5 wrong-password attempts, the account locks for 15 minutes":
99
100```
101Title: Login — account locks for 15 minutes after 5 failed attempts
102Preconditions: A registered account exists for user@example.com. The user is logged out
103 on the /login page. Lockout policy: 5 attempts, 15-minute lockout.
104Test Data: email user@example.com, wrong password "WrongPass!", correct password "Passw0rd!"
105Steps (one assertion per step / single expected result each):
106 1. Action: Submit the login form with user@example.com and "WrongPass!".
107 Expected: Error "Invalid email or password." shows; the failed-attempt count is now 1.
108 2. Action: Repeat the wrong-password submit until 5 failed attempts total.
109 Expected: On the 5th failure the account is locked; message reads
110 "Account locked. Try again in 15 minutes."
111 3. Action: Immediately submit with the CORRECT password "Passw0rd!".
112 Expected: Login is still blocked; the same lockout message is shown (lockout overrides
113 valid credentials).
114 4. Action: Wait 15 minutes, then submit with the correct password.
115 Expected: Login succeeds and the dashboard loads.
116```
117
118Note: explicit preconditions, concrete test data (5 attempts, 15-minute lockout), discrete
119steps, and a single deterministic expected result per step.
120
121---
122
123## Bulk Authoring from Stories
124
125Given a story or set of acceptance criteria, split into cases by rule, then generate the
126tool-specific payload. Worked example for the discount-code story (valid reduces total / expired
127errors / already-used rejected) → **three** cases:
128
1291. Apply a valid code → total reduces (happy path).
1302. Apply an expired (invalid) code → inline error, total unchanged.
1313. Apply an already-used / already-redeemed code → rejected, total unchanged.
132
133Add the obvious negatives the story implies but doesn't state (empty code, malformed code) when
134the team wants edge coverage. Each case gets discrete steps and one expected per step — never one
135giant case covering all three rules. For the WHAT-to-test scope decision across a sprint, that's
136`test-planning`, not this skill.
137
138---
139
140## Ambiguous-Step Linting
141
142When asked to "lint" a suite, your job is to FLAG non-deterministic steps and rewrite them — NOT
143to agree that they "look fine." The agreeable failure mode (rubber-stamping "everything works")
144is the exact thing this section prevents.
145
146A step is bad when its expected result is not deterministically verifiable. Flag any of:
147
148- **Vague action** — "click around", "test the X", "play with it" → name the exact element + action.
149- **Vague data** — "some data", "a value", "stuff" → give concrete test data.
150- **Non-observable expected** — "everything works", "it looks right", "is fine", "no problems"
151 → name the exact observable result.
152- **Unbounded wait** — "wait a bit", "after a while" → bound it ("within 10 s" / "until the
153 spinner disappears and a row appears").
154- **Multiple assertions in one step** → split to one assertion per step.
155
156For the classic four-step bad suite ("app opens / everything works / it looks right / the report
157is ready"), all four are ambiguous and must be flagged and rewritten with explicit selectors,
158exact values, and bounded conditions — never returned as "no issues found". The full lint
159checklist, the worked rewrite of those four steps, and the lint-output table format are in
160`references/linting.md`.
161
162---
163
164## Tool Payloads
165
166The four tools are easy to cross-wire. Summary — full curl/GraphQL bodies in
167`references/tool-apis.md`:
168
169| Tool | Auth | Create endpoint | Steps field |
170|------|------|-----------------|-------------|
171| **TestRail** | Basic `email:api_key` | `POST add_case/{section_id}` | `custom_steps_separated` array of `{content, expected}` |
172| **Xray Cloud** | `POST /api/v2/authenticate` → Bearer token | GraphQL `createTest` at `/api/v2/graphql` | `steps[] {action, result}`; Gherkin → `testType: Cucumber` + `gherkin` |
173| **Zephyr Scale Cloud** | `Authorization: Bearer <JWT>` | `POST /v2/testcases` then `POST /v2/testcases/{key}/teststeps` | separate `teststeps` call, `inline {description, expectedResult, testData}` |
174| **Qase** | header `Token: <key>` | `POST /v1/case/{CODE}/bulk` | `steps[] {action, expected_result, data}` |
175
176Tool-specific traps that the reference spells out and you must respect:
177
178- **TestRail** — separated steps need `custom_steps_separated` (NOT the plain `custom_steps` text
179 blob); the endpoint is `add_case/{section_id}` (NOT `add_test`, which is a run instance). Base
180 is `{instance}/index.php?/api/v2`. Don't use a Qase-style `POST /case`.
181- **Xray Cloud** — authenticate first (`/api/v2/authenticate` with client_id/client_secret →
182 bearer, 24h), then prefer **GraphQL** `createTest`. Import Gherkin as a **Cucumber** test, not
183 a Generic one. Avoid the deprecated Cloud path `/rest/raven/1.0/...` and Server-style REST and
184 Jira username/password basic auth.
185- **Zephyr Scale Cloud** — base is `api.zephyrscale.smartbear.com/v2` with JWT Bearer. Steps are a
186 SEPARATE `/testcases/{key}/teststeps` call, not a text blob in the create body. Don't emit `/v1/`,
187 the wrong host, or Qase's `Token` header.
188- **Qase** — auth is `Token: <key>`, NOT `Authorization: Bearer`. Use `POST /case/{CODE}/bulk`
189 with a `cases` array instead of N single POSTs. Don't use TestRail's `add_case` /
190 `custom_steps_separated`.
191
192CSV import for TestRail (header row mapped to importer fields: `Title`, `Section Hierarchy`,
193`Steps (Separated)`, `Expected Result`, `Priority`, `Type`, `Preconditions`) is in
194`references/import-and-traceability.md` — use a real CSV with a header row, never free-form prose
195or a single Description column, and never JSON when CSV was requested.
196
197---
198
199## Organization
200
201Use **sections and subsections** for hierarchy, kept **shallow** (3–4 levels). For a web + mobile
202product the default is **single-repository mode** with top-level sections per platform
203(`Web`, `Mobile (iOS)`, `Mobile (Android)`, `Shared / API`), feature sections beneath. Split into
204**multiple suites** only when platforms are owned by separate teams with separate cadences.
205
206Avoid: one folder per test case, deep nesting 7+ levels deep, dumping every case in the root
207section, and duplicating the same case across suites (keep one source of truth). The
208single-repository vs multiple-suites trade-off and the full org rules are in
209`references/import-and-traceability.md`.
210
211---
212
213## Traceability
214
215Goal: a coverage report that shows which **stories have no tests** — the uncovered requirements.
216
217For **Xray on Jira**: from each Test, add the native **"tests" issue link** to the requirement's
218Jira issue key (NOT to a Test Execution — that records runs, not coverage). Read per-story
219coverage from the Story's Test Coverage panel, and project-wide from the **Traceability Report /
220Requirement Coverage report**. Then filter for requirements with **0 linked tests** — those are
221the gaps to close. Do not propose a manual spreadsheet as the only traceability mechanism, and do
222not ignore uncovered requirements. Zephyr Scale, Qase, and TestRail equivalents (issue links +
223their coverage/traceability views) are in `references/import-and-traceability.md`.
224
225---
226
227## Automation Graduation
228
229Score each manual case by ROI: `value ≈ run_frequency × regression_importance ÷ (automation_cost
230× expected_maintenance)`. With limited capacity (e.g. a 400-case Zephyr Scale backlog):
231
232- **Automate first:** high-frequency cases (run every release / regression / smoke), on stable /
233 low-churn / deterministic features, that guard critical regression or smoke paths.
234- **Stay manual:** exploratory or one-off cases, rarely-run cases, high-churn UI still in flux,
235 flaky / non-deterministic behavior, and cases needing human judgment.
236
237Reject "automate everything" and "automate the flaky, frequently changing UI first" — both spend
238scarce capacity on the worst-ROI candidates. Full decision rule in
239`references/import-and-traceability.md`. Once a case graduates, the actual test code is written
240with `ai-test-generation` or a framework skill (`playwright-automation`, `api-testing`) — not
241here.
242
243---
244
245## Review Hygiene
246
247- Every case is reviewable in one screen: title states the outcome, preconditions present, steps
248 discrete, each expected observable, test data concrete.
249- Run the lint checklist on a new case before it merges; reject non-deterministic expecteds.
250- Link to the requirement at creation time, not as a back-fill.
251- Tag the suite (smoke / regression / platform) so runs can filter; an untagged 400-case repo is
252 unusable for release selection.
253
254---
255
256## Anti-Patterns
257
258### 1. One vague step with a "verify it works" expected
259"Test the login → verify it works" is unrunnable. Write discrete steps, one observable expected
260each, explicit preconditions, concrete test data.
261
262### 2. Rubber-stamping a suite when asked to lint it
263Saying steps "look fine" or lightly rewording while leaving "everything works" and "wait a bit"
264in place is the failure linting exists to catch. Flag every non-verifiable expected and rewrite it.
265
266### 3. Cross-wiring the four tools' APIs
267Bearer on Qase (it uses `Token`), `add_case`/`custom_steps_separated` on Qase or Zephyr,
268`/rest/raven/1.0/` on Xray Cloud, `/v1/` on Zephyr Scale Cloud, steps as a text blob in Zephyr's
269create body. Each is a 4xx or a silent wrong-field. Copy from the correct tool section.
270
271### 4. One giant case for a multi-rule story
272Folding "valid / expired / already-used" into one case yields a single pass/fail that hides which
273rule broke. One case per rule.
274
275### 5. CSV as free-form prose or a single Description column
276A TestRail import without a header row mapped to importer fields needs manual remapping. Provide
277`Title`, `Section Hierarchy`, `Steps (Separated)`, `Expected Result`, etc.
278
279### 6. Deep nesting and per-case folders
2807+ level trees and one-folder-per-case make the repository unnavigable. Keep 3–4 shallow levels of
281sections; platform at the top for web+mobile.
282
283### 7. Traceability as a manual spreadsheet
284A hand-kept sheet can't reliably answer "which stories have no tests." Use the tool's native
285requirement→test link and coverage/Traceability report, and surface the uncovered requirements.
286
287### 8. Automate-everything / automate-the-flaky-first
288Automating one-off exploratory cases or high-churn/flaky UI first burns capacity for negative ROI.
289Sequence stable high-frequency regression/smoke first.
290
291---
292
293## Verification
294
295Prove the produced artifact actually works before handing it off, smallest check first:
296
297- **Lint your own output:** grep the generated cases for the banned expecteds —
298 `grep -niE "verify it works|looks right|is fine|wait a bit|no problems|everything works" cases.*`
299 must return nothing. Any hit is a non-deterministic expected to rewrite.
300- **TestRail CSV:** open it and confirm a header row exists with `Title`, `Section Hierarchy`,
301 `Steps (Separated)`, `Expected Result` — `head -1 cases.csv` should show those columns, not a
302 single `Description`. Dry-run the import wizard; the wizard auto-matches columns with no manual
303 remapping when the headers are right.
304- **API payload, before the real POST:** validate the JSON (`jq . payload.json` exits 0) and
305 confirm the auth header and endpoint match the target tool's row in
306 [Tool Payloads](#tool-payloads) — Qase `Token:` not `Authorization: Bearer`, TestRail
307 `add_case/{section_id}` not `add_test`. A `201`/test-id in the response (or a `200` with the new
308 case `key` for Zephyr) confirms the create; a `401` means the auth scheme is cross-wired, a
309 `400` means the step field is.
310- **Traceability:** run the tool's coverage/Traceability report and confirm it lists requirements
311 with 0 linked tests — an empty "uncovered" column means the links landed; a populated one is the
312 gap list to close.
313
314---
315
316## Done When
317
318- Each generated case has a title, preconditions, discrete steps, one observable expected result
319 per step, and concrete test data — no "verify it works" / "looks right" / "wait a bit" expecteds.
320- A multi-rule story produced one case per rule, not one combined case.
321- Any emitted API payload uses the correct tool's auth scheme, endpoint, and step-field name
322 (TestRail `custom_steps_separated`+`add_case/{section_id}`; Xray two-step auth + GraphQL
323 `createTest`, Cucumber for Gherkin; Zephyr `/v2` Bearer + separate `/teststeps`; Qase `Token`
324 header + `/case/{CODE}/bulk`).
325- Any TestRail CSV has a header row mapping columns to importer fields (`Title`,
326 `Section Hierarchy`, `Steps (Separated)`, `Expected Result`).
327- A linted suite returns every ambiguous step flagged and rewritten — never "no issues found"
328 when smells are present.
329- Traceability uses the tool's native requirement→test link and a coverage report that lists the
330 uncovered requirements.
331- Automation graduation produces an ROI-ordered list (stable + high-frequency + regression/smoke
332 first) and names what stays manual.
333
334---
335
336## Related Skills
337
338- **ai-test-generation** — go there to turn a graduated manual case into automated TEST CODE; this
339 skill stops at the manual/hybrid case and its import payload.
340- **test-planning** — go there for sprint/release WHAT-to-test selection; this skill authors the
341 cases once the scope is decided.
342- **exploratory-testing** — the source of one-off/charter-based cases that should stay manual;
343 pairs with the automation-graduation decision here.
344- **qa-project-context** — the universal dependency: the tool, project keys, and conventions this
345 skill reads before generating any payload.
346
347---
348
349## Reference Files (in `references/`)
350
351- **tool-apis.md** — full TestRail / Xray Cloud / Zephyr Scale / Qase create-case payloads
352 (curl + GraphQL), auth flows, and the per-tool cross-wiring traps.
353- **linting.md** — the ambiguous-step lint checklist, the worked rewrite of the four classic bad
354 steps, and the lint-output table format.
355- **import-and-traceability.md** — TestRail CSV column→field mapping with a 3-case example,
356 suite/section organization rules, requirement traceability + coverage-gap reports, and the
357 automation-graduation decision rule.