agentsclimarketplace

Cypress skill

Skill jovd83/Cypress-skill

End-to-end Cypress skill pack for planning, authoring, debugging, documenting, and operationalizing test automation.

Install
npx -y skills add jovd83/Cypress-skill

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Flagship Cypress skill pack for planning, authoring, debugging, documenting, and operationalizing Cypress. Routes E2E, API, component, visual, accessibility, CI/CD, coverage, docs, CLI automation, and handoff workflows.

SKILL.md

8.5 KB, as published. Nobody here has run it

Telemetry & Logging

[!IMPORTANT] All usage of this skill must be logged via the Skill Dispatcher to ensure audit logs and wallboard analytics are accurate: ./log-dispatch.cmd --skill <skill_name> --intent <intent> --model <model_name> --reason <reason> (or ./log-dispatch.sh on Linux)

Cypress Skill Pack

Author: jovd83 | Version: 1.2.1

Use this root skill as the package entrypoint for general Cypress requests. It is responsible for routing work to the smallest useful subskill, applying the shared standards of this repository, and keeping the package boundaries clear.

Do not load every guide by default. Read only the subskill and reference files that materially help with the current task.

Responsibilities

  • Route broad or ambiguous Cypress requests to the right subskill.
  • Apply the shared testing standards used across this repository.
  • Keep core testing guidance separate from optional planning, documentation, reporting, and handoff workflows.

Boundaries

  • Do not duplicate deep implementation guidance that already lives in a focused subskill.
  • Do not treat this repository as shared-memory infrastructure. If durable cross-agent knowledge is needed beyond one repo or skill, integrate an external shared-memory skill instead of storing it here implicitly.
  • Do not silently promote runtime notes into persistent artifacts. Persistent outputs should be deliberate, named, and stored in a documented workflow such as coverage_plan/ or documentation/.

Dispatcher Integration

Use skill-dispatcher as the primary integration layer whenever this package needs help from another skill or when a broader orchestrator is deciding whether Cypress is the right execution layer.

  • Prefer dispatcher-led routing by intent, especially for tasks such as implement_ui_confirmation_test, render_test_artifact, and review_automation_quality.
  • Prefer the repository's native browser automation stack over Cypress when repo evidence points elsewhere.
  • Treat direct paths to sibling skills as a compatibility fallback, not as the primary routing contract.
  • Keep shared-memory usage limited to stable cross-project policy supplied externally, never task-local routing state.

Routing Map

NeedUse
Generic Cypress request or unclear starting pointorchestrator/SKILL.md
Writing or fixing Cypress testscore/SKILL.md
CI, sharding, artifacts, containerized executionci/SKILL.md
Page-object structure or fixture-vs-helper decisionspom/SKILL.md
Playwright or Selenium/WebDriver migrationmigration/SKILL.md
CLI browser automationcypress-cli/SKILL.md
Requirements extractionanalysis/SKILL.md
Coverage planningcoverage_plan/generation/SKILL.md and coverage_plan/review/SKILL.md
Coverage-plan maintenancecoverage_plan/auto-sync/SKILL.md
Narrative test documentation or format conversionDispatch render_test_artifact through skill-dispatcher; fall back to C:\projects\skills\test-artifact-export-skill\SKILL.md when needed
Automation-code documentation or failure diagnosisdocumentation/tests/SKILL.md or documentation/root_cause/SKILL.md
Human or agent handoff workflowsdocumentation/cypress-handover/SKILL.md and documentation/session-state/SKILL.md
Test-case export to Xray, Zephyr, TestLink, or TestRailDispatch render_test_artifact through skill-dispatcher; fall back to C:\projects\skills\test-artifact-export-skill\SKILL.md when needed
Test-management integrations after export existsmappers/, and reporters/ subskills
IDE-specific setup helpinstallers/ subskills
Non-technical summary reportingreporting/stakeholder/SKILL.md

Operating Workflow

  1. Inspect the existing repository, tests, and requirements before prescribing structure.
  2. Infer the user's intent when it is clear; ask for clarification only when the decision would materially change the artifact or scope.
  3. Choose the smallest subskill that can complete the task well.
  4. Load only the relevant reference guides or scripts for that path.
  5. Produce concrete outputs such as code, plans, documentation, validation results, or stakeholder summaries instead of generic advice.

Shared Standards

  • Prefer resilient, user-facing locators and meaningful assertions.
  • Avoid hard waits, placeholder tests, placeholder assertions, and fake completion claims.
  • Keep setup and state explicit. Use cy.session() and seeded backend state intentionally, not implicitly.
  • Keep UI behavior in page objects only when repetition or complexity justifies them; keep helpers stateless where possible.
  • Mock external dependencies selectively; do not hide the behavior of the system under test behind unnecessary mocks.
  • Keep requirements, plans, documentation, and executable tests traceable to one another when the workflow includes planning or documentation.

Gotchas

  • Asynchronous Execution: Cypress commands are added to a queue and run asynchronously. Do not use standard async/await with Cypress commands; use .then() for yielding values.
  • Conditional Testing Avoidance: Avoid writing tests that conditionally behave differently depending on the DOM state (e.g., "if this button exists, click it"). Cypress expects deterministic state.
  • Cross-Origin Limits: Navigating to a different superdomain within a single test requires cy.origin().
  • Anti-Pattern Hard Waits: Avoid using cy.wait(Number). Always prefer waiting for aliases on network intercepts or relying on Cypress's built-in retry-ability on assertions.

Official References

Memory Model

  • Runtime memory: ephemeral reasoning and task state for the current thread.
  • Project-local persistent memory: artifacts such as coverage plans, handovers, session-state references, and generated documentation stored inside the target repository.
  • Shared memory: optional and external. Promote information into shared memory only when it is stable, reusable across tasks, and belongs outside this skill pack.

Package Shape

  • core/, ci/, pom/, migration/, and cypress-cli/ are the reusable testing foundation.
  • analysis/, coverage_plan/, and documentation/ add planning and traceability workflows.
  • documentation/cypress-handover/ and documentation/session-state/ are optional operational workflows for multi-session or multi-operator work.
  • mappers/, reporters/, reporting/, and installers/ are optional extensions, not prerequisites for ordinary Cypress authoring.
  • The standalone test-artifact-export-skill skill is the canonical formatter/exporter for narrative test cases and tool-ready artifacts, but reach it through skill-dispatcher first when cross-skill routing is available.

Use the Root Skill Well

  • Stay at the root only for routing, package discovery, or repo-wide standards.
  • Move into a focused subskill as soon as the task is specific enough.
  • Keep the package coherent: update the README, changelog, metadata, and validation artifacts when repo-level behavior changes.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.