api-design — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited api-design (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.
APIs are contracts. Once published, every behavior — documented or not — becomes something users depend on (Hyrum's Law). This skill enforces the discipline of designing APIs that are stable, self-documenting, and difficult to misuse.
Verify: You can write 3 example usages without looking at the implementation.
Verify: Every public field and behavior is either documented as stable or marked as internal.
/api/v1/, Content-Type: application/vnd.myapi.v1+jsonVerify: API version is in the URL or headers. Deprecation policy is documented.
Verify: A new developer can use the API from documentation alone, without reading source code.
| Excuse | Rebuttal |
|---|---|
| "We'll document it later" | Undocumented APIs become black boxes. Document as you build. |
| "We can break it, it's internal" | Internal APIs become external. Design them well from the start. |
| "Versioning is premature" | Retrofitting versioning into an unversioned API is painful. Start versioned. |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.