Claude Code Plugins

Community-maintained marketplace

Feedback

|

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name find-tests
description Find existing tests related to source files. Maps source files to their test counterparts. Use when working on development tasks.
metadata [object Object]

Find Tests

Find existing tests related to source files.

Inputs

Parameter Type Required Default Description
source_files array Yes - List of source file paths
repo_path string Yes - Repository root path
test_patterns array No ['tests/test_*.py', 'tests/**/test_*.py', '*_test.py'] Custom test file patterns

Outputs

Field Type Description
test_mapping object Map of source file to test files
untested_files array Source files without tests
test_frameworks array Detected test frameworks (pytest, jest, etc.)

Usage

python scripts/find-tests.py [arguments]

Examples

Find tests for a Python module

Inputs:

repo_path: /path/to/repo
source_files:
- src/auth/login.py

Outputs:

test_frameworks:
- pytest
test_mapping:
  src/auth/login.py:
  - tests/auth/test_login.py
untested_files: []

Generated from `skills/development/find-tests.yaml`