explain — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited explain (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.
Explain $ARGUMENTS. Do the research and deliver the explanation in one pass.
Determine the mode from the argument:
Start by checking the git history for the file: git log --oneline -15 <file> and git log -1 -p <file> for the most recent change. Commit messages often reveal the "why" that the code itself doesn't — a bug that was fixed, a refactor that simplified something, a workaround for an external constraint. Note anything that reframes the code before diving into it.
Then read the code carefully and explain in this order:
Plain English. No jargon, no code. Describe what this code accomplishes from the outside — what goes in, what comes out, what changes as a result. Write it the way you'd explain it to the client who asked for the feature.
Narrate the code path in plain English, step by step. For each meaningful chunk:
Don't narrate every line — skip the obvious. Focus on the parts that require interpretation.
Name the Rails, Ruby, or design patterns this code is using — and why they appear here. Examples:
call method, one responsibility"delegate to avoid Law of Demeter violations"If the code is using a pattern poorly or unexpectedly, name that too — neutrally. This isn't a review, but understanding requires knowing when something is off-label.
Any non-obvious behaviour, implicit dependencies, or things that would surprise someone maintaining this code. Not a critique — just "here's what you'd need to know to work safely in this area."
Start with the Rails router. Locate the route(s) that correspond to the described flow. From each entry point, trace the execution path through the codebase — controllers, service objects, models, callbacks, jobs, mailers. Follow both success and failure paths.
Then deliver the explanation in two parts: a diagram and a summary.
Render a concise visual flowchart of the system using box-drawing characters. The diagram should show:
Conventions:
┌─┐, │, ├──, └──, ▼, ◄YES / NOThe goal is to outline the system concisely — show how it behaves, not how the code is structured. A reader should be able to understand the full lifecycle from the diagram alone.
See the example in example.md for the expected style and level of detail.
After the diagram, add three sections in plain English:
Entry points — every way this flow can be triggered. For each, one sentence describing what triggers it and what it does.
Branching logic — the conditions that shape the flow. Feature flags, state checks, validations, guard clauses — anything that determines which path is taken.
Side effects — everything with consequences outside the immediate flow. Jobs, mailers, external API calls, broadcasts, cache writes, state transitions. The things you'd need to know about before touching this code.
Clear and direct. You're translating, not teaching and not judging. The goal is that they finish with a working mental model of what this code does and how to navigate it. Skip all hedging — if something is unclear in the code itself, say so plainly.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.