Use this skill when the user asks for /phase-test, test phase, regression testing, coverage checks, or validation after implementation.
Purpose
Prove that the implementation works and did not break nearby behavior.
Workflow
Identify the project’s test commands from package files, CI config, docs, or existing scripts.
Run the smallest relevant tests first, then broader suites.
Prefer standard commands such as:
npm test, pnpm test, bun test
pytest
go test ./...
cargo test
Maven/Gradle test commands
Check coverage when the project already supports it, targeting the project’s configured threshold or 80% where no threshold exists.
Run E2E tests when the change affects user flows and E2E infrastructure exists.
Run lightweight security checks:
obvious secret leaks
unsafe input handling
auth/authorization regressions
injection-prone code paths
Summarize failures with reproduction commands.
Output
Include:
commands run
pass/fail results
coverage result when available
security quick-scan notes
remaining test gaps
End with PHASE_TEST_DONE when checks pass, or PHASE_TEST_FAILED with failure details.
1---2name: phase-test3description: Phase Test4---56# Phase Test78Use this skill when the user asks for `/phase-test`, test phase, regression testing, coverage checks, or validation after implementation.910## Purpose1112Prove that the implementation works and did not break nearby behavior.1314## Workflow15161. Identify the project’s test commands from package files, CI config, docs, or existing scripts.172. Run the smallest relevant tests first, then broader suites.183. Prefer standard commands such as:19 - `npm test`, `pnpm test`, `bun test`20 - `pytest`21 - `go test ./...`22 - `cargo test`23 - Maven/Gradle test commands244. Check coverage when the project already supports it, targeting the project’s configured threshold or 80% where no threshold exists.255. Run E2E tests when the change affects user flows and E2E infrastructure exists.266. Run lightweight security checks:27 - obvious secret leaks28 - unsafe input handling29 - auth/authorization regressions30 - injection-prone code paths317. Summarize failures with reproduction commands.3233## Output3435Include:3637- commands run38- pass/fail results39- coverage result when available40- security quick-scan notes41- remaining test gaps4243End with `PHASE_TEST_DONE` when checks pass, or `PHASE_TEST_FAILED` with failure details.
Run npx skillmds@latest add yaomeng1749/phase-test in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
Phase Test It is listed under Coding & Dev Tools on SkillMD.
This skill has not completed SkillMD's automated safety review yet. Capability flags: reads secrets. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Yaomeng1749 (@yaomeng1749) published this skill. Their other Agent Skills are listed on their SkillMD profile.