quick-documentation-en — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited quick-documentation-en (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.
Creates precise inline documentation for the highlighted or following code block. No lengthy explanations outside the code — just clean, concise docstrings placed directly above the function.
| Trigger phrase | Context |
|---|---|
doc-this | Cursor is on a function |
document this | User highlights a code block |
add docs | New function with no documentation present |
add a docstring | Existing function, docstring is missing |
add JSDoc | JavaScript or TypeScript file |
.js, .ts → JSDoc; .py → PEP 257).JavaScript / TypeScript — JSDoc:
/**
* Calculates the total price including VAT.
*
* @param {number} net - Net price in CHF.
* @param {number} vat - VAT rate as a decimal (e.g. 0.077).
* @returns {number} Gross price in CHF.
* @throws {RangeError} If `vat` is negative.
*/
function calculateGross(net, vat) { ... }Python — PEP 257 (Google style):
def calculate_gross(net: float, vat: float) -> float:
"""Calculates the total price including VAT.
Args:
net: Net price in CHF.
vat: VAT rate as a decimal (e.g. 0.077).
Returns:
Gross price in CHF.
Raises:
ValueError: If `vat` is negative.
"""references/example.py — Python example: single-line docstring for a helper function~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.