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.
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
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!
Related Skills
upgrade-nodejs
Upgrading Bun's Self-Reported Node.js Version
cursorrules
CrewAI Development Rules
CLAUDE
CLAUDE.md
fastmcp-client-cli
Query and invoke tools on MCP servers using fastmcp list and fastmcp call. Use when you need to discover what tools a server offers, call tools, or integrate MCP servers into workflows.
Related Guides
Python Django Best Practices: A Comprehensive Guide to the Claude Skill
Learn how to use the python django best practices Claude skill. Complete guide with installation instructions and examples.
Mastering Python and TypeScript Development with the Claude Skill Guide
Learn how to use the python typescript guide Claude skill. Complete guide with installation instructions and examples.
Mastering Data Science with Claude: A Complete Guide to the Pandas Scikit-Learn Skill
Learn how to use the pandas scikit learn guide Claude skill. Complete guide with installation instructions and examples.