coding-principles — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited coding-principles (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.
Reference card. Depth and examples live in the linked skills — this file consolidates the rules, not the rationale.
Don't assume. Don't hide confusion. Surface tradeoffs.
See prompt-engineering/SKILL.md for eliciting quality and writing specs.
Minimum code that solves the problem. Nothing speculative.
When NOT to simplify: hot paths, stable legacy, framework boilerplate, security-critical code, code you don't fully understand. When in doubt, leave it — a working system is more valuable than a clean one. See the code-simplifier agent and /refactor-clean command.
Touch only what you must. Every changed line must trace to the request.
See git-conventions/SKILL.md for style matching and the /refactor-clean command for scope.
Define success criteria up front. Loop until verified.
Transform tasks into verifiable goals:
Close the feedback loop BEFORE committing: change → verify → commit. Not: commit → discover it's broken.
See verification/SKILL.md, testing/SKILL.md, and planning-with-files/SKILL.md.
These principles are working if: fewer unnecessary diff lines, fewer rewrites from overcomplication, clarifying questions come before implementation rather than after mistakes.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.