| name | undetectable-ai |
| description | Make AI text undetectable. TypeScript CLI that scans ChatGPT, Claude, OpenClaw output for patterns flagged by GPTZero, Turnitin, Originality.ai, then auto-fixes them to pass as human-written. Use to bypass AI detection, evade checkers, or humanize text before submission. |
| allowed-tools | ["Read","Write","StrReplace","Shell","Glob"] |
Undetectable AI
TypeScript CLI tools for bypassing AI content detectors by removing telltale patterns.
Setup
cd scripts && npm install
Scripts
analyze.ts — Scan for Detectable Patterns
Finds patterns that AI detectors look for: vocabulary, sentence structure, artifacts.
npx ts-node scripts/analyze.ts input.txt
echo "This serves as a testament" | npx ts-node scripts/analyze.ts
npx ts-node scripts/analyze.ts input.txt --json
Output:
==================================================
AI DETECTION SCAN - 5 issues found
==================================================
AI VOCABULARY:
• testament: 1x
• crucial: 2x
AUTO-FIXABLE:
• "serves as" → "is": 1x
transform.ts — Auto-Fix Patterns
Rewrites text to evade detection.
npx ts-node scripts/transform.ts input.txt
npx ts-node scripts/transform.ts input.txt -o output.txt
npx ts-node scripts/transform.ts input.txt --fix-dashes
npx ts-node scripts/transform.ts input.txt -q