find-lie

Detect deceptive code patterns in AI-generated codebases by analyzing changed files.

1|Updated Apr 14, 2026
One-click install
npx skills add https://github.com/stronghuni/FindLie --skill find-lie
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: find-lie
Source: https://github.com/stronghuni/FindLie/tree/main/find-lie
Command: npx skills add https://github.com/stronghuni/FindLie --skill find-lie

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Detect lies in AI-generated codebases — including mock data disguised as real data, incomplete implementations, deceptive returns, intent mismatches, disconnected integrations, fake tests, duplicate code, redundant files, and dead code. This Skill empowers engineers to audit generated code for authenticity and correctness across code generation sessions.

Core Features & Use Cases

  • Pattern-based lie detection: Performs static scans to uncover common lie patterns such as mock data, no-ops, and deceptive returns.
  • Semantic verification: Analyzes function intent against expected operations to catch intent mismatches.
  • Comprehensive reporting: Collects evidence with precise locations to drive fixes in changed files.
  • Use Case: Validate agent-generated code or audit codebases after large generation sessions to surface hidden lies.
  • Use Case: Integrate during code reviews to automatically flag suspicious patterns before merging.

Quick Start

Run the FindLie scan on your repository to detect and surface lie code in AI-generated code.

Frequently Asked Questions about find-lie

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect mock data and deceptive returns in AI-generated code?

Static analysis tools detect mock data and deceptive returns in AI-generated code by cross-checking function names, return values, and unused imports against expected operations to expose intent mismatches and no-ops.

What is code forensics for AI-generated codebases?

Code forensics for AI-generated codebases is the process of using semantic analysis to audit code authenticity, identifying fake tests, disconnected integrations, and disguised mock data by cross-checking function intent against expected operations.

How do I audit changed files for fake tests and dead code before merging?

You audit changed files for fake tests and dead code by running a static analyzer on your current git branch, comparing changed files against a base branch to produce structured findings with evidence and verification commands.

Can I scan for no-op patterns and redundant files outside of a git repository?

Yes, you can scan for no-op patterns and redundant files outside a git repository, but the analyzer will prompt you to manually choose a scan scope instead of automatically comparing against a base branch.

What is the best way to find incomplete implementations in agent-generated code?

The best way to find incomplete implementations in agent-generated code is using semantic verification to analyze function intent against expected operations, catching mismatches and dead code through pattern-based lie detection.

Why does static analysis flag unused imports as deceptive code patterns?

Static analysis flags unused imports as deceptive code patterns because they often indicate disconnected integrations or incomplete implementations where AI-generated code fails to execute its stated intent.