Install
$ agentstack add skill-katalon-labs-true-skills-katalon-create-test-cases ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Katalon Create Test Cases
Use this skill for the test design and import portion of Katalon True Platform work. Keep the larger katalon-trueplatform-testing skill available as the end-to-end orchestrator; this skill is only the focused create/update/link workflow.
Availability Boundary
State the Katalon MCP boundary before promising writes:
- Available: list projects/repositories, find/read requirements, create/read/update/move test cases, find/manage folders, find/read/manage test suites, and link requirements to test cases.
- Not directly available: create requirements, create a formal Test Plan entity, inspect the live AUT UI, or guarantee downstream AI execution.
- Workaround for a test plan: create or reuse a named test suite/folder as the executable planning structure.
Read references/capability-boundaries.md when the user asks whether Katalon can do a specific operation.
Resolve Context First
Before mutating Katalon data:
- Call
list_projects. - Call
list_repositories. - Resolve the repository/Test Project from the user's wording, requirement key, or unique available repository.
Rules:
- Treat repository and Test Project as the same resolution target.
- If exactly one repository exists, use it.
- If multiple equally plausible repositories remain, ask the user to choose.
- If the user says "Katalon Cloud" or "cloud repo", prefer a repository named
Katalon Cloudwhen present. - Do not scan every repository just to avoid asking.
Analyze Requirement
If the user provides a requirement key, use find_requirements or read_requirement. If the user provides free text, analyze it locally and only link requirements when a real requirement ID is known.
Output or internally track:
- Requirement intent
- Personas
- Main flows
- Alternate and negative flows
- Data and environment assumptions
- Risk areas
- Coverage recommendations
Read references/requirement-analysis.md before analyzing non-trivial requirements.
Design Coverage
Design manual cases using ISTQB techniques as a reference for coverage (the techniques guide the design; the deliverable is plain platform test cases, not an ISTQB certification):
- Equivalence partitioning for input classes, statuses, roles, filters, and product states.
- Boundary value analysis for ranges, quantities, prices, dates, pagination, and text lengths.
- Decision tables for business rules with multiple conditions.
- State transitions for lifecycle flows such as cart, checkout, status, and execution.
- Use-case scenarios for realistic end-to-end user journeys.
- Error guessing for ecommerce, account, permissions, environment, and data risks.
Make each case atomic
Each test case targets one validation condition (one acceptance-criteria line) — but it must still be a complete, independently runnable flow, not a single bare assertion.
- "Atomic" describes the scope under test (one rule per case), not the step count. Every case walks the real path to that condition: precondition/navigation -> enter the surrounding valid data -> perform the action under test -> verify the expected result. A case that is a lone step like "count the columns" is too thin; lead with the steps to reach and exercise that state so the case runs on its own (and so Run with AI can execute it).
- Split each input class, each required field, each boundary value, and each error message into its own case. Example: a password rule of "min 8 chars, has a letter, has a number, no spaces" becomes separate cases for too-short (7), exactly-8 valid, letters-only, numbers-only, and contains-space — each one a full fill-the-form-and-submit flow, differing only in the field under test.
- Cover both the happy-path flow and its edge cases. For every feature, include at least the main success flow plus the boundary and negative variants around it; do not stop at the positive path.
- Reserve genuinely combined multi-feature cases for true end-to-end scenarios (e.g. register -> log in -> land on dashboard), never as a container for unrelated checks.
- Why: a case mixing several conditions fails as a whole, so the result cannot tell you which rule broke and you lose 1 requirement-line -> 1 test-result traceability. Atomic-scope cases pinpoint the failing rule and map cleanly back to the requirement.
- Quote expected error and UI strings verbatim from the requirement, including any source typos. Flag suspected typos separately; never silently "correct" them in the expected result, or the test will assert behavior the app does not produce.
Read references/istqb-coverage.md before creating cases from requirements, and references/manual-test-case-format.md before importing several cases.
Platform Constraints
- Test case names accept only letters, numbers, spaces, and
( ) . , _ -. Avoid other symbols (such as@,:,/) in titles; keep them in descriptions or steps instead. Folder paths may use/. - Prefer
update_test_caseover delete-and-recreate when adjusting an existing set. Deletion can fail server-side, and updating in place keeps IDs, links, and history intact.
Check Existing Cases
This step is mandatory before every create/import attempt, including retries after partial failure:
- If requirement IDs are known, call
find_test_cases_by_requirement. - Search by requirement key, title keywords, feature area, and target folder with
find_test_cases. - Read likely matches with
read_test_casewhen the title alone is not enough to judge coverage. - Reuse, update, move, or link existing cases when they already cover the behavior.
- Create new cases only for uncovered behavior, missing coverage classes, or clearly obsolete/incorrect cases.
Never create a duplicate just because a previous create call failed.
Create Or Update Cases
Use Katalon tools in this order:
create_test_caseonly for uncovered manual cases.update_test_casefor revisions, passing all intended updates in one call.link_requirements_to_test_caseonly after requirement IDs are known.read_test_caseafter creation or update when verification matters.manage_test_folderormove_test_caseonly when organization is requested or clearly needed.
Use this manual case shape:
- Title
- Description
- Pre-condition
- Steps
- Expected results
- Test data
- Priority
- Requirement links
Test Suite Handling
When the user asks to create a test suite/test plan from the cases:
- Search existing suites with
find_test_suitesbefore creating anything. - Read likely matching suites with
read_test_suite. - Reuse the matching suite and add missing cases instead of creating a duplicate.
- Create a new suite with
manage_test_suiteonly when no suitable suite exists. - Verify the final suite with
read_test_suite.
Report what was reused, updated, newly created, linked, and left uncovered.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: katalon-labs
- Source: katalon-labs/true-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.