petrkindlmann

53 mods across 2 repositories, 102 stars between them.

qa-skills AGENTS.md

01

petrkindlmann/qa-skills

Instructions file CodexOpenCode

Instructions for petrkindlmann/qa-skills, covering agent behavior specification, skill discovery, cross-skill references, description quality and picking between overlapping skills.

101 2mo ago A 2,387 tokens original MIT

qa-skills CLAUDE.md

02

petrkindlmann/qa-skills

Instructions file

Instructions for petrkindlmann/qa-skills, a project described as: 50 QA and test-automation skills for Claude Code, Codex, Cursor, and any Agent Skills Standard runtime.

101 2mo ago A 3 tokens copy · 100% MIT

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test for WCAG 2.2 AA compliance with axe-core + Playwright, keyboard navigation audits, screen reader testing, ARIA pattern validation, and legal compliance mapping (ADA, EAA, Section 508). Automated tools catch 30-40% of issues — this skill covers automated and manual testing together. Use when: "accessibility,"…

101 2mo ago A 145 tokens original MIT

petrkindlmann/qa-skills

Skill Claude CodeCodex

Goal-driven E2E testing where a browser agent (Playwright MCP / computer-use) reads a natural-language goal and explores the app via the accessibility tree to assert outcomes — no pre-written script. Covers when intent-driven beats scripted, making agent runs deterministic (pinned model, temperature 0, seeded data…

101 2mo ago A 206 tokens original MIT

ai-bug-triage

05

petrkindlmann/qa-skills

Skill Claude CodeCodex

Hybrid fingerprint + LLM pipeline for bug classification, deduplication, and ticket generation. Normalizes CI logs, creates stable fingerprints, clusters near-duplicates, then uses LLM for severity classification and ticket writing. Includes bug reporting templates and severity/priority matrix. Use when: "bug triage,"…

101 2mo ago A 148 tokens original MIT

ai-qa-review

06

petrkindlmann/qa-skills

Skill Claude CodeCodex

Review EXISTING test code for quality, smells, and testability issues. Detects test smells across six dimensions — readability, reliability, diagnostic value, design, AI-generated, and coverage — analyzes testability of application code, and backs the qualitative smells with mutation testing. Use when: "review my…

101 2mo ago A 133 tokens original MIT

ai-system-testing

07

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test AI/LLM features that ship in your product. Covers prompt regression testing, response quality evaluation, tool-call validation, hallucination and RAG grounding checks, nondeterministic-output strategies, red-team/safety scans, eval frameworks, and agent-as-target injection (indirect injection via tool output /…

101 2mo ago D 261 tokens original MIT

ai-test-generation

08

petrkindlmann/qa-skills

Skill Claude CodeCodex

Use AI to write NEW test code from specs, PRDs, user stories, code diffs, bug reports, or OpenAPI specs. Staged pipeline: requirements extraction → risk analysis → coverage matrix → scenario generation → oracle design → test code → human review, with guardrails against hallucinated APIs and weak assertions. Use when…

101 2mo ago A 169 tokens original MIT

petrkindlmann/qa-skills

Skill Claude CodeCodex

Validate that analytics and marketing tracking fire CORRECTLY: GA4/GTM dataLayer events, Meta/TikTok/LinkedIn pixels, and ad-tech tags. Covers building a tracking plan as the contract, intercepting collect-endpoint beacons and dataLayer.push in Playwright, asserting event name + params + values + timing +…

101 2mo ago A 209 tokens original MIT

api-testing

10

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test REST and GraphQL APIs with Playwright APIRequestContext, Supertest, or standalone HTTP clients. Covers schema validation with Zod 4/AJV, auth flow testing, CRUD lifecycle tests, error and header validation, pagination, and performance assertions. Use when: "API test," "endpoint test," "REST test," "GraphQL test,"…

101 2mo ago A 129 tokens original MIT

bug-reproduction

11

petrkindlmann/qa-skills

Skill Claude CodeCodex

Turn a vague bug report into a VERIFIED minimal reproduction and then a failing regression test, agent-driven end to end. Covers extracting the implicit repro from a thin report (env, build, steps, data), the reproduce-minimize-isolate-capture loop, git bisect to find the introducing commit, building a deterministic…

101 2mo ago A 252 tokens original MIT

chaos-engineering

12

petrkindlmann/qa-skills

Skill Claude CodeCodex

Validate system resilience through controlled fault injection. Covers hypothesis-driven chaos experiments, failure injection types (network, service, infrastructure, dependency), LitmusChaos/Chaos Mesh/AWS FIS/Gremlin/toxiproxy tooling, automated abort gating, game day planning, and progressive chaos adoption. Use…

101 2mo ago A 152 tokens original MIT

ci-cd-integration

13

petrkindlmann/qa-skills

Skill Claude CodeCodex

Design CI/CD pipelines that run test suites. Covers GitHub Actions and GitLab CI templates, parallelism and sharding, artifact management, flaky-test quarantine, test-result publishing, coverage quality gates, OIDC keyless deploy, and copy-paste workflows for Playwright, Jest, and multi-stage pipelines. Use when…

101 2mo ago A 175 tokens original MIT

compliance-testing

14

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test for regulatory compliance: GDPR/CMP consent verification, Google Consent Mode v2, Global Privacy Control (GPC), CCPA/US state opt-out, EU AI Act Article 50 transparency, Better Ads Standards, and cookie-inventory auditing. Covers automated consent-flow testing, third-party script blocking before consent, and…

101 2mo ago A 183 tokens original MIT

contract-testing

15

petrkindlmann/qa-skills

Skill Claude CodeCodex

Implement consumer-driven contract testing with Pact-JS (v16). Covers consumer test writing, broker-driven provider verification, Pact Broker setup, can-i-deploy as a deployment gate, webhook-triggered verification, pending pacts, and schema-first vs consumer-first approaches (OpenAPI/Ajv, Schemathesis). Use when…

101 2mo ago A 151 tokens original MIT

coverage-analysis

16

petrkindlmann/qa-skills

Skill Claude CodeCodex

Measure and improve test coverage meaningfully. Covers Istanbul/V8/coverage.py configuration, coverage gap analysis by risk, coverage-as-ratchet in CI (never let it decrease), PR coverage diff checks, mutation testing for assertion quality, and distinguishing meaningful from vanity coverage. Use when: "code coverage,"…

101 2mo ago A 132 tokens original MIT

petrkindlmann/qa-skills

Skill Claude CodeCodex

Design analytics-driven browser test matrices and execute cross-browser tests. Covers BrowserStack/Sauce Labs configuration, Playwright browser channels, common cross-browser CSS/JS divergences, a known-issues documentation log, and progressive enhancement validation. Use when: "cross-browser," "browser matrix,"…

101 2mo ago A 131 tokens original MIT

cypress-automation

18

petrkindlmann/qa-skills

Skill Claude CodeCodex

Build Cypress test suites in TypeScript: E2E tests, component tests, custom commands, cy.intercept network control, cy.session login, Cypress Cloud, and CI integration. Covers retry-ability, the command queue, cross-origin flows with cy.origin, and data-driven testing with fixtures. Use when: "write E2E test in…

101 2mo ago A 185 tokens original MIT

database-testing

19

petrkindlmann/qa-skills

Skill Claude CodeCodex

Validate database integrity, test migrations forward and backward, verify schema constraints, manage seed data, detect migration drift, and identify query performance issues. Covers PostgreSQL, MySQL, MongoDB with Prisma, TypeORM, Drizzle, and SQLAlchemy, plus Testcontainers test databases. Use when: "database test,"…

101 2mo ago A 158 tokens original MIT

email-testing

20

petrkindlmann/qa-skills

Skill Claude CodeCodex

End-to-end testing of email-dependent flows — signup confirmation, password reset, magic-link login, OTP/MFA codes, and notification emails. Covers the capture-inbox decision tree (Mailpit, Mailosaur, MailSlurp, Ethereal), Playwright polling without fixed sleeps, regex extraction of links/OTPs from the email body…

101 2mo ago A 241 tokens original MIT

exploratory-testing

21

petrkindlmann/qa-skills

Skill Claude CodeCodex

Design and execute structured exploratory testing sessions. Covers Session-Based Test Management (SBTM), charter writing, heuristic-based exploration (HICCUPS, FEW HICCUPS), bug discovery patterns, note-taking templates, and conversion of findings to automated tests. Use when: "exploratory testing," "SBTM," "manual…

101 2mo ago A 152 tokens original MIT

mobile-testing

22

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test native, React Native, hybrid, and Flutter mobile apps with Appium 3.x, Detox, Maestro, and Patrol. Covers device farm setup (BrowserStack, Sauce Labs), gesture simulation, deep link and cold-start testing, push notifications, biometric (Face ID) auth, offline/poor-network simulation, and iOS/Android permission…

101 2mo ago C 198 tokens original MIT

petrkindlmann/qa-skills

Skill Claude CodeCodex

Use production telemetry as INPUT to design new tests. Covers OpenTelemetry integration with tests, trace-based assertions, log-informed test creation, production-error analysis for coverage gaps, and telemetry-driven test prioritization. Use when: "trace-based testing," "design tests from logs," "OpenTelemetry…

101 2mo ago A 149 tokens original MIT

payment-testing

24

petrkindlmann/qa-skills

Skill Claude CodeCodex

Test payment and checkout flows end to end against PSP sandboxes — Stripe first, with the general pattern for Adyen/Braintree/PayPal. Covers Stripe test-mode card numbers and their decline codes, the 3DS/SCA challenge flow and its nested-iframe handling in Playwright, test clocks for subscription/billing-cycle…

101 2mo ago A 192 tokens original MIT