mirror of
https://github.com/forkless/NotAlterra.git
synced 2026-08-25 19:52:37 +02:00
681 B
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:
- Doc coverage — run
python3 tests/_check.pyto confirm zero undocumented functions. - Compilation —
cargo check --workspacemust pass with no errors. - Git status — no uncommitted changes unless intentionally deferred.
- Remote parity —
git log --oneline -1matchesorigin/master. - 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.