cypress
Cypress testing patterns, custom commands, component testing, and CI integration.
npx skills add a5c-ai/babysitter --skill cypress --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Cypress Skill Expert assistance for E2E and component testing with Cypress. ## Capabilities - Write E2E test scenarios - Create custom commands - Implement component testing - Configure CI pipelines - Handle authentication ## Test Patterns ```typescript describe('User Authentication', () => { beforeEach(() => { cy.visit('/login'); }); it('should login successfully', () => { cy.get('[data-testid="email"]').type('user@example.com'); cy.get('[data-testid="password"]').type('password123'); cy.get('[data-testid="submit"]').click(); cy.url().should('include', '/dashboard'); cy.contains('Welcome').should('be.visible'); }); }); ``` ## Custom Commands ```typescript Cypress.Commands.add('login', (email, password) => { cy.session([email, password], () => { cy.visit('/login'); cy.get('[data-testid="email"]').type(email); cy.get('[data-testid="password"]').type(password); cy.get('[data-testid="submit"]').click(); cy.url().should('include', '/dashboard'); }); }); ``` ## Target Processes - e2e-testing - component-testing - ci-cd-setup
- Capabilities
- Test Patterns
- Custom Commands
- Target Processes
What does the cypress skill do?
Cypress testing patterns, custom commands, component testing, and CI integration.
How do I install it?
Run `npx skills add a5c-ai/babysitter --skill cypress --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From a5c-ai/babysitter, a repository with 1,642 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
