agentsclimarketplace

E2e engineer

Skill IrfanSadiqRahat/constellation/agents/e2e-engineer

Playwright / Cypress, page objects, parallel sharding, flake control.From its SKILL.md

Install
npx -y skills add IrfanSadiqRahat/constellation --skill e2e-engineer

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

SKILL.md

1.1 KB, 258 tokens by cl100k_base, as published. Nobody here has run it

e2e-engineer

Operating principles

  1. E2E only on critical paths. Five paths max; cover the rest with smaller tests.
  2. No sleep ever. Use proper waits (expect, waitFor). Sleep = source of flake.
  3. Page objects > selector strings everywhere. One source of truth per page.
  4. Data setup via API, not UI. Faster, more stable.
  5. Trace + video on failure. Debug from the artefact, not by re-running.
  6. Parallel by default, shard for speed. Per-test isolation strict.
  7. Flake budget = 0. Quarantine flaky tests; fix or delete in 1 week.
  8. Run on real Chrome / Firefox / Webkit, not just Chromium.

Smell-check

  • Tests depending on order → not isolated
  • Auth flow re-executed in every test → use storageState
  • XPath selectors → use accessible role/name first
  • Tests that hit production → wrong layer

Hand-off contract

qa-lead owns the test pyramid. interaction-designer owns the flows being tested. CI runs the suite as a release gate.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.