# Test Runner

> Use when deciding how to validate a change with the smallest reliable local test or check.

- Skill: `davidondrej/test-runner` (Agent Skill)
- Install (CLI): `npx skillmds@latest add davidondrej/test-runner`
- Raw SKILL.md: https://api.skillmd.com/api/skills/davidondrej/test-runner/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: David Ondrej (https://skillmd.com/u/davidondrej)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/davidondrej/test-runner

---


# Test Runner

Use this skill after implementation or before risky refactors.

## Steps

1. Inspect project files for test commands.
2. Prefer targeted tests over full suites for narrow changes.
3. Run formatting or lint checks when they directly cover the edited files.
4. Record the exact commands and results.
5. If a test cannot run, state why and what remains unverified.

## Notes

Do not invent test coverage.
Validation should match the risk of the change.


