e2e-skills AGENTS.md

Repository instructions for e2e-skills, a bundle of tools for end-to-end tests, which test a complete user flow through an application.

In plain words
What is it for?
Use them when generating or reviewing browser tests, diagnosing Playwright or Cypress reports, or verifying this repository.
Why use it?
They explain the project layout, supported Playwright and Cypress workflows, and checks that must pass before committing changes.

Instructions file for CodexOpenCode

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 instructions/voidmatcha/e2e-skills/agents-md
Clone the repo
git clone --depth 1 https://github.com/voidmatcha/e2e-skills

Made for: Codex, OpenCode.

Per session 5,358 This file is loaded in full into every session.
When invoked 5,358 The same file — it is already loaded in full.
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 $0.05358 $0.05358
Opus 5 $0.02679 $0.02679
Sonnet 5 $0.01072 $0.01072
Haiku 4.5 $0.00536 $0.00536

Measured 3d ago against content hash af77c1400729, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

e2e-skills AGENTS.md 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 3d 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.

AGENTS.md · 284 lines

How it starts

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

Reading this in Claude Code? See also CLAUDE.md if present. This file is read by Codex and other agents that follow the AGENTS.md convention.

AGENTS.md

Guidance for AI coding agents (Claude Code, Codex, and other AGENTS.md-compatible hosts) working in this repository.

Repository Overview

e2e-skills is a bundle of four Agent Skills for end-to-end test work on Playwright and Cypress projects:

  • playwright-test-generator — generates Playwright E2E tests from scratch (coverage-gap analysis → live-browser exploration → approval gate → review).
  • e2e-reviewer — static review of existing Playwright/Cypress specs against 24 anti-patterns grouped P0/P1/P2.
  • playwright-debugger — root-cause diagnosis from playwright-report/.
  • cypress-debugger — root-cause diagnosis from cypress/reports/ (mochawesome / JUnit).

The repo doubles as a Claude Code plugin (.claude-plugin/), a Codex plugin (.codex-plugin/), a cross-agent skill source via the skills CLI, and a standalone scanner (skills/e2e-reviewer/scripts/scan.sh).

Verification gate (must pass before commit)

[ ] /bin/bash -p scripts/ci/ci-local.sh          # review checks + drift smoke checks + 0 P0 smell hits
[ ] /bin/bash -p scripts/ci/pre-push-security.sh # secrets and credential leak guard

ci-local.sh is the single source of truth for the repository CI mirror (shell syntax, security, parity, evals, public skill surface, framework scope, link integrity, docs orphan check, language, and the E2E smell scan). ci-local.sh reaches the security gate through review.sh; the explicit pre-push-security.sh command above reruns that mandatory gate at the pre-push boundary. If you change a CI check, update ci-local.sh first.

Directory Layout

.
├── .claude-plugin/         # Claude Code plugin + marketplace manifests
│   ├── plugin.json
│   └── marketplace.json
├── .codex-plugin/          # Codex plugin manifest (interface display surface)
│   └── plugin.json
├── AGENTS.md               # This file (cross-agent canonical guide)
├── agents/                 # Claude Code subagents (plugin-install only): read-only
│   ├── e2e-finding-verifier.md    # adversarially verify ONE reviewer finding
│   └── e2e-failure-classifier.md  # classify ONE failure into F1–F15
├── .codex/agents/          # Codex-native TOML ports of the two subagents (optional)
│   ├── e2e-finding-verifier.toml   # behavior-synced with agents/*.md; guarded by SP5
│   └── e2e-failure-classifier.toml
├── benchmarks/             # immutable public benchmark evidence + adjudication ledgers
├── skills/                 # Four Agent Skills (the public surface)
│   ├── playwright-test-generator/
│   │   ├── SKILL.md        # Required: skill frontmatter + body
│   │   ├── best-practices.md
│   │   ├── code-rules.md
│   │   ├── evals/evals.json
│   │   └── agents/openai.yaml
│   ├── e2e-reviewer/
│   ├── playwright-debugger/
│   └── cypress-debugger/
├── scripts/
│   ├── ci/                 # CI parity, security, eval-metadata checks
│   ├── dev/                # contributor reinstall + git hook setup
│   ├── evals/              # labeled reviewer holdout, live runners, executable fixtures
│   ├── hooks/              # local git hooks
│   ├── pr-preflight.sh     # seven-stage preflight for upstream E2E-fix PRs
│   ├── verify-fixes.sh     # post-bulk-fix verification (sed-artifact AST detection)
│   └── validate-evals.sh
├── docs/                   # Open-source assets (taxonomy, case studies, scope)
├── README.md
└── CHANGELOG.md

Read the full file on GitHub · 284 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. 3d ago First seen · 284 lines · 5,358 tokens per session scan A af77c1400729

Subscribe to this mod's changes

e2e-skills AGENTS.md is an instructions file published in the GitHub repository voidmatcha/e2e-skills (10 stars, last pushed 4d ago), licensed Apache-2.0. It adds 5,358 tokens to every session, about $0.0268 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-31.

Related

Other instructions, from other repositories

playwright-mcp CLAUDE.md

Claude Code instructions for microsoft/playwright-mcp, covering commit convention, ... make changes .., summary, rolling playwright and preparing a release.

microsoft/playwright-mcp · 363 tokens

agentic-playwright common-tasks.instructions.md

Instructions for idavidov13/agentic-playwright, covering ai prompt templates for agentic playwright, critical, instructions, phase 1: identify the task category and resolve paths and phase 2: select and customize the matching prompt template.

idavidov13/agentic-playwright · 5,109 tokens

agentic-playwright debugging.instructions.md

Instructions for idavidov13/agentic-playwright, covering debugging, critical, capture defaults (this scaffold), built-in npm scripts for debugging and instructions.

idavidov13/agentic-playwright · 4,500 tokens

agentic-playwright data-strategy.instructions.md

Instructions for idavidov13/agentic-playwright, covering data strategy, critical, file locations, instructions and phase 1: classify the value you need.

idavidov13/agentic-playwright · 2,684 tokens

agentic-playwright helpers.instructions.md

Instructions for idavidov13/agentic-playwright, covering helpers, critical, file locations, instructions and phase 1: classify what you're adding.

idavidov13/agentic-playwright · 2,833 tokens

agentic-playwright page-objects.instructions.md

Instructions for idavidov13/agentic-playwright, covering page object model, critical, file locations, page object pattern and rules.

idavidov13/agentic-playwright · 2,940 tokens