gen-uml — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited gen-uml (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.
Generate a Mermaid diagram from existing code — architecture, flow, or sequence — and verify it reflects what the code actually does, not what it was supposed to do.
call/data flow). Diagram what exists.
Every box maps to a real module/function; every arrow to a real call/dependency. Drop or fix anything you can't point to in the source. A diagram that quietly diverges is worse than none.
Architecture (modules/dependencies):
graph TD
UI[UI] --> UC[Use cases]
UC --> SVC[Services]
SVC --> REPO[Repository]
REPO --> DB[(Store)]Flow (a process / decision path):
flowchart TD
A[Receive task] --> B{Brownfield?}
B -- yes --> C[Explore code]
B -- no --> D[Brainstorm]
C --> D --> E[Plan]Sequence (interaction over time):
sequenceDiagram
participant C as Client
participant R as Repo
participant DB as Store
C->>R: save(entity)
R->>DB: update(blob)
DB-->>R: version
R-->>C: okThe Mermaid block plus one line per diagram confirming the match-check passed (or listing what was corrected).
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.