Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    gonsoomoon-ml

    test-runner

    gonsoomoon-ml/test-runner
    Coding
    1 installs

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

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

    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]
    
    Recommended Servers
    Codeinterpreter
    Codeinterpreter
    Postman
    Postman
    Google BigQuery
    Google BigQuery
    Repository
    gonsoomoon-ml/self-study-generative-ai
    Files