create-adr — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited create-adr (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 structured ADRs following the framework's template.
Ask if needed:
# Find highest ADR number
ls .architecture/decisions/adrs/ | grep -E "^ADR-[0-9]+" | sed 's/ADR-//' | sed 's/-.*//' | sort -n | tail -1New ADR = next sequential number (e.g., if highest is 003, create 004)
Security: Sanitize user input to prevent path traversal and injection:
.., /, \, null bytes, control charactersFormat: ADR-XXX-kebab-case-title.md
Examples:
ADR-001-use-react-for-frontend.mdADR-002-choose-postgresql-database.mdValid input: "Use React for Frontend" → use-react-for-frontend Invalid blocked: "../etc/passwd" → sanitized or rejected
.architecture/config.yml to check if pragmatic_mode is enabledUse the template from .architecture/templates/adr-template.md:
Core sections:
If pragmatic_mode is enabled: Add Pragmatic Enforcer Analysis section:
If deferrals enabled: Track deferred decisions in .architecture/deferrals.md
Write to: .architecture/decisions/adrs/ADR-XXX-title.md
Created ADR-XXX: [Title]
Location: .architecture/decisions/adrs/ADR-XXX-title.md
Status: [Status]
Key Points:
- Decision: [Summary]
- Main benefit: [Key benefit]
- Main trade-off: [Key trade-off]
Next Steps:
- [Immediate action 1]
- [Immediate action 2]Do create for:
Don't create for:
Before Creating ADR:
After Creating ADR:
Workflow Examples:
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.