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

thrash-report-analyzer故障报告分析器

Agent Skill

thrash-report-analyzer 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

245

周安装

10

GitHub Stars

10

下载量

78
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:thrash-report-analyzer(故障报告分析器)
来源仓库:https://github.com/joyco-studio/skills
仓库路径:skills/thrash-report-analyzer
安装命令:
npx skills add https://github.com/joyco-studio/skills --skill thrash-report-analyzer
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/joyco-studio/skills --skill thrash-report-analyzer

简介

用于查找、检索和筛选故障报告相关文档与技术分析。

  • 适合获取系统异常、性能瓶颈或错误日志的处理方案。
  • 支持按严重等级、发生频率等维度归类,便于根因分析。
  • 安装命令:npx skills add https://github.com/joyco-studio/skills --skill thrash-report-analyzer。
  • 建议结合具体日志格式调整解析规则,确保准确性。

SKILL.md

Layout Thrashing Report Analysis

Analyze a bye-thrash report and produce actionable fix suggestions for every layout thrashing instance found.

Usage

/thrash-report-analyzer <path-to-report.json>

The argument is the absolute path to a JSON file containing the bye-thrash report array. If no file path is provided, ask the user to paste the report JSON directly.

Input format

Each entry in the report array has at minimum:

  • prop — the layout property that was read (e.g. offsetWidth, clientHeight)
  • count — how many times this thrash was observed
  • stack — a JavaScript call stack string captured at the moment of the layout read

Workflow

Follow these steps in order for each entry in the report.

Step 1 — Parse the stack trace

Split the stack string into individual frames. For each frame, extract:

  • Function name (or <anonymous>)
  • Source file path
  • Line and column number

Ignore frames from:

  • bye-thrash internals — any frame containing Thrash.onLayoutRead, onRead, or anonymous wrappers from the library's property patches
  • React internals — executeDispatch, processDispatchQueue, batchedUpdates, dispatchEvent, commitRoot, performSyncWorkOnRoot, renderRootSync, workLoop, and similar scheduler/reconciler frames
  • Next.js / webpack / turbopack internals — frames in next/dist, webpack-internal, turbopack, or __next

Step 2 — Identify the user-code function

Walk the filtered frames top-to-bottom. The first frame whose source file is inside the project (not in node_modules, .next, or dist) is the user-code function responsible for the thrash.

Record:

  • Function name
  • Source file path
  • Line number

Step 3 — Search the codebase for the function

Use Grep to locate the function definition. Search .tsx, .ts, .jsx, .js files. Exclude node_modules, .next, and dist directories.

If the function name is generic (e.g. onClick, handleResize), use the source file path from the stack trace to narrow the search.

Step 4 — Read the source and find the write → read pair

Read the source file around the identified line. Look for:

Style writes (any of these before the read):

  • el.style.* assignments
  • classList.add(), classList.remove(), classList.toggle(), classList.replace()
  • setAttribute('style',...) or setAttribute('class',...)
  • className assignment
  • innerHTML or textContent assignment (these invalidate layout)
  • insertBefore, appendChild, removeChild, replaceChild

Layout reads (the property from the report's prop field):

  • Dimension reads: offsetWidth, offsetHeight, offsetTop, offsetLeft, clientWidth, clientHeight, clientTop, clientLeft
  • Scroll reads: scrollTop, scrollLeft, scrollWidth, scrollHeight
  • Computed style: getComputedStyle(), currentStyle
  • Bounding rect: getBoundingClientRect()
  • Other: innerText, focus(), scrollTo(), scrollBy(), scrollIntoView()

Step 5 — Determine the fix

Choose the appropriate fix strategy:

ScenarioFix
Read is only used for comparison/loggingMove the read before the write
Read feeds into the write valueCache the read before the write, or use requestAnimationFrame to defer the write
Multiple elements written then read in a loopBatch all reads first, then batch all writes
Write is visual-only and read can be deferredWrap the read in requestAnimationFrame
Pattern is in a resize/scroll handlerDebounce or throttle the handler; use ResizeObserver instead

Step 6 — Generate the report

Output findings in this format for each entry:

### Entry: `{prop}` (count: {count})

- **Source file:** `path/to/file.tsx`
- **Function:** `functionName` (line X)
- **Write:** `el.style.fontSize = '24px'` (line Y)
- **Read:** `window.getComputedStyle(el).fontSize` (line Z)
- **Fix suggestion:** [brief actionable suggestion]

After all entries, add a Summary section:

## Summary

- **Total thrash instances:** N
- **Unique locations:** M
- **Most frequent:** `prop` in `functionName` (K occurrences)
- **Highest impact fix:** [which fix would eliminate the most thrash instances]

Edge cases

  • Stack trace points to minified code — If the source map is not available and function names are mangled, note this in the report and suggest the user provide source maps or an unminified build.
  • Multiple writes before a single read — Report all writes that contribute to the invalidation, not just the closest one.
  • Thrash happens inside a third-party library — If the first user-code frame is a call into a library that internally thrashes, note the library name and suggest the user file an issue or wrap the call in a requestAnimationFrame.
  • No matching source found — If Grep cannot locate the function, report the stack trace as-is and suggest the user verify the source is available in the working directory.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

38.15%
按下载量换算30

Claude

29.41%
按下载量换算23

Cursor

18.93%
按下载量换算15

Gemini CLI

9.06%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

权限需确认

当前来源未能明确判断权限范围,默认进入异常复核队列。

安装前确认

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

来源信息

继续浏览同类 Skills