Files
NotAlterra/skills/diligence/SKILL.md
T

900 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. Formatcargo fmt --all -- --check produces no output (pass).
  2. Clippycargo clippy --workspace -- -D warnings passes with zero errors.
  3. Doc coverage — run python3 tests/_check.py to confirm zero undocumented functions.
  4. Compilationcargo check --workspace must pass with no errors.
  5. Testscargo test --workspace passes all tests.
  6. Git status — no uncommitted changes unless intentionally deferred.
  7. Remote paritygit log --oneline -1 matches origin/master.
  8. 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.