Files
NotAlterra/skills/diligence/SKILL.md
T
2026-06-01 18:42:39 +02:00

681 B

name, description
name description
diligence Verification checklist for code changes — always run before claiming a task is complete.

Diligence

Before reporting any task as complete, verify:

  1. Doc coverage — run python3 tests/_check.py to confirm zero undocumented functions.
  2. Compilationcargo check --workspace must pass with no errors.
  3. Git status — no uncommitted changes unless intentionally deferred.
  4. Remote paritygit log --oneline -1 matches origin/master.
  5. Claim specificity — report exactly what was done and what was verified, not what was assumed.

Do not skip the check script. Do not assume prior passes still hold.