cypress-docs

Search and extract verified Cypress information from official documentation sources.

5|Updated Feb 15, 2026
One-click install
npx skills add https://github.com/sujaykundu777/mission-control --skill cypress-docs-sujaykundu777
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cypress-docs
Source: https://github.com/sujaykundu777/mission-control/tree/main/.github/skills/cypress-docs
Command: npx skills add https://github.com/sujaykundu777/mission-control --skill cypress-docs-sujaykundu777

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? It prevents hallucinated or outdated answers about Cypress by grounding every claim in official documentation from docs.cypress.io and cypress.io, using LLM-optimized markdown endpoints. ## Core Features & Use Cases - LLM-Optimized Retrieval: Fetches /llms.txt and prefers /llm/* markdown paths for cleaner, structured documentation content. - Query Classification & Routing: Routes questions to the right doc sections such as /api/commands/, /guides/, /configuration/, or /references/error-messages/. - Anti-Hallucination Guard: Refuses to invent APIs or behavior and explicitly states when a claim cannot be verified in the docs. - Use Case: When a developer asks how to mock API requests, the skill locates cy.intercept documentation, extracts syntax and examples, and returns a verified answer with version notes. ## Quick Start Ask the agent how to mock API requests in Cypress and have it verify the answer against the official Cypress documentation.

Frequently Asked Questions about cypress-docs

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I look up Cypress command syntax and options?

Search the /api/commands/ section of docs.cypress.io, preferably via the /llm/* markdown endpoints listed in /llms.txt. Extract the syntax, required arguments, optional options, return behavior, and an official example for the command.

How do I mock API requests in Cypress?

Use cy.intercept to stub and spy on network requests. The skill classifies this as an API/network query, searches the intercept documentation, and returns the syntax, usage examples, and relevant notes from official docs.

Does Cypress documentation offer LLM-friendly markdown versions?

Yes. docs.cypress.io publishes /llms.txt, and every page has an optimized markdown version under /llm/, for example /llm/markdown/app/faq.md. These are cleaner and easier to parse than HTML pages.

What happens if a Cypress feature cannot be verified in the docs?

The skill states that the claim could not be verified in Cypress documentation and offers the closest supported alternative if one exists. It never invents APIs, syntax, or behavior.

How are Cypress error messages and stack traces handled?

Queries containing errors are routed first to /references/error-messages/ in the official docs, then expanded to guides and API documentation if needed. This ensures troubleshooting answers match documented error behavior.

When should I use documentation lookup instead of writing tests directly?

Use documentation lookup whenever correctness depends on official sources, such as exact signatures, defaults, deprecated APIs, or version differences. For writing or fixing tests without doc lookups, a test-authoring skill is more appropriate.