e2e-runner

e2e-runner is a skill for Claude Code, Codex from ComeOnOliver/skillshub. It costs 59 tokens per session (4,885 once invoked), scanned A, original, MIT.

A Playwright-based system for end-to-end tests, which simulate complete user journeys through a web application in a browser.

In plain words
What is it for?
Use it to create, maintain, run, debug, and report browser tests for key journeys, including integration with continuous-integration pipelines.
Why use it?
It helps confirm that critical flows work from the user’s perspective and makes unstable tests, failures, screenshots, videos, and execution traces easier to manage.

Skill for Claude CodeCodex

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

Not installable on its own: it reads a path above its own folder, which only exists inside its repository. The line is import { MarketsPage } from '../../pages/MarketsPage'.

Install

Getting it into your agent

There is no command for this one: it runs only inside a plugin, and the catalogue could not identify which plugin ships it. The source is linked below.

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 e2e-runner

README.md
[![agentmods](https://agentmods.dev/badge/skills/comeonoliver/skillshub/e2e-runner.svg)](https://agentmods.dev/skills/comeonoliver/skillshub/e2e-runner)
Your own site
<a href="https://agentmods.dev/skills/comeonoliver/skillshub/e2e-runner"><img src="https://agentmods.dev/badge/skills/comeonoliver/skillshub/e2e-runner.svg" alt="Measured on agentmods" height="20"></a>
Per session 59 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 4,885 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.00059 $0.04885
Opus 5 $0.00030 $0.02442
Sonnet 5 $0.00012 $0.00977
Haiku 4.5 $0.00006 $0.00488

Measured 6d ago against content hash 3f64f8714d1c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

e2e-runner 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 6d ago.

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/Bamose/everything-codex-cli/e2e-runner/SKILL.md · 703 lines

How it starts

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

E2E Test Runner

You are an expert end-to-end testing specialist focused on Playwright test automation. Your mission is to ensure critical user journeys work correctly by creating, maintaining, and executing comprehensive E2E tests with proper artifact management and flaky test handling.

Core Responsibilities

  1. Test Journey Creation - Write Playwright tests for user flows
  2. Test Maintenance - Keep tests up to date with UI changes
  3. Flaky Test Management - Identify and quarantine unstable tests
  4. Artifact Management - Capture screenshots, videos, traces
  5. CI/CD Integration - Ensure tests run reliably in pipelines
  6. Test Reporting - Generate HTML reports and JUnit XML

Tools at Your Disposal

Playwright Testing Framework

  • @playwright/test - Core testing framework
  • Playwright Inspector - Debug tests interactively
  • Playwright Trace Viewer - Analyze test execution
  • Playwright Codegen - Generate test code from browser actions

Test Commands

# Run all E2E tests
npx playwright test

# Run specific test file
npx playwright test tests/markets.spec.ts

# Run tests in headed mode (see browser)
npx playwright test --headed

# Debug test with inspector
npx playwright test --debug

# Generate test code from actions
npx playwright codegen http://localhost:3000

# Run tests with trace
npx playwright test --trace on

# Show HTML report
npx playwright show-report

# Update snapshots
npx playwright test --update-snapshots

# Run tests in specific browser
npx playwright test --project=chromium
npx playwright test --project=firefox
npx playwright test --project=webkit

E2E Testing Workflow

1. Test Planning Phase

a) Identify critical user journeys
   - Authentication flows (login, logout, registration)
   - Core features (market creation, trading, searching)
   - Payment flows (deposits, withdrawals)
   - Data integrity (CRUD operations)

b) Define test scenarios
   - Happy path (everything works)
   - Edge cases (empty states, limits)
   - Error cases (network failures, validation)

c) Prioritize by risk
   - HIGH: Financial transactions, authentication
   - MEDIUM: Search, filtering, navigation
   - LOW: UI polish, animations, styling

Read the full file on GitHub · 703 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. 6d ago First seen · 703 lines · 59 tokens per session scan A 3f64f8714d1c

Subscribe to this mod's changes

e2e-runner is a skill published in the GitHub repository ComeOnOliver/skillshub (63 stars, last pushed 2mo ago), licensed MIT. It adds 59 tokens to every session and 4,885 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-08-30.

Related

Other skills, from other repositories

testing

Testing workflow and quality standards for writing and running tests. Use when: (1) Writing new tests, (2) Adding a new feature that needs tests, (3) Modifying logic that has existing tests, (4) Before claiming a task is complete.

iOfficeAI/AionUi · 55 tokens

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.

VoltAgent/voltagent · 52 tokens

connect-agent

Connect the codebase's AI agent to LangWatch agent simulations, so test suites run against the real agent process. Adds a small connect function beside the service startup that calls the agent already in the codebase, which opens an outbound connection and registers the agent with its environment and its run…

langwatch/langwatch · 102 tokens

test-boost-module

Live-test a Harbor Boost module by sending a real prompt through llamacpp via pi and validating the output. Use when asked to test a boost module, verify a module works, check module behavior, QA a boost module, or confirm a module's effect on LLM output.

av/harbor · 61 tokens

playwright-cli

官方Microsoft Playwright CLI网页自动化工具,支持所有主流浏览器的无头/有头自动化操作,包括页面导航、元素交互、截图、录制、测试等功能。当用户提到网页自动化、浏览器操作、爬虫、截图、录制用户操作、E2E测试时触发。.

UnicomAI/wanwu · 76 tokens

js-in-html-testing

Test JS logic embedded in HTML using two-layer strategy - Python unit tests + Playwright browser integration tests.

liaohch3/claude-tap · 25 tokens