test-runner

Detect test frameworks and generate, run, and report automated tests.

4|1|Updated Feb 12, 2026
One-click install
npx skills add https://github.com/0xjc65eth/CYPHER-V3 --skill test-runner-0xjc65eth
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test-runner
Source: https://github.com/0xjc65eth/CYPHER-V3/tree/main/skills/test-runner
Command: npx skills add https://github.com/0xjc65eth/CYPHER-V3 --skill test-runner-0xjc65eth

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Automates the tedious and error-prone process of creating, running, and validating tests across projects by detecting the existing test framework, generating appropriate tests, and executing them to surface regressions and bugs quickly.

Core Features & Use Cases

  • Framework detection: Automatically detect common test frameworks (jest, pytest, vitest, go test) used in the repository.
  • Test generation: Create unit and integration tests that cover happy paths, edge cases, and expected error conditions based on code contracts.
  • Execution and validation: Run the generated tests within the project's framework, report failures, and suggest whether to correct tests or source code.
  • Use Case: When a developer wants coverage for a newly added module, instruct the skill to analyze the module, produce meaningful tests, and run them to verify behavior.

Quick Start

Ask the test-runner to detect the project's test framework, generate comprehensive tests for the target file or module, and execute them.

Frequently Asked Questions about test-runner

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I generate and run automated tests for my project source code?

Automated test generation analyzes project source code to produce deterministic unit and integration tests covering happy paths, edge cases, and expected errors, then executes them within your existing framework to report failures and suggest fixes.

Does automated test generation work with my existing testing frameworks?

Yes, automated test generation detects and operates on repositories using existing test frameworks such as jest, pytest, vitest, or go test to produce and execute tests without requiring new infrastructure.

What is the best way to add test coverage for a newly added module?

The best way to add module coverage is to analyze the target file's code contracts, generate meaningful unit and integration tests covering edge cases, and run the test suite to verify behavior and surface regressions quickly.

How does framework detection work when generating unit tests?

Framework detection automatically identifies common test frameworks like jest, pytest, vitest, or go test within your repository to ensure the generated tests match your project's existing testing infrastructure and execution environment.

What happens when generated tests fail during execution?

When generated tests fail during execution, the test suite reports the failures with detailed information and suggests whether to correct the generated tests or the underlying source code to resolve the issue.