Documentation
README
Verify
Flow
cargo test → cargo clippy → cargo fmt --check
│ │ │
└── On fail: fix and retry (notify user after 3 same failures)
Commands
cargo test --quiet
cargo clippy --all-targets --all-features -- -D warnings
cargo fmt --all -- --check
Verification Honesty (MUST — PASS gate)
Verification trustworthiness lies not in "what passed" but in "what was actually executed and passed". Enforced before any PASS verdict.
Skip ≠ Pass
- Tests marked
ignored/#[ignore]are unverified → do not count as green. - Tests skipped due to environment (missing external service, platform constraints, etc.) are a BLOCKER. If unfixable, escalate to user as "verification incomplete + reason" rather than PASS.
This is the opening of the README. Read the full README on GitHub.