e2e-scenario-planner

e2e-scenario-planner is a skill for Claude Code, Codex from codebygarv/Ai-skills. It costs 28 tokens per session (392 once invoked), scanned A, original, MIT.

A guide for planning end-to-end tests, which follow complete user journeys through an application using tools such as Playwright or Cypress.

In plain words
What is it for?
Use it to prioritize tests for login, checkout, invitations, exports, and other critical journeys in pull requests or nightly runs.
Why use it?
It helps teams cover the most important flows without brittle tests, slow setup, or unreliable waits and selectors.

Skill for Claude CodeCodex

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

Good fit Use it to prioritize tests for login, checkout, invitations, exports, and other critical journeys in pull requests or nightly runs.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/codebygarv/ai-skills/e2e-scenario-planner
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.

Any agent
npx skills add codebygarv/Ai-skills --skill e2e-scenario-planner
Clone the repo
git clone --depth 1 https://github.com/codebygarv/Ai-skills

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-scenario-planner

README.md
[![agentmods](https://agentmods.dev/badge/skills/codebygarv/ai-skills/e2e-scenario-planner.svg)](https://agentmods.dev/skills/codebygarv/ai-skills/e2e-scenario-planner)
Your own site
<a href="https://agentmods.dev/skills/codebygarv/ai-skills/e2e-scenario-planner"><img src="https://agentmods.dev/badge/skills/codebygarv/ai-skills/e2e-scenario-planner.svg" alt="Measured on agentmods" height="20"></a>
Per session 28 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 392 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.00028 $0.00392
Opus 5 $0.00014 $0.00196
Sonnet 5 $0.00006 $0.00078
Haiku 4.5 $0.00003 $0.00039

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

Security

Grade A, and why

e2e-scenario-planner 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 5d 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/testing/e2e-scenario-planner/SKILL.md · 34 lines

What it actually says

Purpose

Architect a resilient, non-flaky End-to-End (E2E) test suite using Playwright or Cypress focused on core business user journeys (authentication, checkout, workspace invitation, data export) while keeping test run times fast.

When to Use

  • Establishing an automated E2E smoke and regression suite.
  • Refactoring brittle E2E tests filled with arbitrary sleep() calls and unstable CSS selectors.
  • Prioritizing which test scenarios must run on pull requests vs nightly builds.

What to Analyze

  1. Critical User Journeys (CUJs): Identify flows where a failure stops users from converting or using core features.
  2. Stable Locators: Prioritize user-facing accessibility locators (getByRole, getByLabel, getByText) over brittle CSS hierarchy selectors.
  3. Authentication State Re-use: Use storage state fixtures to log in once via API rather than UI login on every test.
  4. Network Mocking vs Real APIs: Mocking slow third-party widgets (Stripe, Intercom, Analytics) while hitting real internal APIs.
  5. Parallelism & Sharding: Splitting tests across CI runners for sub-5-minute runs.

Output Format

  • CUJ Coverage Matrix: User Journey, Priority (P0/P1/P2), Execution Frequency.
  • Playwright Test Suite Code: Clean Page Object Model (POM) implementation.
  • Flakiness Mitigation Rules: Explicit wait strategies, retries, and network intercept patterns.

Avoid

  • Automating every minor edge case via E2E instead of unit/integration tests (Testing Pyramid inversion).
  • Using hardcoded page.waitForTimeout(5000) sleeps.
Files

What ships with it

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

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. 5d ago First seen · 34 lines · 28 tokens per session scan A c199ded0a8f5

Subscribe to this mod's changes

e2e-scenario-planner is a skill published in the GitHub repository codebygarv/Ai-skills (25 stars, last pushed 19d ago), licensed MIT. It adds 28 tokens to every session and 392 once invoked, about $0.0001 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-03.

Related

Other skills, from other repositories

vscode-visual-regression

Write Storybook stories and visual regression tests for the Kilo VS Code extension webview UI.

Kilo-Org/kilocode · 25 tokens

accessibility-selenium-testing

Accessibility testing toolkit using Selenium WebDriver 4+ with Java 21+ and axe-core engine. Use when asked to validate WCAG 2.2 AA compliance, scan pages or components for a11y violations, test keyboard navigation, audit color contrast, check ARIA semantics, generate accessibility reports, filter axe rules, debug…

fugazi/test-automation-skills-agents · 92 tokens

playwright-best-practices

Use when writing Playwright tests, fixing flaky tests, debugging failures, implementing Page Object Model, configuring CI/CD, optimizing performance, mocking APIs, handling authentication or OAuth, testing accessibility (axe-core), file uploads/downloads, date/time mocking, WebSockets, geolocation, permissions…

currents-dev/playwright-best-practices-skill · 214 tokens

storybook-ui

Use when storybook for UI component development — stories, addons, controls, a11y testing, visual regression. Use when working with storybook ui.

oyi77/1ai-skills · 34 tokens

bun-cli

Bun CLI reference for package management, script running, testing, bundling, and compilation. Covers bun install/add/remove/update, bun run, bun test, bun build, bunx, bun patch, bun audit fix, bun dedupe, bun prune, bun why, bun pm, bun repl, bunfig.toml, bun.lock, workspace catalogs, isolated installs and the global…

dmythro/agent-skills · 179 tokens

ds-test

Universal test skill — generate, update, run, and fix tests for any stack. Use when writing, repairing, or running tests, or improving coverage.

sungurerdim/dev-skills · 34 tokens