npx claudepluginhub melodic-software/claude-code-plugins --plugin tacThis skill is limited to using the following tools:
Execute an end-to-end test specification and report results.
Designs E2E test specs from user stories with steps, verification checkpoints, screenshots, and success criteria for Playwright/Cypress journeys.
Executes E2E tests from definition files using Playwright CLI browser automation. Runs steps like navigate, click, fill, verify; captures screenshots/videos; outputs JSON results.
Runs E2E browser tests from natural language JSON files using agent-browser, with dev server support, screenshots, and visual regression. Use for UI, browser, or web app testing.
Share bugs, ideas, or general feedback.
Execute an end-to-end test specification and report results.
e2e_test_file: $1 - Path to the E2E test specification file**Verify** steps carefullyFor each step in the test specification:
**Verify**:
After all steps complete:
Return ONLY a JSON object:
Passed:
{
"test_name": "Basic Query Execution",
"status": "passed",
"screenshots": [
"screenshots/01_initial_state.png",
"screenshots/02_query_input.png",
"screenshots/03_results.png"
],
"error": null
}
Failed:
{
"test_name": "Basic Query Execution",
"status": "failed",
"screenshots": [
"screenshots/01_initial_state.png",
"screenshots/02_query_input.png"
],
"error": "Step 8 failed: Results did not appear within 5 seconds"
}
| Field | Description |
|---|---|
test_name | Name from the test specification |
status | "passed" or "failed" |
screenshots | Array of screenshot paths captured |
error | Error description if failed, null if passed |
This command is the REQUEST phase for E2E validation:
/test-e2e {spec} → [JSON result] → /resolve-failed-e2e-test {result}
/test-e2e .claude/commands/e2e/test-basic-query.md