incident-triage

incident-triage is a skill for Claude Code, Codex from MLOps-Courses/agentops-open-course. It costs 36 tokens per session (261 once invoked), scanned A, original, MIT.

A procedure for ranking open software incidents by urgency using their severity, opening time, and the current state of the affected service. An incident is a recorded software problem, such as an outage or broken feature.

In plain words
What is it for?
Use it to identify what engineers should investigate first, produce an evidence-based queue, and summarize the most urgent incident.
Why use it?
It turns an unstructured incident list into a repeatable investigation order and stops when important data is missing. It also keeps triage separate from actually fixing systems.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to identify what engineers should investigate first, produce an evidence-based queue, and summarize the most urgent incident.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/mlops-courses/agentops-open-course/incident-triage
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add MLOps-Courses/agentops-open-course --skill incident-triage
Clone the repo
git clone --depth 1 https://github.com/MLOps-Courses/agentops-open-course

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for incident-triage

README.md
[![agentmods](https://agentmods.dev/badge/skills/mlops-courses/agentops-open-course/incident-triage/github.svg)](https://agentmods.dev/skills/mlops-courses/agentops-open-course/incident-triage)
Your own site
<a href="https://agentmods.dev/skills/mlops-courses/agentops-open-course/incident-triage"><img src="https://agentmods.dev/badge/skills/mlops-courses/agentops-open-course/incident-triage/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for incident-triage

Your own site · 80×15
<a href="https://agentmods.dev/skills/mlops-courses/agentops-open-course/incident-triage"><img src="https://agentmods.dev/badge/skills/mlops-courses/agentops-open-course/incident-triage.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 36 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 261 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00036 $0.00261
Opus 5 $0.00018 $0.00130
Sonnet 5 $0.00007 $0.00052
Haiku 4.5 $0.00004 $0.00026

Measured 8d ago against content hash b7649c277932, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade A, and why

incident-triage scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/data/skills/incident-triage/SKILL.md · 16 lines

What it actually says

Incident Triage Skill

Instructions

  1. List every incident with list_incidents (no status filter), then keep only those whose status is open or investigating (drop any resolved).
  2. Stop with a clear data-quality error if an active incident has no id, service, supported severity, or opened_at; do not guess a ranking key.
  3. Rank by severity — SEV1 before SEV2 before SEV3 — then by the oldest opened_at first.
  4. For tied top candidates, call get_service_status; a down service outranks a degraded service, which outranks a healthy service.
  5. Report the most urgent incident first with its id, service, severity, age evidence, current service state, and one-line summary. List the remaining active incidents in priority order.
  6. Separate observed facts from your recommendation. Do not invent incidents, severities, timestamps, or service state, and do not run remediation from a triage request.
Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 16 lines · 36 tokens per session scan A b7649c277932

Subscribe to this mod's changes

incident-triage is a skill published in the GitHub repository MLOps-Courses/agentops-open-course (2 stars, last pushed yesterday), licensed MIT. It adds 36 tokens to every session and 261 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

troubleshoot-sandbox

Troubleshoot OpenSandbox issues by running diagnostics (logs, inspect, events, summary) via CLI or HTTP API to diagnose sandbox failures like OOM, crash, image pull errors, network problems, etc.

opensandbox-group/OpenSandbox · 48 tokens

routing-calibration

Use when calibrating or validating a maintained routing recipe against live model backends, including probe manifests and evidence reports.

vllm-project/semantic-router · 27 tokens

k8s-service-path

Trace the Kubernetes service path — Service to selector to pods to EndpointSlices to readiness, plus Ingress routing. Use when a service is getting no traffic, an ingress is not routing, or someone asks why a workload is unreachable inside a cluster.

automateyournetwork/netclaw · 55 tokens

kitaru-replay-ops

decode's Kitaru operator surface for headless replay and what-if — three-runs (observed / baseline-rerun / fork), CLI replay with --args/--overrides, checkpoint overrides, diffing execution records, cohort scaling, wait re-ask behavior, subagent-as-one-checkpoint. Use when replaying or forking a decode run, overriding…

decodingai-magazine/building-a-coding-agent-from-scratch-course · 97 tokens

cluster-events

Analyze cluster-wide Kubernetes events to identify issues and patterns. Aggregates Warning events, detects high-frequency patterns, and correlates related events.

scitix/siclaw · 30 tokens

networkpolicy-debug

Diagnose NetworkPolicy-related connectivity issues (traffic unexpectedly blocked, default-deny effects, egress blocking DNS). Identifies which NetworkPolicies affect a pod, checks ingress/egress rules, and verifies CNI support.

scitix/siclaw · 48 tokens