test-quick

Installation
SKILL.md
Contains Shell Commands

This skill contains shell command directives (!`command`) that may execute system commands. Review carefully before installing.

When to Use This Skill

Use this skill when... Use test-full instead when...
Running unit tests only for sub-30s feedback Running the full pyramid (unit + integration + E2E) before a PR
Restricting to tests affected by recent changes (--affected) Generating coverage or HTML reports across all tiers
Running watch-mode TDD on unit tests Iterating on a single failing file (use test-focus)
Confirming nothing broke after a small refactor Triaging test results from a prior run (use test-analyze)

Context

  • Project type: !find . -maxdepth 1 \( -name 'pyproject.toml' -o -name 'package.json' -o -name 'Cargo.toml' -o -name 'go.mod' \)
  • Test directories: !find . -maxdepth 2 -type d \( -path '*/tests/unit' -o -path '*/test/unit' -o -path '*/__tests__/unit' \)
  • Last test run: !find . -path '*/.pytest_cache/v/cache/*' -maxdepth 4 -name 'lastfailed'

Parameters

Installs
51
GitHub Stars
47
First Seen
Feb 9, 2026
test-quick — laurigates/claude-plugins