From Agentic SDD (Spec-Driven + TDD)
Use when adding or fixing end-to-end / integration tests, to select the right tool for the stack and write reliable, hermetic flows. Trigger on "e2e", "end-to-end", "integration test", "Playwright", "Detox", "Supertest", "flaky test", or before shipping a user-facing flow.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agentic-sdd:e2e-testingThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Verify whole flows through real interfaces. Complement unit tests; don't duplicate them.
Verify whole flows through real interfaces. Complement unit tests; don't duplicate them.
| Stack | Tool | Notes |
|---|---|---|
| Next.js / React web | Playwright (or Cypress) | Drive the browser; assert by role/text; test SSR + navigation + forms/actions |
| React Native | Detox or Maestro | Simulator/device flows; RN Testing Library for component-integration |
| Express / Fastify / NestJS API | Supertest / Pactum | Hit the real app instance; real/containerized DB |
| Service-to-service contracts | Pact | Consumer-driven contract tests |
| Any DB integration | Testcontainers | Ephemeral PostgreSQL/MongoDB, no mocking the DB |
| ASP.NET Core Web API (.NET) | WebApplicationFactory + xUnit | In-memory host + HttpClient; DB via Testcontainers for .NET; arm64-native on macOS |
| Avalonia desktop (XAML) | Appium (+ Avalonia.Headless for unit) | Drives the real window via the accessibility tree; macOS needs Accessibility permission |
| .NET web / Blazor UI | Playwright for .NET | Native Apple Silicon support |
data-testid/ARIA roles); retries only for genuinely async UI. Run new E2E twice to catch flakiness.See references/playwright-setup.md, references/api-e2e-setup.md, and references/dotnet-e2e-setup.md.
npx claudepluginhub walmanarias/agentic-workflow --plugin agentic-sddProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.