regex-builder-38f042 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited regex-builder-38f042 (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.
Produce correct, readable regular expressions — and explain them so the user actually understands what they're shipping.
Infer the regex flavor (JavaScript/PCRE/Python/Go) from context; if unstated, default to one and say so (assumed — confirm). Always deliver a working pattern and tests even from a loose description. Never leave placeholders.
Detect which from the input.
The regex in a code block, plus the flavor and any flags (e.g. i, g, m) and why.
A token-by-token table or list: each part of the pattern and what it matches.
| Token | Matches |
|---|---|
^ | start of string |
| … | … |
Edge cases, catastrophic-backtracking risks, anchoring, Unicode, and a simpler alternative if the regex is getting unwieldy (sometimes "don't use regex" is the right answer — say so).
\d, lookbehind, and named groups differ across engines~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.