Token导航 LogoToken导航TokenDH.com
研究检索操作浏览器github未标认证来源可访问许可证需确认审计通过

cypress-debuggerCypress debugger 搜索

Agent Skill

用于辅助测试设计、自动化测试、用例整理和回归验证。它适合让 Agent 编写单元测试、端到端测试、测试计划或根据失败日志定位问题。使用时需要确认项目测试框架、运行命令和夹具数据,避免为了通过测试而改坏真实逻辑;涉及浏览器或外部服务时,应区分本地模拟、测试环境和生产环境。

总安装

737

周安装

31

GitHub Stars

1

下载量

258
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cypress-debugger(Cypress debugger 搜索)
来源仓库:https://github.com/dididy/e2e-skills
仓库路径:skills/cypress-debugger
安装命令:
npx skills add https://github.com/dididy/e2e-skills --skill cypress-debugger
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dididy/e2e-skills --skill cypress-debugger

简介

cypress-debugger 解析 mochawesome 或 JUnit 报告定位测试失败根因。

  • 适用于自动化失败分析与快速修复建议生成。
  • 需先生成结构化报告,不支持仅依赖控制台输出诊断。
  • 使用前应确认报告路径正确,避免读取过期或损坏文件。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Cypress Failed Test Debugger

Diagnose Cypress test failures from mochawesome or JUnit report files. Classifies root causes and provides concrete fixes.

Prerequisites: Generate Report First

Do NOT rely on Cypress stdout — use a structured reporter instead:

# mochawesome (recommended)
cypress run --reporter mochawesome --reporter-options "reportDir=cypress/reports,json=true,html=false"

# JUnit (CI-friendly)
cypress run --reporter junit --reporter-options "mochaFile=cypress/reports/results.xml"

Phase 1: Extract Failures

# Find report if path not specified
find . -name "mochawesome.json" -path "*/cypress/*" | head -5
find . -name "*.xml" -path "*/cypress/*" | head -5

# Extract failed tests from mochawesome (jq)
cat cypress/reports/mochawesome.json | jq '[
  .. | objects |
  select(.fail == true) |
  {title: .title, fullTitle: .fullTitle, duration: .duration, error: .err.message, stack: .err.estack}
]'

# Extract failed tests (node fallback)
node -e "
const r = require('./cypress/reports/mochawesome.json');
const flat = (s) => [...(s.tests||[]), ...(s.suites||[]).flatMap(flat)];
r.results.flatMap(flat)
  .filter(t => t.fail)
  .forEach(t => console.log('FAIL', t.fullTitle, '\n ', t.err?.message?.slice(0,120)))
"

# Extract failed tests from JUnit XML (node)
node -e "
const fs = require('fs');
const xml = fs.readFileSync('./cypress/reports/results.xml', 'utf-8');
const failures = [...xml.matchAll(/<testcase[^>]+name=\"([^\"]+)\"[^>]*>[\s\S]*?<failure[^>]*message=\"([^\"]+)\"/g)];
failures.forEach(([,name,msg]) => console.log('FAIL', name, '\n ', msg.slice(0,120)));
"

Phase 2: Classify Root Cause

Use Phase 1 output (error message + duration) to classify. Most failures are identifiable here — only go to Phase 3 if still unclear.

#CategorySignalsReview Pattern
F1Flaky / TimingTimed out retrying, duration near defaultCommandTimeout, passes on retry#9a
F2Selector BrokenExpected to find element: '...' but never found it, cy.get() failed#6, #10
F3Network Dependencycy.intercept() not matched, XHR failed, unexpected API response
F4Assertion Mismatchexpected X to equal Y, AssertionError#4
F5Missing ThenAction completed but wrong state remains#2
F6Condition Branch MissingElement conditionally present, assertion always runs#5
F7Test Isolation FailurePasses alone, fails in suite; leaked state via cy.session or cookies
F8Environment MismatchCI vs local only; baseUrl, viewport, OS differences
F9Data DependencyMissing seed data, hardcoded IDs, cy.fixture() mismatch
F10Auth / Sessioncy.session() expired, role-based UI not rendered
F11Async Order Assumption.then() chain order, parallel cy.request() race
F12Selector DriftDOM changed, custom command or Page Object selector not updated#10
F13Error Swallowingcy.on('uncaught:exception', () => false) hiding failures#3
F14Animation RaceElement visible but content not yet rendered; CSS transition not complete#9a

Classification steps:

  1. Match error message to signals above
  2. duration near defaultCommandTimeout (4s) → F1 or F2
  3. CI-only failure → F7 or F8
  4. Passes on retry → F1

Phase 3: Screenshot & Video Analysis (only if Phase 2 is unclear)

Cypress automatically captures screenshots on failure and optionally records video.

# Find screenshots for failed tests
find cypress/screenshots -name "*.png" | head -20

# Find videos
find cypress/videos -name "*.mp4" | head -10

Progressive disclosure — stop as soon as root cause is clear:

# 1. Check screenshot path from mochawesome report
cat cypress/reports/mochawesome.json | jq '[
  .. | objects | select(.fail == true) |
  {title: .title, screenshots: [.context? // empty | .. | strings | select(endswith(".png"))]}
]'

# 2. Check for JS errors in report context
cat cypress/reports/mochawesome.json | jq '[
  .. | objects | select(.fail == true) | .err.estack // empty
] | .[]' 2>/dev/null | head -50

# 3. Still unclear — inspect screenshot via browser agent
#    → open cypress/screenshots/<spec>/<test name> (failed).png and compare
#    → check cypress/videos/<spec>.mp4 for full run context

Phase 4: Fix Suggestions

## [P0/P1/P2] `test name`

- **Category:** F2 — Selector Broken
- **Error:** `Expected to find element: '.submit-btn', but never found it`
- **Root Cause:** Button selector too broad after DOM refactor
- **Fix:**

// before cy.get('.submit-btn').click(); // after cy.get('[data-testid="login-submit"]').click();

Severity:

  • P0: Test passes silently when feature is broken (F6, F13)
  • P1: Intermittent or misleading failures (F1, F2, F3, F7, F11, F14)
  • P2: Consistent failures, straightforward fix (F4, F5, F8, F9, F10, F12)

Output Format

## Failure Summary
- Total: N failed (M flaky, K broken, J environment)

## [P0] `test name` — F13 Error Swallowing
...

## Review Summary
| Sev | Count | Top Category | Files |
|-----|-------|-------------|-------|
| P0  | 1     | Error Swallowing | auth.cy.ts |
| P1  | 3     | Flaky / Timing | dashboard.cy.ts |
| P2  | 2     | Selector Drift | settings.cy.ts |

Fix P0 first. Run `cypress run --spec <file> --headed` to reproduce locally.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.13%
按下载量换算96

Claude

28.27%
按下载量换算73

Cursor

16.21%
按下载量换算42

Gemini CLI

9%
按下载量换算23

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills