AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Testing And Quality

skill-martian56-claude-engineer-testing-and-quality · by martian56

Use throughout the build and before claiming any phase or the project "done", to run the four mandatory quality gates and verify them with evidence. Covers the test pyramid, Playwright + Chrome DevTools browser verification, WCAG AA, and the commit/finish gate wiring.

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-martian56-claude-engineer-testing-and-quality

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-martian56-claude-engineer-testing-and-quality)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Testing And Quality? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Testing & Quality

Announce at start: "I'm using claude-engineer:testing-and-quality to enforce the four quality gates."

Iron Law

No "done" without all four gates passing, verified by fresh evidence. (Pairs with superpowers:verification-before-completion - assertions follow evidence, never precede it.)

The four gates (exact pass/fail commands; exit 0 = pass)

  1. Tests + coverage - FE vitest run --coverage; BE pytest --cov=app --cov-fail-under=80.
  2. E2E + zero console errors - playwright test (specs include a console-error/pageerror fixture and assert no 4xx/5xx on key routes). Drive flows and confirm every button/screen works via the Playwright + Chrome DevTools MCPs.
  3. Accessibility (WCAG AA) - playwright test a11y/ using @axe-core/playwright with tags wcag2a,wcag2aa,wcag21aa,wcag22aa; assert zero violations. Manual keyboard/focus spot-checks too.
  4. Strict types + lint clean - tsc --noEmit && eslint . && prettier --check . && ruff check . && ruff format --check . && mypy app.

The gate runner + commit gate

  • Scaffold scripts/quality-gate.mjs from templates/quality-gate.mjs. It runs all four gates and writes

.claude-engineer/quality-gate-status.json ({ allPass, results }).

  • The claude-engineer PreToolUse(Bash) hook blocks git commit unless that file shows allPass: true.

So: run node scripts/quality-gate.mjs → fix failures → commit. Intentional bypass: git commit --no-verify.

  • The same four commands are the finish condition and the CI merge condition (claude-engineer:ci-cd-pipeline).

Browser verification (MCPs - BYO install)

  • Chrome DevTools MCP - capture/assert zero console errors per screen, Lighthouse audits, network-failure checks.
  • Playwright MCP - drive real flows; confirm interactions actually work.

Install per templates/recommended-mcps.md.

Full detail (test pyramid, coverage targets, Playwright setup, the console-error fixture, axe usage, exact commands): read references/testing-and-gates.md on demand.

Red flags - STOP

  • Claiming "done"/"passing" without re-running the gate now.
  • Committing with a failing/stale gate (use --no-verify only with explicit reason).
  • Treating console warnings/errors as acceptable - the E2E gate requires zero.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.