From elmah.io
Analyze the most common errors in a log to find the highest-impact issues to fix. Use when the user wants to understand their error landscape or prioritize what to fix next.
How this skill is triggered — by the user, by Claude, or both
Slash command
/elmah-io:investigate-frequent-errorsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- The user asks "what are our most common errors?"
Get context — call system_get_context then logs_list. If the user hasn't specified a log, present the list and ask, or default to the one with the highest message count.
Get frequent errors — call messages_list_frequent to retrieve the top error groups by occurrence count. This is the primary data source for this skill.
Get recent context — call messages_list_recent to see the latest activity and confirm which frequent errors are still active (not just historical noise).
Get details on top offenders — for the top 3–5 most frequent error groups, call messages_get on a representative message to get full stack trace and context.
Correlate with deployments — call deployments_list to note if the top errors started or spiked around a specific deployment.
Prioritize and present errors using this scoring:
Suggest fixes based on the error type and stack trace:
.catch() or try/catchTop errors in <log name> (last 7 days):
P1 — <n> occurrences
[FATAL] <type>: <message>
First seen: <date> Last seen: <date>
Stack: <top frame>
Suggested fix: <one-line suggestion>
P2 — <n> occurrences
[ERROR] <type>: <message>
...
Summary: <total unique error types>, <total occurrences>, <most affected area>
Recommended first fix: <highest-impact item>
messages_list_frequent returns no data, fall back to messages_list_recent and group manually by title.Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub elmahio/elmah-io-ai-plugin --plugin elmah-io