dump-triage — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited dump-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.
Turn a pile of ST22 short dumps into a short, prioritized action list. The workflow is read-only end to end, so it is safe to point at production systems.
adt_ping to verify).(/sap/bc/adt/runtime/dumps) is not exposed on older releases. If adt_list_dumps 404s, the system doesn't serve the feed; tell the user to use ST22 directly and stop.
display roles). No write authorizations needed.
agreed and the user wants it applied, that's a separate (write-mode) edit via adt_set_source — confirm explicitly before leaving read-only territory.
YYYYMMDD on on-prem systems (e.g. 20260611).adt_list_dumps with a sensible window — default to the last 24h unless the user says otherwise (from: <yesterday YYYYMMDD>). Filter by user only when asked; note the user filter is enforced client-side. Respect maxResults (default 20; raise for a weekly review).
Don't fetch every dump's detail. Group the list by (runtimeError, program) — that pair defines a dump family. 200 TYPELOAD_NEW_VERSION entries from one job are one problem, not 200. Rank families by:
CONVT_NO_NUMBER, ITAB_DUPLICATE_KEY in update tasks rank above one-off TIME_OUTs).
For the top 3–5 families: adt_get_dump with the family's most recent dump id. The default chapter set (shortText, whatHappened, errorAnalysis, howToCorrect, whereTerminated, sourceCodeExtract) is usually enough; request more chapters only when the analysis is inconclusive.
From whereTerminated, extract program/include + line. Then pull real context: adt_get_source for that include around the failing line (use firstLine/lastLine — ±40 lines is plenty; never fetch a 20k-line program whole). The dump's own sourceCodeExtract is narrow; the live source shows the surrounding logic, and whether the code has changed since the dump (adt_list_versions / adt_compare_versions when staleness is suspected).
State a root-cause hypothesis grounded in the chapters + source, not generic advice. Typical patterns worth checking explicitly:
activated while jobs were running — correlate with adt_list_transports (recently released) rather than blaming the code.
dependent, a targeted adt_read_table SELECT can confirm the offending rows (read-only, requires NW 7.55+).
origin with the source context.
object (adt_where_used helps trace callers).
One block per family, ranked:
DUMP TRIAGE — DEV, last 24h (37 dumps → 4 families)
#1 TYPELOAD_NEW_VERSION — 29× — program SAPLZSD_PRICING — users: BATCH
Cause: TR E4DK900812 released 02:14, jobs ZPRICE_RECALC were mid-run.
Fix: none needed in code; reschedule the job after imports, or use
server-group restart. Prevention: import window outside job schedule.
#2 CONVT_NO_NUMBER — 5× — ZRPT_MARGIN line 214
Cause: CONV #( lv_input ) on a field fed from file upload; row 3 of the
file contains '12,5' (comma decimal).
Fix: validate/replace decimal separator before CONV — patch sketch below.
…Close with: which families are ignorable (one-offs, already-fixed code, test-system noise) — saying what NOT to chase is half the value of triage. Offer follow-ups: "want me to draft the fix for #2?" (write mode) or "schedule this as a daily morning check".
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.