log-driven-diagnosis-edfc90 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited log-driven-diagnosis-edfc90 (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.
When you cannot step through code, logs are your only visibility. Be methodical about extracting signal from noise — never dump whole log files into context.
grep for timestamps around the reported incident, or use tail: tail -n 200 app.log # most recent context
grep -n "2026-06-06T14:0" app.log # window around the incident
awk '/14:02:00/,/14:05:00/' app.log # bounded slice between timestamps grep -n "ERROR" app.log | head -5 # find the failing entry and its ID
grep -n "<request-id>" app.log # full lifecycle of that request
# structured (JSON) logs:
jq -c 'select(.request_id == "<request-id>")' app.log.jsonERROR log is usually just the final crash. The actual root cause is often a WARNING or unexpected INFO log that occurred milliseconds earlier (e.g., a connection retry failing, or an empty array being returned): grep -n -B 20 "<error-text>" app.log | grep -inE "warn|retry|timeout|empty"~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.