caselylisted
Install: claude install-skill aiskillstore/marketplace
# Casely — QA Test Case Generator
Casely automates the most time-consuming part of a QA engineer's job: writing test cases.
It reads requirement documents and learns from your team's existing test case examples to produce
structured, style-consistent test suites ready for import into any Test Management System.
## Why this matters
Manual test case writing accounts for ~40% of a QA engineer's time. Requirements come in
fragmented formats (PDF, DOCX, XLSX). Every team has its own column structure, naming conventions,
and writing style. Casely solves this by:
- Converting any document format to clean Markdown via `docling`.
- Extracting formal style rules from your team's example test cases.
- Generating test cases that match your team's exact structure and tone.
- Exporting to Excel with correct column mapping for TMS import.
---
## Commands
### `/init [ProjectName]`
Creates a new isolated project workspace and verifies the environment.
### `/parse`
Runs the CaselyParser to convert all raw assets (requirements and examples) to Markdown.
### `/style`
Analyzes example test cases and generates a persistent `test_style_guide.md`.
### `/plan`
Scans parsed requirements and suggests a testing plan with modules and test types.
### `/generate [type]`
Generates atomic test cases of the specified type (functional, negative, integration, boundary, etc.).
### `/export`
Converts generated Markdown test cases into a formatted `.xlsx` file.
---
## Full Workflow
### Phase 1: Proj