claudex-testing-e2e
Generate blackbox e2e smoke test plans for features
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Generate blackbox e2e smoke test plans for features
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
Create and orchestrate a Claude Code agent team for feature implementation
Run an agent team to implement a planned feature
Post-merge cleanup for a completed feature
Naming conventions for features, branches, docs, and commits
Brainstorm a feature, produce design + e2e test plan, and create a draft PR
| name | claudex-testing-e2e |
| description | Generate blackbox e2e smoke test plans for features |
Generate a blackbox end-to-end smoke test plan for a feature. This is a foundation skill — it produces a testing-plan.md document, not test code.
NEVER generate:
tests/*.test.ts or *.spec.ts filesThis skill produces a human/agent-executable test plan document — shell commands, curl calls, browser steps, CLI invocations. Not code.
design.md describing what the feature doesconfig.json for context (paths, branch, etc.)Write testing-plan.md in the feature's docs directory with these sections:
One sentence: what are we verifying works?
Concrete list — credentials needed, dependencies to install, test data to create, services to start.
Step-by-step commands that a tester (human or agent) can execute:
/tmp/ (outside git-tracked files)curl, CLI commands, browser stepsConcrete outputs for each step — exact JSON shapes, status codes, UI states. Never write "should work" — describe what success looks like with evidence.
Error paths to verify:
What artifacts to capture as proof:
If the feature is large, break testing into phases:
Always end the testing plan with a Non-Goals section listing what is explicitly NOT tested (to prevent scope creep during the testing phase).