skills/automated-triage/SKILL.md
Triage Monte Carlo alerts interactively or build an automated workflow. Fetch, score, and troubleshoot alerts using MCP tools now, or design a reusable workflow that runs on a schedule.
npx skillsauth add ranbot-ai/awesome-skills automated-triageInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
This skill helps you design, test, and deploy an automated triage agent for Monte Carlo alerts. Rather than a fixed workflow, it gives you the building blocks — a set of MCP tools, a description of each triage stage, and a working example — so you can build a process that matches how your team actually responds to alerts.
Monte Carlo tool routing (required): Always call Monte Carlo MCP tools through this plugin's bundled server, whose fully-qualified tool names are
mcp__plugin_mc-agent-toolkit_monte-carlo-mcp__<tool>(e.g.mcp__plugin_mc-agent-toolkit_monte-carlo-mcp__get_alerts). Bare tool names used in this skill (get_alerts,search,get_table, …) refer to that bundled server. If the session also has a separately-configuredmonte-carlo-mcpserver, do not route to it — it may point at a different endpoint or credentials.
Read the reference files before proceeding:
references/triage-stages.md (relative to this file)references/triage-example.md (relative to this file)Activate when the user:
Do not activate when the user is:
All tools are available via the monte-carlo-mcp MCP server.
| Tool | Toolset | Purpose |
| -------------------------------- | -------- | --------------------------------------------------------------- |
| get_alerts | default | Fetch recent alerts for a time window |
| alert_assessment | default | Score an alert by incident likelihood and potential impact (HIGH/MEDIUM/LOW each) |
| run_troubleshooting_agent | default | Run the Monte Carlo Troubleshooting Agent on a single alert; async by default — returns immediately, reuses existing results when available |
| get_troubleshooting_agent_results | default | Poll an async troubleshooting run by incident_id; returns status (not_found/running/success/failed) and results when complete |
| update_alert | default | Update an alert's status and/or declare an incident by setting severity |
| set_alert_owner | default | Assign an owner to an alert by email |
| create_or_update_alert_comment | default | Post or update a triage comment on an alert |
| mark_event_as_normal | default | Mark all anomaly events in an alert as normal, triggering ML threshold recalibration to prevent re-alerting on the same pattern |
Read references/triage-stages.md for a full description of each stage and how to customise it. The high-level flow is:
alert_assessmentrun_troubleshooting_agent on high-signal alerts to get root cause analysisThe triage process is not fixed. Read the stages reference to understand the options and tradeoffs at each step, then design a workflow that fits your team's needs.
Most teams move through roughly the same arc, though the pace and path vary:
tools
Delegate coding tasks to the Grok Build CLI only when the user explicitly requests it, while the orchestrator retains review and landing responsibility.
development
--- name: graceful-shutdown description: Implement graceful shutdown for servers and workers: drain connections, finish in-flight work, release resources, and exit cleanly on SIGTERM/SIGINT. category: AI & Agents source: antigravity tags: [python, typescript, node, api, claude, ai, template, docker, kubernetes] url: https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/graceful-shutdown --- # Graceful Shutdown ## Overview A skill for implementing graceful shutdown in server
development
--- name: falsify description: The scientific thinking protocol for AI agents. Use when facing complex, ambiguous, or high-stakes questions where guessing is costly: hypothesis → attempt to break it → evidence → calibrated co category: Creative & Media source: antigravity tags: [markdown, claude, ai, agent, llm, template, design, security, rag, cro] url: https://github.com/sickn33/antigravity-awesome-skills/tree/main/skills/falsify --- # Falsify — The Scientific Thinking Protocol > Think like
tools
Configure approved delegation lanes across installed implementer CLIs, including optional model and effort choices, then write global or project config only after explicit user approval.