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.
npx skills add oumaimah-QA/QIOS --skill cypress-test-bootstrapgit clone --depth 1 https://github.com/oumaimah-QA/QIOSWrote 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.
[](https://agentmods.dev/skills/oumaimah-qa/qios/cypress-test-bootstrap)<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.
<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>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.
| Model | Per session | Once 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 |
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.
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.
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:
cypress.config.js— config with env variablespackage.json— dependencies and run scripts.env.example— environment variable template.gitignore— excludes artifacts, credentials, node_modulescypress/support/commands.js— login + apiRequest custom commandscypress/support/e2e.js— global importscypress/fixtures/users.json— test data structure- Sample transfer spec file ready to adapt to the target feature
Single Spec File — generates:
describeblock for the featurebeforeEachwith API login for authenticated flowscontext('Happy Path')/context('Negative Cases')/context('Boundary Cases')itblocks with clear descriptive names- Assertions with
.should()— nevercy.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
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.
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.
- 8d ago First seen · 102 lines · 128 tokens per session scan A b6c8737334d7
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.
Other skills, from other repositories
Console Error Hunter
Systematically detect, capture, and categorize browser console errors, warnings, and unhandled exceptions during automated test execution.
playwright-e2e
Comprehensive end-to-end testing skill using Playwright for web applications, covering page objects, selectors, assertions, waits, fixtures, and test organization.
JMeter Load Testing
Load and performance testing skill using Apache JMeter, covering test plans, thread groups, assertions, listeners, timers, and distributed testing.
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.
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.
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…