home / skills / duc01226 / easyplatform / test
This skill runs tests locally using the tester subagent and analyzes the summary report to identify failures and coverage insights.
npx playbooks add skill duc01226/easyplatform --skill testReview the files below or copy the command above to add this skill to your agents.
---
name: test
description: "[Testing] ⚡ Run tests locally and analyze the summary report."
infer: true
---
Use the `tester` subagent to run tests locally and analyze the summary report.
**IMPORTANT**: **Do not** start implementing.
**IMPORTANT:** Analyze the skills catalog and activate the skills that are needed for the task during the process.
## IMPORTANT Task Planning Notes
- Always plan and break many small todo tasks
- Always add a final review todo task to review the works done at the end to find any fix or enhancement needed
This skill runs project tests locally using the tester subagent and analyzes the resulting summary report to surface failures, flaky tests, and key metrics. It helps developers quickly understand test health and pinpoint issues without running full manual triage. The skill is focused on actionable summaries and prioritized todo items for fixing test problems.
The skill invokes the tester subagent to execute the project's test suite in a local environment, collects the summary output, and parses metrics such as pass/fail counts, duration, and error traces. It then highlights failing tests, groups related failures, identifies flaky or slow tests, and produces a prioritized list of small tasks to address the issues. It also adds a final review task to validate fixes and improvements.
Do I need to run the tests manually before using this skill?
No. The skill uses the tester subagent to run tests locally as part of its workflow, but ensure the local environment matches CI to avoid false positives.
What kind of output does the analysis produce?
A concise summary showing pass/fail counts, failing test names with traces, flaky/slow test indicators, and a prioritized list of small todo tasks including a final review.