Every AI coding tool hallucinates function names, deprecated APIs, and wrong parameters. Every detection tool uses another AI to check. VFault checks against the actual source code.
| VFault | Every competitor | |
|---|---|---|
| Method | Source code lookup | LLM-as-judge |
| Speed | <1ms | 152ms+ |
| False positives | 0% | 5–10% |
| Provides corrections | Yes + closest match | No — score only |
| Can verifier hallucinate? | Impossible | Yes |
| Cost | Free CLI | Paid |
Catches non-existent function names and suggests the correct one. wp_register_scripts → wp_register_script
Flags deprecated functions with the version they were removed and the replacement to use instead.
Compares stated parameter signatures against the current source. Catches changes like $in_footer → $args in WP 6.3.
Verifies action and filter hooks against 2,346 hooks extracted from WordPress core. Non-existent hooks are flagged.
Correct functions are verified with the version they were introduced, source file, and full parameter signature.
Recognises wpdb, WP_REST_Request, and WP_Query methods without false positives on object-oriented code.
VFault checks against the source. Free, open source, ready to use.