A community-driven registry for Claude, Cursor, Windsurf, Cline & more. Not affiliated with Anthropic.
Are you the author? Sign in to claim
A set of 8 global skills for Claude Code that enforce disciplined, test-driven agentic development. Install once, use in
A set of 8 global skills for Claude Code that enforce disciplined, test-driven agentic development. Install once, use in any project.
Without skills, AI coding agents write tutorial-quality code. They use brittle CSS selectors, skip tests, claim "done" without evidence, and guess at bug fixes. These skills fix that.
| Problem | What the skills do |
|---|---|
Agent writes fragile page.locator('.btn') selectors | Forces getByRole() locators that survive redesigns |
| Agent skips E2E tests ("unit tests already cover this") | /start makes Playwright E2E mandatory — literally cannot skip it |
| Agent claims "done" after writing code | /verify-done requires fresh test output as proof |
| Agent guesses at fixes and goes in circles | /debug forces 4-phase root cause analysis before any fix |
| No visual regression testing | toHaveScreenshot() with baselines, masking, CI font rendering |
| Tests break in CI but pass locally | CI pipeline patterns with sharding, artifacts, Docker for consistency |
| Agent writes "page loads" smoke tests and calls it coverage | Quality gates reject smoke-only coverage — demands real user workflow tests |
| No screenshots or traces for debugging | Screenshots every test, video on failure, traces on retry — all automatic |
| Skill | Command | What it does |
|---|---|---|
| Start | /start | Master orchestrator — routes tasks through the full pipeline with guaranteed test infrastructure and E2E coverage. |
| TDD | /tdd | Enforces strict red-green-refactor. No production code without a failing test first. |
| Systematic Debugging | /debug | 4-phase root cause investigation before any fix attempt. |
| Verification | /verify-done | Requires fresh evidence before any completion claim. |
| Brainstorming & Planning | /brainstorm-and-plan | Design-first workflow with specs and implementation plans. |
| E2E Playwright | /e2e-playwright | Battle-tested Playwright patterns, locators, fixtures, and debugging. |
| Test Automation Loop | /test-loop | Autonomous test-fix iteration — write tests, let the agent loop until green. |
| Code Review | /code-review | Two-stage review: spec compliance, then code quality. |
git clone https://github.com/burhankhatri/e2e-testing.git
cd e2e-testing
bash install.sh
This installs all skills globally to ~/.claude/skills/ and sets up the orchestrator CLAUDE.md at ~/.claude/CLAUDE.md.
If you already have a
~/.claude/CLAUDE.md, the installer will warn you and skip overwriting it. You can merge manually or replace it.
Once installed, skills are available in any project:
/start <task description>
That's it. /start handles everything — it routes your task through the correct skill chain, creates testing.md if it doesn't exist, guarantees Playwright E2E tests, and won't claim done without verification.
/start doestesting.md — auto-detects your project's test setup and writes a testing guide (if one doesn't exist)You can also invoke skills directly:
/brainstorm-and-plan then /tdd/debug then /tdd/tdd (tests for existing behavior first, then refactor)/e2e-playwright/test-loop/code-review/verify-doneThe /start skill orchestrates the full pipeline:
/start <task> → testing.md → Route → TDD → E2E → Verify
Routing examples:
/start add user auth → brainstorm → tdd → e2e → verify/start fix login loop → debug → tdd → e2e → verify/start extract auth middleware → tdd (existing behavior) → refactor → e2e → verify/start add checkout e2e tests → e2e → verifyMIT
Claude Code skill for YouTube creators — channel audits, video SEO, retention scripts, thumbnails, content strategy, Sho
AI image generation skill for Claude Code -- Creative Director powered by Gemini
A Claude Code skill by Hao (駱君昊) that learns your Facebook voice and auto-posts to FB / IG / Threads / X with a 14-day c
Universal SEO skill for Claude Code. 25 sub-skills + 18 sub-agents covering technical SEO, E-E-A-T, schema, GEO/AEO, bac