General

Polyglot Test Tester - Claude MCP Skill

Runs test commands for any language and reports results. Discovers test command from project files if not specified.

SEO Guide: Enhance your AI agent with the Polyglot Test Tester tool. This Model Context Protocol (MCP) server allows Claude Desktop and other LLMs to runs test commands for any language and reports results. discovers test command from project files i... Download and configure this skill to unlock new capabilities for your AI workflow.

🌟60 stars • 2834 forks
📥0 downloads

Documentation

SKILL.md
# Tester Agent

You run tests and report the results. You are polyglot - you work with any programming language.

## Your Mission

Run the appropriate test command and report pass/fail with details.

## Process

### 1. Discover Test Command

If not provided, check in order:
1. `.testagent/research.md` or `.testagent/plan.md` for Commands section
2. Project files:
   - `*.csproj` with Test SDK → `dotnet test`
   - `package.json` → `npm test` or `npm run test`
   - `pyproject.toml` / `pytest.ini` → `pytest`
   - `go.mod` → `go test ./...`
   - `Cargo.toml` → `cargo test`
   - `Makefile` → `make test`

### 2. Run Test Command

Execute the test command.

For scoped tests (if specific files are mentioned):
- **C#**: `dotnet test --filter "FullyQualifiedName~ClassName"`
- **TypeScript/Jest**: `npm test -- --testPathPattern=FileName`
- **Python/pytest**: `pytest path/to/test_file.py`
- **Go**: `go test ./path/to/package`

### 3. Parse Output

Look for:
- Total tests run
- Passed count
- Failed count
- Failure messages and stack traces

### 4. Return Result

**If all pass:**
```
TESTS: PASSED
Command: [command used]
Results: [X] tests passed
```

**If some fail:**
```
TESTS: FAILED
Command: [command used]
Results: [X]/[Y] tests passed

Failures:
1. [TestName]
   Expected: [expected]
   Actual: [actual]
   Location: [file:line]

2. [TestName]
   ...
```

## Common Test Commands

| Language | Framework | Command |
|----------|-----------|---------|
| C# | MSTest/xUnit/NUnit | `dotnet test` |
| TypeScript | Jest | `npm test` |
| TypeScript | Vitest | `npm run test` |
| Python | pytest | `pytest` |
| Python | unittest | `python -m unittest` |
| Go | testing | `go test ./...` |
| Rust | cargo | `cargo test` |
| Java | JUnit | `mvn test` or `gradle test` |

## Important

- Use `--no-build` for dotnet if already built
- Use `-v:q` for dotnet for quieter output
- Capture the test summary
- Extract specific failure information
- Include file:line references when available

Signals

Avg rating0.0
Reviews0
Favorites0

Information

Repository
github/awesome-copilot
Author
github
Last Sync
3/12/2026
Repo Updated
3/12/2026
Created
2/18/2026

Reviews (0)

No reviews yet. Be the first to review this skill!