Prevents shortcuts and cheating when completing tasks. Blocks commits with warning suppressions, commented tests, or deleted assertions.
/plugin marketplace add ANcpLua/ancplua-claude-plugins/plugin install completion-integrity@ancplua-claude-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Git pre-commit hook that blocks commits with integrity violations.
bash "${CLAUDE_PLUGIN_ROOT}/scripts/install-git-hook.sh"
| Pattern | Why It's Bad |
|---|---|
Warning suppression (#pragma warning disable, eslint-disable) | Hides problems instead of fixing them |
| Commented-out tests | Tests exist for a reason |
| Deleted assertions (>2) | Removing checks doesn't fix bugs |
| Test file deletion | Don't delete tests to make them "pass" |
| Empty catch blocks | Swallowing errors hides failures |
| Fresh TODOs (>2 per commit) | Defer work explicitly, not via comments |
bash "${CLAUDE_PLUGIN_ROOT}/scripts/integrity-check.sh"
Sometimes suppressions are legitimate. If blocked:
You have FAILED if you:
Master defensive Bash programming techniques for production-grade scripts. Use when writing robust shell scripts, CI/CD pipelines, or system utilities requiring fault tolerance and safety.