smithery.ai

test-runner

Runs tests and explains results. Use when user asks to run tests, check tests, or verify code works.

First seen Mar 21, 2026

Installation

$ npx skills add https://smithery.ai

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery.ai · top by installs.

npx skills add https://smithery.ai

Browse all from smithery.ai

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 863 B
  • docs SUMMARY.md 119 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 5 installs

SKILL.md

Test Runner Skill

Instructions

When user asks to run tests:

  1. Find test files using Glob tool
  2. Run tests using Bash tool
  3. Analyze results and explain failures
  4. Suggest fixes if tests fail

Steps to Follow

Step 1: Discover Tests

Use Glob to find: **/*test*.py, **/*.test.js, **/*.spec.ts

Step 2: Run Tests

# Python
pytest -v

# JavaScript
npm test

# Go
go test ./...

Step 3: Analyze Output

  • Count passed/failed
  • Identify failure reasons
  • Show relevant code snippets

Step 4: Report Format

## Test Results

✅ Passed: X
❌ Failed: Y

### Failures
[List each failure with explanation]

### Suggested Fixes
[Actionable fixes for failures]