From elmah.io
Check for new or increased errors after a deployment. Use when the user just shipped code and wants to confirm nothing broke in production.
How this skill is triggered — by the user, by Claude, or both
Slash command
/elmah-io:post-deployment-checkThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- The user just deployed and says "check if anything broke"
Get context — call system_get_context then logs_list to identify the target log. If the user hasn't specified a log, use the first available one or ask.
Find the deployment — call deployments_list to get recent deployments. Identify the most recent one (or the one the user describes). Note its timestamp.
Get pre-deployment baseline — call messages_count for the period immediately before the deployment (e.g., 1 hour prior). Also call messages_list_frequent for the pre-deployment window if available.
Get post-deployment errors — call messages_list_recent filtered to errors after the deployment timestamp. Look for:
Check uptime — call uptime_list and uptime_get_details for any monitors in a down state.
Report findings:
Deployment: <version> at <timestamp>
Error rate: <n>/hr before → <m>/hr after (<+/- delta>%)
New errors after deploy:
[ERROR] <type>: <message> — first seen <timestamp>, <n> occurrences
...
Uptime: <monitor name> — <status>
Verdict: HEALTHY | UNHEALTHY
<one-line summary>
npx claudepluginhub elmahio/elmah-io-ai-plugin --plugin elmah-ioProvides 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.