test

Run full or specific software tests and report PASS/FAIL summaries.

6|Updated Feb 7, 2026
One-click install
npx skills add https://github.com/opmau/claude-code-framework --skill test-opmau
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: test
Source: https://github.com/opmau/claude-code-framework/tree/main/templates/.claude/skills/test
Command: npx skills add https://github.com/opmau/claude-code-framework --skill test-opmau

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Running tests can be time-consuming and error-prone when done manually; this skill automates test execution, collects results, and standardizes reporting to speed up feedback loops.

Core Features & Use Cases

  • Run the full test suite or a specific test name/module when ARGUMENTS are provided.
  • Parse test output to produce a concise PASS/FAIL summary with counts and a list of failures.
  • Provide deterministic results before commits and during development to catch regressions early.

Quick Start

Invoke the test skill with an optional test-name argument to run a specific test, or omit the argument to run the full suite.

Frequently Asked Questions about test

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

FAQPage Schema
How do I automate test execution and report pass fail results for my project?

Automate test execution by invoking the skill to run your full test suite or specific module, parsing output to report pass fail counts and failure details without attempting automatic fixes.

Can I run a specific test name instead of the full test suite during development?

Yes, provide the specific test name or module as an argument to run targeted tests during development, or omit arguments to execute the full test suite for comprehensive results.

What is the best way to get deterministic test results before a commit?

Run automated tests before commits to get deterministic pass fail results with counts and failure details, catching regressions early and standardizing test reporting for faster feedback.

Does this test automation skill attempt to fix failing tests automatically?

No, this test automation skill parses output to provide a concise pass fail summary with counts and failure details, but it does not attempt automatic fixes for failing tests.

How do I get a concise summary of test failures when running a large test suite?

Parse test output automatically to produce a concise summary including pass fail status, test counts, and a detailed list of failures, speeding up feedback loops during development.