incident-triage — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited incident-triage (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Use this skill when the user reports active failure. Goal: in under 5 tool calls, identify which service is bleeding, what pattern of error, and whether a recent deploy is responsible.
Call aggregate_logs:
query: "logger_level:error"
field: "service"
rangeSeconds: 1800Response gives you error counts per service for the last 30 minutes. The top 1–3 services are your suspects.
Run the same aggregate_logs query with from / to shifted back by 30 minutes (the previous half-hour). Compare:
For the highest-delta service, call search_logs_relative:
query: "logger_level:error AND service:<top-offender>"
rangeSeconds: 1800
limit: 50Read the sample error messages. Look for:
trace-debugging skill with that trace_id.If the spike has a clear start time, search a small window around it for startup markers:
query: '("Starting" OR "Booting" OR "version") AND service:<top-offender>'
from: <spike start - 5min>
to: <spike start + 1min>
limit: 20A startup log line within 5 minutes before the spike is a strong deploy signal.
If errors cluster on one pod, narrow further:
aggregate_logs
query: "logger_level:error AND service:<top-offender>"
field: "pod"
rangeSeconds: 1800A single bad pod → restart that pod (action for the user), no code change needed. Errors spread evenly across pods → real code or config issue.
error only on the first call and miss warn precursors. After identifying the offender service, broaden to all levels in step 3 for a few sample windows.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.