ac-qa-e2e-template

ac-qa-e2e-template is a skill for Claude Code from WaterplanAI/agentic-config. It costs 46 tokens per session (432 once invoked), scanned A, original, MIT.

A template generator for end-to-end tests, which check a complete user flow in a running application. It creates structured test definitions with steps, screenshots, success criteria, and expected output.

In plain words
What is it for?
Use it to define flows such as opening a page, clicking controls, entering text, checking results, capturing screenshots, and recording video.
Why use it?
It gives tests a consistent starting format, reducing the work needed to describe browser-based scenarios.

Skill for Claude Code

Written for Claude Code: allowed-tools in frontmatter.

Part of the agentic-config plugin — 49 skills, 1 plugin 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 skills/waterplanai/agentic-config/ac-qa-e2e-template
Any agent
npx skills add WaterplanAI/agentic-config --skill ac-qa-e2e-template
Clone the repo
git clone --depth 1 https://github.com/WaterplanAI/agentic-config

Made for: Claude Code.

Or install agentic-config, the plugin that ships this one along with the rest of its 49 skills, 1 plugin.

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 ac-qa-e2e-template

README.md
[![agentmods](https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-e2e-template.svg)](https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-e2e-template)
Your own site
<a href="https://agentmods.dev/skills/waterplanai/agentic-config/ac-qa-e2e-template"><img src="https://agentmods.dev/badge/skills/waterplanai/agentic-config/ac-qa-e2e-template.svg" alt="Measured on agentmods" height="20"></a>
Per session 46 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 432 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.00046 $0.00432
Opus 5 $0.00023 $0.00216
Sonnet 5 $0.00009 $0.00086
Haiku 4.5 $0.00005 $0.00043

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

Security

Grade A, and why

ac-qa-e2e-template 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.

packages/pi-ac-qa/skills/ac-qa-e2e-template/SKILL.md · 66 lines

What it actually says

E2E Test:

User Story

As a I want to So that

Pre-Conditions

  • Application is running at base URL

Test Steps

  1. Navigate to <path>
  2. Verify page title contains ""
  3. Screenshot "initial_state"
  4. Click ""
  5. Verify ""
  6. Type "" into ""
  7. Screenshot "after_action"
  8. Verify

Success Criteria

  • Page loads without errors
  • <specific criterion 1>
  • <specific criterion 2>
  • All screenshots captured successfully

Expected Output

{
  "test_name": "<Test Name>",
  "status": "passed",
  "screenshots": [
    "{PROJECT_ROOT}/outputs/e2e/<test-name>/01_initial_state.png",
    "{PROJECT_ROOT}/outputs/e2e/<test-name>/02_after_action.png"
  ],
  "error": null
}

Notes

  • Video recording is explicit: use playwright-cli video-start before and video-stop after the test flow. Output saved to {PROJECT_ROOT}/outputs/e2e/
  • Screenshots saved to {PROJECT_ROOT}/outputs/e2e/<test-name>/
  • Use descriptive screenshot names for clarity
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 · 66 lines · 46 tokens per session scan A 7fc4bdcf9247

Subscribe to this mod's changes

ac-qa-e2e-template is a skill published in the GitHub repository WaterplanAI/agentic-config (30 stars, last pushed 1mo ago), licensed MIT. It adds 46 tokens to every session and 432 once invoked, about $0.0002 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

api-testing

API testing patterns for Playwright -- apiRequest fixture usage, Zod response schema creation and validation, test.step wrapping for multi-call tests, per-field negative/validation testing, path parameter fuzzing, and helper fixtures for shared setup/teardown. Use when writing or updating API test specs, adding tests…

idavidov13/agentic-playwright · 132 tokens

debugging

Playwright test debugging conventions for the scaffold — reading failure messages, classifying failure modes (TimeoutError, ZodError, strict-mode violation, locator not found, network errors, schema drift), the playwright.config.ts capture defaults (trace on-first-retry, screenshot only-on-failure, video…

idavidov13/agentic-playwright · 179 tokens

test-standards

Spec file conventions for the Playwright scaffold — imports from test-options.ts, test file structure (describe / beforeEach / test / test.step), single-tag rule, functional vs E2E vs API vs setup test types, data-driven test loops against TS static data, web-first assertions, destructive-test cleanup, and test…

idavidov13/agentic-playwright · 166 tokens

data-strategy

Test data strategy for the Playwright scaffold — Faker + Zod factories for dynamic happy-path data, static TS files (.ts with as const exports — never .json) for domain-specific curated invalid sets, and the universal type-mismatch arrays in test-data/static/util/invalid-values.ts. Use when creating or editing a data…

idavidov13/agentic-playwright · 160 tokens

helpers

Plain utility function conventions for the Playwright scaffold — app-specific helpers in helpers/{area}/ (authentication bootstrap, storage-state creation, data seeding) and generic utilities in helpers/util/ (date formatting, string manipulation, parsing). Use when adding a reusable function that does NOT need the…

idavidov13/agentic-playwright · 152 tokens

page-objects

Page Object Model pattern for the Playwright scaffold — class structure, get-accessor locator pattern, action-method conventions, component composition, registration via the page-object fixture, and the mandatory exploration-first workflow. Use when creating a new page object, adding or updating locators on an…

idavidov13/agentic-playwright · 129 tokens