AI skills for test management workflows with Testomat.io. These skills bring the power of AI coding agents to your testing process — design tests, automate them, review quality, track coverage, and sync everything with your test management system.
npx skills add testomatio/skills
| Skill | Description |
|---|---|
generate-test-cases |
Generate test cases and checklists from requirements, tickets, or feature descriptions |
improve-test-cases |
Analyze and improve existing markdown test cases for clarity |
find-duplicate-cases |
Find duplicate, near-duplicate, and overlapping test cases |
sync-cases |
Synchronize Markdown test scenarios between local project and Testomat.io |
testomatio-flow |
Orchestrate complete test case lifecycle: generate, improve, analyze coverage, upload to TMS |
| Skill | Description |
|---|---|
reporter-setup |
Set up Testomat.io test reporting for your automation framework (Playwright, CodeceptJS, Jest, etc.) |
The easiest way to install these skills across any supported AI agent (Cursor, Claude Code, GitHub Copilot, Cline, agentic tools, etc.) is using the skills CLI. It provides an interactive menu to select the skills you need and choose whether to install them globally or for your current project.
npx skills add testomatio/skillsTo update your installed skills later:
npx skills updateFor better skills management you can use Claude Code plugin marketplace.
Follow instructions to install plugins.
Easiest way to install skills for Codex is to chat with Codex and ask something like:
install skills from https://github.com/testomatio/skills/tree/master/skills
or trigger Skill Installer in Codex chat and provide the same link https://github.com/testomatio/skills/tree/master/skills.
For other ways of installation see installation details.
testomatio/skills
├── skills/ # Agent-agnostic skills (canonical source)
│ ├── find-duplicate-cases/
│ ├── generate-test-cases/
│ ├── improve-test-cases/
│ ├── reporter-setup/
│ ├── sync-cases/
│ └── ...
└── plugins/ # Claude Code plugin wrappers
├── test-management/
│ └── skills/
│ └── [symlinks to ../../skills/*]
├── test-automation/
│ └── skills/
│ └── [symlinks to ../../skills/*]
└── ...