.agents/skills/execute-test-case/SKILL.md
Executes a batch of approved test cases and returns a strict JSON array of result payloads. Invoked by: bun nvst execute test-plan.
npx skillsauth add lpng-plenge/frontend-IA execute-test-caseInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Execute all provided test cases from the approved test plan in a single session.
All generated content must be in English.
Use the provided context sections:
project_context: project conventions, runtime, quality checks, and constraintstest_cases: JSON array of test case objects, each with id, description, mode, and correlated requirementstest_cases before running any commands.project_context when selecting commands, environment setup, and verification steps.passed: acceptance for this test case was satisfiedfailed: acceptance for this test case was not satisfiedskipped: test case cannot be executed due to a justified blockerReturn only a JSON array with one result object per test case, in the same order as the input. Each object must have this exact shape:
[
{
"testCaseId": "the test case id",
"status": "passed|failed|skipped",
"evidence": "string",
"notes": "string"
}
]
Every test case in the input must have a corresponding result in the output array.
Do not output markdown or additional text outside the JSON array.
testing
Refines an existing test plan based on user feedback or adversarial challenge mode. Triggered by: bun nvst refine test-plan.
development
Refines an existing refactor plan based on user feedback or adversarial challenge mode. Triggered by: bun nvst refine refactor-plan.
development
Refines .agents/PROJECT_CONTEXT.md via editor mode or challenge mode. Challenge mode validates the document against the actual codebase and detects compliance issues. Triggered by: bun nvst refine project-context.
documentation
Updates an existing product requirement document based on user feedback. Triggered by: bun nvst refine requirement.