prototype — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited prototype (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.
A prototype is throwaway code that answers one design question. It should make uncertainty visible before production implementation starts.
Use the smallest prototype that lets the user or agent learn something concrete. Delete it or absorb the validated decision when done.
First identify the question.
If the question is ambiguous, inspect the surrounding code and state the assumption before writing anything.
Build a tiny interactive terminal app when the question is about behavior.
Keep the reusable logic behind a pure interface:
The terminal shell is disposable. The reducer, state machine, or function shape can become the real implementation if it survives the prototype.
Show the current state after every action. Keep the UI on one screen when possible.
Build several structurally different UI variants when the question is visual or interaction-heavy.
Prefer mounting variants inside an existing route or page, controlled by a query parameter such as ?variant=A. Use a new prototype route only when no existing host page fits.
Each variant must differ in structure or interaction model, not just color or copy. Default to 3 variants and avoid more than 5.
Add a small switcher for cycling variants. The switcher must be visibly marked as prototype-only and must not ship in production builds.
When handing off, include:
Do not promote prototype code directly to production. Rewrite or harden the chosen path under the normal implementation and verification workflow.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.