e2e-test-engineer

e2e-test-engineer is an agent for Claude Code from avelikiy/great_cto. It costs 76 tokens per session (856 once invoked), scanned A, original, MIT.

An agent that creates Playwright end-to-end tests for complete user journeys, such as signing up, creating something, and paying. It also runs those tests against the live website after deployment.

In plain words
What is it for?
Use it to test authentication, core create-and-validation flows, and payment success or declined-card cases, including at least one failure case per journey.
Why use it?
Health checks and a few endpoint pings cannot prove that real users can complete important tasks. These tests catch broken journeys before a release is handed over.

Agent for Claude Code

Written for Claude Code: effort in frontmatter. Also seen: model in frontmatter.

Part of the great-cto plugin — 40 skills, 44 commands, 70 agents shipped together

Install

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.

agentmods
npx agentmods add agents/avelikiy/great_cto/e2e-test-engineer
Clone the repo
git clone --depth 1 https://github.com/avelikiy/great_cto

Made for: Claude Code.

Or install great-cto, the plugin that ships this one along with the rest of its 40 skills, 44 commands, 70 agents.

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 e2e-test-engineer

README.md
[![agentmods](https://agentmods.dev/badge/agents/avelikiy/great_cto/e2e-test-engineer.svg)](https://agentmods.dev/agents/avelikiy/great_cto/e2e-test-engineer)
Your own site
<a href="https://agentmods.dev/agents/avelikiy/great_cto/e2e-test-engineer"><img src="https://agentmods.dev/badge/agents/avelikiy/great_cto/e2e-test-engineer.svg" alt="Measured on agentmods" height="20"></a>
Per session 76 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 856 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
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.00076 $0.00856
Opus 5 $0.00038 $0.00428
Sonnet 5 $0.00015 $0.00171
Haiku 4.5 $0.00008 $0.00086

Measured today against content hash 40bd020f6492, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

e2e-test-engineer 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.

agents/e2e-test-engineer.md · 71 lines

How it starts

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

e2e-test-engineer

BUILD-PIPELINES claims "generated tests are the quality gate," but app-scaffolder ships one smoke test and the deploy check is three pings (health / protected-route / db-reachable). That doesn't prove a user can actually sign up, create, and pay. You close that gap: real Playwright golden-path specs, replayed against the live URL.

You run after qa-engineer (units green) and produce two things: a reusable E2E suite (regression on every deploy) and a live-URL validation that gates the handoff.

Step 1 — generate golden-path specs

Read the shipped product's docs/architecture/ARCH-{slug}.md + docs/design/DESIGN-{slug}.md to find the critical journeys, then write tests/e2e/{slug}.spec.ts (Playwright, against the stack-baseline Next.js + shadcn surface). Cover the journeys the archetype lives on — at minimum:

  • Auth: signup → login → authenticated state → logout
  • Create: the core entity (order / booking / post / listing) with one valid AND one invalid (validation) path
  • Pay (if the archetype takes money): checkout/subscription with a success AND a declined-card path

Every journey gets ≥1 failure case, not just happy-path. Use role/label selectors (getByRole, getByLabel), not brittle CSS. Write docs/e2e/PLAYWRIGHT-{slug}.md (coverage matrix: journey × case × selector strategy).

Step 2 — replay against the live URL (the gate)

After infra-provisioner reports the live URL, run the suite against it:

PLAYWRIGHT_BASE_URL="$LIVE_URL" npx playwright test tests/e2e/{slug}.spec.ts --retries=2

Retries absorb network jitter; a deterministic failure is a real failure. Record the result into docs/infra/PROVISION-{slug}.md under a ## LIVE validation section (✓ passed N/N or ✗ failed: <journey> — <error> + timestamp), replacing the 3-ping check.

Gate behaviour

  • Any deterministic golden-path failure → block the handoff to l3-support; surface the failing journey + error to devops and the CTO. Do not pass a deploy where a user can't complete the core journey.
  • All green → record pass, hand the reusable suite to CI (runs on every deploy).

Read the full file on GitHub · 71 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. today Changed 40bd020f6492
  2. 6d ago First seen · 71 lines · 76 tokens per session scan A 432e5284484c

Subscribe to this mod's changes

e2e-test-engineer is an agent published in the GitHub repository avelikiy/great_cto (89 stars, last pushed today), licensed MIT. It adds 76 tokens to every session and 856 once invoked, about $0.0004 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-08-30.

Related

Other agents, from other repositories

testing-reviewer

Reviews test code for Elixir best practices - ExUnit patterns, Mox usage, LiveView testing, factory patterns. Use proactively after writing tests or during code review.

oliver-kriska/claude-elixir-phoenix · 38 tokens

fec-e2e-runner

Front-end end-to-end testing specialist: writing and maintaining key user journeys, executing Playwright/Cypress, managing unstable use cases, managing screenshots/Trace/videos and CI products. Delegate when you need to generate, run or repair E2E, or ensure core processes are testable. If the environment has…

bovinphang/frontend-craft · 0 tokens

test-analyzer

Test coverage agent for CI: reviews PR diffs for missing test coverage, untested edge cases, inadequate error path testing, and test quality issues. Focuses on behavioral coverage over line metrics.

rube-de/cc-skills · 43 tokens

fec-test-planner

Front-end test strategy planning subagent: Develop a coverage matrix according to risk and test levels, distinguishing static inspection, unit, component, lightweight integration, E2E, Storybook/visual regression and special quality verification. Suitable for use before new features, PRs, milestones or test debt…

bovinphang/frontend-craft · 0 tokens

fec-refactor-cleaner

Front-end Dead Code & Technical Debt Cleanup Subagent: Identifies unused components, exports, styles, routes, dependencies and test fixtures, categorizes them by risk, and cleans safe items only under validation protection.

bovinphang/frontend-craft · 0 tokens

test-coverage-reviewer

Specialist reviewer — analyzes test quality, coverage gaps, missing edge cases, and test anti-patterns. Spawned by merge gate alongside generalist reviewer.

ushibo/brigade · 37 tokens