end-to-end-testing

end-to-end-testing is a skill for Claude Code from kouroshez/coding-os. It costs 177 tokens per session (1,323 once invoked), scanned A, original, Apache-2.0.

A guide to end-to-end tests, which check complete user journeys through the real application, such as signing up or completing a purchase.

In plain words
What is it for?
Use it to write and debug Playwright tests for websites or Maestro tests for mobile apps, choose suitable journeys, prepare CI checks, and lint tests for common reliability problems.
Why use it?
It helps teams cover important workflows while avoiding flaky tests that fail because of timing, fragile selectors, or shared test data.

Skill for Claude Code

Written for Claude Code: paths in frontmatter.

Good fit Use it to write and debug Playwright tests for websites or Maestro…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/kouroshez/coding-os/end-to-end-testing
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 kouroshez/coding-os --skill end-to-end-testing
Clone the repo
git clone --depth 1 https://github.com/kouroshez/coding-os

Made for: Claude Code.

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 end-to-end-testing

README.md
[![agentmods](https://agentmods.dev/badge/skills/kouroshez/coding-os/end-to-end-testing.svg)](https://agentmods.dev/skills/kouroshez/coding-os/end-to-end-testing)
Your own site
<a href="https://agentmods.dev/skills/kouroshez/coding-os/end-to-end-testing"><img src="https://agentmods.dev/badge/skills/kouroshez/coding-os/end-to-end-testing.svg" alt="Measured on agentmods" height="20"></a>
Per session 177 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,323 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.00177 $0.01323
Opus 5 $0.00088 $0.00661
Sonnet 5 $0.00035 $0.00265
Haiku 4.5 $0.00018 $0.00132

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

Security

Grade A, and why

end-to-end-testing 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.

The scan reads SKILL.md. This mod also ships 1 executable file (scripts/lint_e2e.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

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.

src/core/skills/end-to-end-testing/SKILL.md · 102 lines

How it starts

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

End-to-End Testing

End-to-end tests are the most valuable and the most expensive tests — they prove a real user journey works across the whole stack, and they break for unrelated reasons if written carelessly. The discipline: few but critical journeys, semantic locators, zero hard sleeps, and isolated data. A flaky end-to-end suite is worse than none — teams learn to ignore red.

Lint Playwright specs for flakiness anti-patterns: python3 scripts/lint_e2e.py tests/**/*.spec.ts

Cover journeys, not units (it's the tip of the pyramid)

End-to-end tests are slow and broad — reserve them for the handful of journeys that, if broken, mean the product is down: sign up → log in, add to cart → checkout, the core create→read→update path. Everything else (edge cases, error states, validation) is cheaper and more reliable as unit/integration tests. Which test type for a given change is owned by testing-strategy — this skill is how to write the end-to-end ones well.

Playwright — locators + auto-wait (web)

// Wrong — brittle selector + a hard sleep = flaky and slow
await page.waitForTimeout(3000);
await page.click(".btn-primary.css-1x2y3z");      // generated class, breaks on rebuild

// Correct — semantic locator + auto-waiting assertion
await page.getByRole("button", { name: "Sign in" }).click();   // waits for actionable
await expect(page.getByText("Welcome")).toBeVisible();          // retries until true or times out

Playwright auto-waits for elements to be actionable — getByRole/getByLabel/ getByText plus web-first expect assertions retry automatically. A waitForTimeout is always wrong: either too short (flaky) or too long (slow). Prefer role/label/text locators (they double as accessibility checks — see a11y) over CSS/XPath. Detail → references/playwright.md.

Maestro — flows for mobile

# flows/login.yaml
appId: com.example.app
---
- launchApp
- tapOn: "Email"
- inputText: "[email protected]"
- tapOn: "Sign in"
- assertVisible: "Welcome"

Read the full file on GitHub · 102 lines

Files

What ships with it

5 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. 6d ago First seen · 102 lines · 177 tokens per session scan A c5fb822c80ab

Subscribe to this mod's changes

end-to-end-testing is a skill published in the GitHub repository kouroshez/coding-os (6 stars, last pushed 6d ago), licensed Apache-2.0. It adds 177 tokens to every session and 1,323 once invoked, about $0.0009 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 skills, from other repositories

tdd-workflow

Use this skill when writing new features, fixing bugs, or refactoring code. Enforces test-driven development with 80%+ coverage including unit, integration, and E2E tests.

affaan-m/ECC · 43 tokens

potpie-debug-memory

Use while debugging or troubleshooting failures, flaky tests, incidents, production alerts, CI failures, local dev setup issues, repeated bugs, prior fixes, failed attempts, and verification history.

potpie-ai/potpie · 41 tokens

potpie-project-preferences

Use before writing, modifying, reviewing, refactoring, or testing code so repo/project preferences surface: error handling, file structure, frameworks, logging, dependency choices, testing, security, API style, and naming. Also use after code work when a reusable project preference should be recorded.

potpie-ai/potpie · 63 tokens

api-tester

A tool for creating and checking API tests from the real API contract and implementation. An API is the agreed way that software sends requests and receives responses.

laolaoshiren/claude-code-skills-zh · 86 tokens

memstack-development-webapp-testing

Use when the user says 'write browser tests', 'test this page', 'playwright test', 'e2e test', 'end to end test', 'browser test', 'test the UI', or needs Playwright-based browser testing for a web application. Do NOT use for unit tests, API tests, or non-browser testing.

cwinvestments/memstack · 75 tokens

playwright-testing

E2E testing with Playwright - Page Objects, cross-browser, CI/CD.

alinaqi/maggy · 20 tokens