Skill
End-to-End Testing
Verify the running app against requirements; retrigger the build loop on failure.
// workflow;Behaviour
What it does
- Maps acceptance criteria to real scenarios through HTTP, CLI, or browser
- Uses node:test for APIs and CLIs; Playwright via node:test for web UIs
- Runs against a real running app, not mocks
- Files fix tasks and sends control back to the build loop on failure
- Hands off to shipping only when end-to-end verification passes
When to use
Good fits
After executing-plans, when the unit suite is green
When you need proof the whole app works, not just the pieces
Before shipping any feature with user-facing behaviour
Development harness
Outer gate
Part of the design-to-ship pipeline: brainstorming → technical-documentation → conformance-check → reconciling-changes → planning → project-setup → executing-plans → shipping. Install the full set for structured feature work.
Used inside executing-plans as the outer verification gate before shipping.
Install
Get this skill
Uses Agent Kit via npx; no global install required.
Quick install
sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill end-to-end-testingGlobal (Cursor)
sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill end-to-end-testing --global --agent cursorGlobal (Claude)
sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill end-to-end-testing --global --agent claudeProject install
sh
npx @levi-putna/agent-kit@latest add levi-putna/skills --skill end-to-end-testing --projectInteractive install
sh
npx @levi-putna/agent-kit@latest add levi-putna/skillsUninstall
sh
npx @levi-putna/agent-kit@latest remove end-to-end-testingExample
Example prompt
End-to-End Testing
Verify the running app against requirements.md. File fix tasks if anything fails.
Flow
How the skill works
- Map requirements to end-to-end scenarios
- Start the app the way a user would
- Run scenarios and report pass or fail against acceptance criteria
- On failure, file fix tasks and re-enter the TDD build loop
- On pass, hand off to shipping