the-controller-e2e-eval

the-controller-e2e-eval is a skill for Claude Code, Codex from kwannoel/the-controller. It costs 39 tokens per session (1,723 once invoked), scanned A, original, MIT.

An end-to-end testing process for checking a user interface from a user's point of view with Playwright. End-to-end testing follows a complete user action and verifies the visible result, rather than only checking that code or an element exists.

In plain words
What is it for?
Use it to validate UI changes by starting a fresh server pair, running Playwright tests, and confirming that users can complete the intended action.
Why use it?
It prevents UI tests from passing silently when the feature is broken. It also starts from a stated user story and requires an unconditional final assertion about the expected outcome.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Needs its repository: it runs a file that does not travel with it, so clone the repository first. The line is ./e2e/eval.sh "$WORKTREE_PATH" e2e/specs/<your-test>.spec.ts.

Good fit Use it to validate UI changes by starting a fresh server pair, running Playwright tests, and confirming that users can complete the intended action.

Compare 6 skills from other repositories ↓
Install

Getting it into your agent

It runs from inside its repository, so the clone comes first — what it calls does not travel with the file alone.

Clone the repo
git clone --depth 1 https://github.com/kwannoel/the-controller
agentmods
npx agentmods add skills/kwannoel/the-controller/the-controller-e2e-eval

Made for: Claude Code, Codex.

Wrote 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.

agentmods badge for the-controller-e2e-eval

README.md
[![agentmods](https://agentmods.dev/badge/skills/kwannoel/the-controller/the-controller-e2e-eval/github.svg)](https://agentmods.dev/skills/kwannoel/the-controller/the-controller-e2e-eval)
Your own site
<a href="https://agentmods.dev/skills/kwannoel/the-controller/the-controller-e2e-eval"><img src="https://agentmods.dev/badge/skills/kwannoel/the-controller/the-controller-e2e-eval/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for the-controller-e2e-eval

Your own site · 80×15
<a href="https://agentmods.dev/skills/kwannoel/the-controller/the-controller-e2e-eval"><img src="https://agentmods.dev/badge/skills/kwannoel/the-controller/the-controller-e2e-eval.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 39 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,723 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce invoked
Fable 5.1 $0.00039 $0.01723
Opus 5.5 $0.00016 $0.00689
Sonnet 5 $0.00008 $0.00345
Haiku 4.5 $0.00004 $0.00172

Measured yesterday against content hash 165c45f59b76, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-24, from the pricing page.

Security

Grade A, and why

the-controller-e2e-eval 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 yesterday.

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.

skills/the-controller-e2e-eval/SKILL.md · 185 lines

How it starts

The opening of the file, as written. The whole thing — 185 lines — stays where its author put it; the contents beside it link to each section on GitHub.

E2E Eval — User Story Validation

When to Use

You've made a UI change and need to prove it works from the user's perspective — not "it compiles" or "the DOM element exists," but "the user can do the thing and see the result."

Hard Rules

These are non-negotiable. Every test must follow all of them.

1. User story first, always

Before writing a single line of test code, state the user story:

  • Actor: Who is performing the action (e.g., "a user in Architecture mode")
  • Action: What they physically do (e.g., "presses r")
  • Outcome: What they expect to see (e.g., "an architecture diagram renders in the diagram pane")

The test's final assertion must verify the outcome. If the outcome doesn't happen, the test fails. No exceptions.

2. No silent passes

BANNED — the if (visible) escape hatch:

// NEVER DO THIS — silently passes when the feature is broken
const visible = await foo.isVisible().catch(() => false);
if (visible) {
  await expect(foo).toHaveText("expected");
}

REQUIRED — unconditional assertion with a timeout:

// DO THIS — fails loudly when the feature is broken
await expect(foo).toBeVisible({ timeout: 10_000 });
await expect(foo).toHaveText("expected");

If the element should be there, assert it. If it might legitimately not be there, that's a different test or a precondition you need to set up.

3. No mocking the interface

  • No page.evaluate() to set store state when a real interaction exists. If the user presses Space to open the workspace picker, the test presses Space.
  • No synthetic dispatchEvent(new KeyboardEvent(...)) — use page.keyboard.press().
  • No stubbing API responses — the test runs against real servers via eval.sh.

The only acceptable use of page.evaluate() is to read state for assertions (e.g., checking a computed style), never to write state that bypasses the UI.

4. Assert outcomes, not implementation

WRONG — asserting CSS values and class names:

Read the full file on GitHub · 185 lines

Changes

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.

  1. yesterday First seen · 185 lines · 39 tokens per session scan A 165c45f59b76

Subscribe to this mod's changes

the-controller-e2e-eval is a skill published in the GitHub repository kwannoel/the-controller (13 stars, last pushed 4mo ago), licensed MIT. It adds 39 tokens to every session and 1,723 once invoked, about $0.0002 per session on Opus 5.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-23.

Related

Other skills, from other repositories

eval-dataset-design

A guide to creating reliable test sets for AI agents. Each evaluation task includes the request, the simulated user's behaviour, a reset starting state, and a success check that can be independently verified.

bojieli/ai-agent-book · 138 tokens

dogfood

Systematically explore and test a mobile app on iOS/Android with agent-device to find bugs, UX issues, and other problems. Use when asked to dogfood, QA, exploratory test, find issues, bug hunt, or test this app on mobile.

callstack/agent-device · 55 tokens

cua-driver

Use Cua Driver for desktop or browser tasks that are awkward or unavailable through Bash/APIs, or when the user explicitly wants GUI interaction: app testing, visual bug reproduction, form filling, calendar entry, screenshots, and demo recording. Also covers Cua setup; not OpenAI Codex Computer Use or web research.

davidondrej/skills · 68 tokens

test-warp-ui

Guides testing Warp UI features and changes using the computer use tool. Use this skill only when computer-use testing was requested (explicit request or accepted offer) and the computeruse tool is available to the agent. Covers launching Warp and verifying UI behavior.

warpdotdev/warp · 55 tokens

test-electron-app

Drive the real running PostHog Electron app (live tRPC, workspace-server, real data) over CDP with agent-browser. Connect to the running app on port 9222, test desktop changes against a local Django stack, snapshot the accessibility tree, inspect network requests, and screenshot only when explicitly asked. Use when…

PostHog/posthog-foss · 112 tokens

pyats-dynamic-test

Generate and execute deterministic pyATS aetest validation scripts - interface state, OSPF neighbors, BGP paths, ping matrices, and custom compliance tests. Use when writing a network test, validating post-change state, running pass/fail checks, or building automated regression tests. For Arista EOS devices, prefer…

automateyournetwork/netclaw · 109 tokens