cypress-test-bootstrap

cypress-test-bootstrap is a skill for Claude Code, Codex from oumaimah-QA/QIOS. It costs 128 tokens per session (821 once invoked), scanned A, original, MIT.

A skill for setting up Cypress, a tool that runs automated tests in a web browser, or for adding structured tests to an existing Cypress project. It can work from a feature, user story, Gherkin scenario, API endpoint, or existing test suite.

In plain words
What is it for?
Use it to create a Cypress project, add end-to-end tests for a feature, automate written scenarios, test an API with cy.request(), or extend an existing suite.
Why use it?
It provides the project files and test structure needed to start or extend browser and API testing without assembling them manually.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to create a Cypress project, add end-to-end tests for a feature, automate written scenarios, test an API with cy.request(), or extend an existing suite.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/oumaimah-qa/qios/cypress-test-bootstrap
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add oumaimah-QA/QIOS --skill cypress-test-bootstrap
Clone the repo
git clone --depth 1 https://github.com/oumaimah-QA/QIOS

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cypress-test-bootstrap

README.md
[![agentmods](https://agentmods.dev/badge/skills/oumaimah-qa/qios/cypress-test-bootstrap/github.svg)](https://agentmods.dev/skills/oumaimah-qa/qios/cypress-test-bootstrap)
Your own site
<a href="https://agentmods.dev/skills/oumaimah-qa/qios/cypress-test-bootstrap"><img src="https://agentmods.dev/badge/skills/oumaimah-qa/qios/cypress-test-bootstrap/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for cypress-test-bootstrap

Your own site · 80×15
<a href="https://agentmods.dev/skills/oumaimah-qa/qios/cypress-test-bootstrap"><img src="https://agentmods.dev/badge/skills/oumaimah-qa/qios/cypress-test-bootstrap.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 128 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 821 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00128 $0.00821
Opus 5 $0.00064 $0.00411
Sonnet 5 $0.00026 $0.00164
Haiku 4.5 $0.00013 $0.00082

Measured 8d ago against content hash b6c8737334d7, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

cypress-test-bootstrap scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

The scan reads SKILL.md. This mod also ships 4 executable files (examples/commands.js, examples/cypress.config.js, examples/transfer.cy.js, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/cypress-test-bootstrap/SKILL.md · 102 lines

How it starts

The opening of the file, as written. The whole thing — 102 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Cypress Test Bootstrap

Purpose

Scaffold a production-ready Cypress project or generate structured test files following best practices — organized for maintainability and QA team reuse.


Input Accepted

  • Request to init a new Cypress project from scratch
  • Feature name or module to add tests for
  • User Story or Gherkin scenarios to automate
  • API endpoint to test via cy.request()
  • Existing test suite to extend

Project Structure (Full Bootstrap)

[project-name]/
├── cypress.config.js
├── package.json
├── .env.example
├── .gitignore
└── cypress/
    ├── e2e/                        ← test specs by feature/module
    │   └── [module]/
    │       └── [feature].cy.js
    ├── fixtures/                   ← test data (JSON files)
    │   ├── users.json
    │   └── transactions.json
    ├── support/
    │   ├── e2e.js                  ← global setup / imports
    │   ├── commands.js             ← custom reusable commands
    │   └── api-helpers.js          ← API utility functions
    └── pages/                      ← Page Object Model
        └── [FeatureName]Page.js

Generation Process

Full Project Bootstrap — generates:

  1. cypress.config.js — config with env variables
  2. package.json — dependencies and run scripts
  3. .env.example — environment variable template
  4. .gitignore — excludes artifacts, credentials, node_modules
  5. cypress/support/commands.js — login + apiRequest custom commands
  6. cypress/support/e2e.js — global imports
  7. cypress/fixtures/users.json — test data structure
  8. Sample transfer spec file ready to adapt to the target feature

Single Spec File — generates:

  • describe block for the feature
  • beforeEach with API login for authenticated flows
  • context('Happy Path') / context('Negative Cases') / context('Boundary Cases')
  • it blocks with clear descriptive names
  • Assertions with .should() — never cy.wait(ms)
  • Custom commands for repeated actions

Key Conventions

✅ For authenticated features, login via API in beforeEach (cy.request) — not via UI
✅ Use data-testid selectors exclusively
✅ Group tests: context('Happy Path') / context('Negative Cases')
✅ Store all credentials and URLs in environment variables
✅ Use .should() assertions — never cy.wait(ms)
✅ Each test is fully independent — no shared state
✅ Clean up test data after tests when needed

Read the full file on GitHub · 102 lines

Files

What ships with it

7 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 102 lines · 128 tokens per session scan A b6c8737334d7

Subscribe to this mod's changes

cypress-test-bootstrap is a skill published in the GitHub repository oumaimah-QA/QIOS (3 stars, last pushed 1mo ago), licensed MIT. It adds 128 tokens to every session and 821 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

Console Error Hunter

Systematically detect, capture, and categorize browser console errors, warnings, and unhandled exceptions during automated test execution.

PramodDutta/qaskills · 26 tokens

playwright-e2e

Comprehensive end-to-end testing skill using Playwright for web applications, covering page objects, selectors, assertions, waits, fixtures, and test organization.

PramodDutta/qaskills · 36 tokens

JMeter Load Testing

Load and performance testing skill using Apache JMeter, covering test plans, thread groups, assertions, listeners, timers, and distributed testing.

PramodDutta/qaskills · 32 tokens

e2e-testing-claude-code

Make Claude Code write and maintain end-to-end tests like a senior SDET — Playwright and Cypress flows with stable locators, the Page Object Model, fixtures, reused auth state, network mocking, and flake-free CI. Claude Code E2E testing, done right.

PramodDutta/qaskills · 65 tokens

Browser Agent QA Testing

Teach agents to use AI browser agents for exploratory and smoke QA with step budgets, evidence-based assertions, guardrails, and Playwright conversion.

PramodDutta/qaskills · 33 tokens

selectors

Selector strategy, exploration-first workflow, locator priority order (getByRole then getByLabel then getByPlaceholder then getByText then getByTestId), and feedback/validation-message selector rules for Playwright page objects. Use when creating page objects, writing or updating locators, generating UI tests, or…

idavidov13/agentic-playwright · 136 tokens