Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add skills/yonatangross/orchestkit/testing-e2enpx skills add yonatangross/orchestkit --skill testing-e2egit clone --depth 1 https://github.com/yonatangross/orchestkitWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/yonatangross/orchestkit/testing-e2e)<a href="https://agentmods.dev/skills/yonatangross/orchestkit/testing-e2e"><img src="https://agentmods.dev/badge/skills/yonatangross/orchestkit/testing-e2e.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00055 | $0.02980 |
| Opus 5 | $0.00028 | $0.01490 |
| Sonnet 5 | $0.00011 | $0.00596 |
| Haiku 4.5 | $0.00006 | $0.00298 |
Grade A, and why
testing-e2e scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured today.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 263 lines — stays where its author put it; the contents beside it link to each section on GitHub.
E2E Testing Patterns
End-to-end testing with Playwright 1.59+, visual regression, accessibility, and AI agent workflows.
Quick Reference
| Category | Rules | Impact | When to Use |
|---|---|---|---|
| emulate Backends | rules/emulate-e2e.md |
HIGH | FIRST CHOICE — deterministic API backends for E2E |
| Playwright Core | rules/e2e-playwright.md |
HIGH | Semantic locators, auto-wait, flaky detection |
| Page Objects | rules/e2e-page-objects.md |
HIGH | Encapsulate page interactions, visual regression |
| AI Agents | rules/e2e-ai-agents.md |
HIGH | Planner/Generator/Healer, init-agents |
| A11y Playwright | rules/a11y-playwright.md |
MEDIUM | Full-page axe-core scanning with WCAG 2.2 AA |
| A11y CI/CD | rules/a11y-testing.md |
MEDIUM | CI gates, jest-axe unit tests, PR blocking |
| End-to-End Types | rules/validation-end-to-end.md |
HIGH | tRPC, Prisma, Pydantic type safety |
Total: 7 rules, 2 references, 3 checklists, 1 example, 1 script
Upstream coverage (do not restate)
Playwright, axe-core and jest-axe document themselves. This skill carries only the
OrchestKit delta (references/ork-delta.md) plus the house subsets in rules/. Fetch
the vendor page for anything below instead of expecting it here.
| Topic | Source |
|---|---|
Screenshot comparison workflow, baseline files, snapshotPathTemplate |
https://playwright.dev/docs/test-snapshots |
toHaveScreenshot options: mask, maxDiffPixelRatio, stylePath, animations |
https://playwright.dev/docs/api/class-pageassertions |
Auth reuse: storageState, setup projects, IndexedDB |
https://playwright.dev/docs/auth |
Network interception with page.route (the house default is still emulate first, see rules/emulate-e2e.md) |
https://playwright.dev/docs/mock |
| Removed and changed APIs per release (SKILL.md keeps only the short denylist below) | https://playwright.dev/docs/release-notes |
Full locator API surface (the house priority ladder stays in rules/e2e-playwright.md) |
https://playwright.dev/docs/locators |
Playwright runner setup on CI (the house a11y gate workflow stays in rules/a11y-testing.md) |
https://playwright.dev/docs/ci |
init-agents CLI flags and generated files (the Planner/Generator/Healer workflow stays in rules/e2e-ai-agents.md) |
https://playwright.dev/docs/test-agents |
jest-axe matcher and configureAxe API (the house component-state subset stays in rules/a11y-testing.md) |
https://github.com/NickColley/jest-axe |
| Lighthouse CI configuration and score assertions | https://github.com/GoogleChrome/lighthouse-ci |
What ships with it
16 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.
- checklists/a11y-testing-checklist.md 8.5 KB
- checklists/e2e-checklist.md 3.0 KB
- checklists/e2e-testing-checklist.md 12 KB
- examples/orchestkit-e2e-tests.md 21 KB
- references/ork-delta.md 2.9 KB
- references/playwright-setup.md 3.6 KB
- rules/_sections.md 1.2 KB
- rules/a11y-playwright.md 1.9 KB
- rules/a11y-testing.md 3.6 KB
- rules/e2e-ai-agents.md 2.2 KB
- rules/e2e-page-objects.md 2.2 KB
- rules/e2e-playwright.md 2.7 KB
- rules/emulate-e2e.md 3.6 KB
- rules/validation-end-to-end.md 2.8 KB
- scripts/create-page-object.md 1.9 KB
- test-cases.json 3.0 KB
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- today First seen · 263 lines · 55 tokens per session scan A 9d15764e16bc
testing-e2e is a skill published in the GitHub repository yonatangross/orchestkit (228 stars, last pushed today), licensed MIT. It adds 55 tokens to every session and 2,980 once invoked, about $0.0003 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-05.
Other skills, from other repositories
hatch3r-browser-verify
Opt-in browser verification skill — spec-run-first Playwright verification (assertions execute in the runner, agent reads only failures), axe-core a11y audits, toHaveScreenshot() regression diffs, E2E test scaffolds, and snapshot-mode exploratory driving. Default ON for UI-affecting agent invocations; disable globally…
e2e-testing-patterns
Build reliable, fast E2E test suites with Playwright and Cypress. Critical user journey coverage, flaky test elimination, CI/CD integration.
e2e-accessibility-analysis
Analyze E2E Playwright tests for accessibility best practices and identify opportunities to replace brittle selectors.
playwright-cli
Automates browser interactions for web testing, form filling, screenshots, and data extraction. Use when the user needs to navigate websites, interact with web pages, fill forms, take screenshots, test web applications, or extract information from web pages.
run-evals
Prepare the environment and run the LLM-driven agent evals (e2e/agent-evals/) against a chosen sim-use binary. Use when the user runs /run-evals or asks to "run the agent evals", "run the LLM-driven tests", "eval the skill", or wants pre-release confidence that an agent reading the bundled skill still picks the right…
e2e-tests-studio
REQUIRED when modifying any file in packages/playground-ui or packages/playground. Triggers on: React component creation/modification/refactoring, UI changes, new playground features, bug fixes affecting studio UI. Generates Playwright E2E tests that validate PRODUCT BEHAVIOR, not just UI states.