Verify

Self-healing verification loop (test → clippy → fmt) Use when this capability is needed.

tomevault-io Updated

File contents

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

Self-Healing

  • Fail → analyze error → fix code → retry
  • Same error 3 times → notify user

Rules

  • Required before commit
  • Order: test → clippy → fmt
  • All must pass to proceed

Next Step

On all pass → immediately call /review


Converted and distributed by TomeVault — claim your Tome and manage your conversions.

tomevault-io/skills-registry/tree/main/mag123c--toktrack--verify commit 25d068a94c

Frequently asked questions

npx skillmds@latest add tomevault-io/verify-4