unit-test

Delegate unit test execution to a sub-agent and return a pass/fail summary.

1|Updated Jan 26, 2026
One-click install
npx skills add https://github.com/arakitakashi/homework-coach-robo --skill unit-test-arakitakashi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: unit-test
Source: https://github.com/arakitakashi/homework-coach-robo/tree/main/.claude/skills/unit-test
Command: npx skills add https://github.com/arakitakashi/homework-coach-robo --skill unit-test-arakitakashi

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) components.

What problem does it solve?

This Skill streamlines the Test-Driven Development (TDD) cycle by delegating unit test execution to a sub-agent, preventing verbose test output from cluttering the main agent's context.

Core Features & Use Cases

  • TDD Cycle Support: Ideal for the RED and GREEN phases of TDD, allowing quick verification of test pass/fail status.
  • Focused Execution: Avoids polluting the main agent's context with detailed test runner output.
  • Use Case: During the RED phase of TDD, you can run /unit-test frontend to confirm a new test fails as expected before writing any code.

Quick Start

Execute frontend unit tests for the specified environment.

Frequently Asked Questions about unit-test

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

FAQPage Schema
How do I prevent verbose unit test output from cluttering my agent context during TDD?

Unit test execution is delegated to a sub-agent, preventing verbose test output from cluttering the main context. This returns only a structured pass/fail summary to keep your TDD cycles efficient.

How do I run unit tests for specific frontend and backend environments?

You can run unit tests for frontend and backend environments by specifying the target in the execution command. Optional test path and name filtering are supported to focus the test execution.

What is the best way to verify the RED phase in a TDD cycle?

The best way to verify the RED phase is to execute targeted unit tests to confirm a new test fails as expected. This provides a quick pass/fail status check before writing any implementation code.

Does this unit test automation tool support filtering by test name and path?

Yes, the unit test automation supports optional test path and name filtering. This allows you to focus execution on specific tests and receive a structured summary without verbose output.

Why does my unit test runner return only a pass/fail summary?

The unit test runner returns only a structured pass/fail summary to enforce strict output formatting. This mechanism maintains context efficiency by suppressing detailed test runner logs.

Can I use this for both frontend and backend test automation?

Yes, you can use this test automation for both frontend and backend environments. It delegates execution to a sub-agent to maintain context efficiency across different tech stacks.