Skip to content

Releases: FMATheNomad/aiverify

aiverify v0.1.0 — AI Hallucination Detector

Choose a tag to compare

@FMATheNomad FMATheNomad released this 23 Jun 20:43

🔍 aiverify v0.1.0 — "Your AI coder is hallucinating"

Detect AI hallucinations in your code before they ship to production.

🚀 What is aiverify?

Every AI coding assistant hallucinates — Claude, Copilot, Cursor, ChatGPT, Tabnine. They invent functions that don't exist, use deprecated APIs, swap argument order, leak API keys, and leave infinite loops.

aiverify catches all of this in 3 seconds, zero config.

pip install aiverify
aiverify your-code.py

🧠 15 Detection Rules

Python: PY001 unused-import · PY002 hallucinated-func · PY003 deprecated-api · PY004 wrong-arg-order · PY005 type-mismatch

JavaScript/TypeScript: JS001 unused-import · JS002 hallucinated-func · JS003 deprecated-api · JS004 wrong-arg-order · JS005 null-undefined

Generic (all languages): GEN001 hardcoded-creds · GEN002 infinite-loop-risk · GEN003 unused-variable · GEN004 commented-deadcode · GEN005 magic-number

✨ Features

  • Tree-sitter AST parsing (NOT regex — accurate, no false positives)
  • Rich terminal output with colors
  • JSON output for CI/CD integration (GitHub Actions, GitLab CI)
  • Rule filtering: aiverify app.py --rules PY002 GEN001
  • Config file (.aiverifyrc)
  • Exit code 0 (pass) / 1 (issues found)

📦 Install

pip install aiverify

🤝 Support

If aiverify saves you one production incident, please ⭐ star the repo or consider sponsoring.

📜 License

MIT