Humanize AI
Humanize AI content by detecting and auto-fixing AI generated content. Humanize AI text using Python scripts. Scans for AI vocabulary, puffery, chatbot artifacts, and auto-replaces filler phrases. Use
Humanize AI content by detecting and auto-fixing AI generated content. Humanize AI text using Python scripts. Scans for AI vocabulary, puffery, chatbot artifacts, and auto-replaces filler phrases. Use
Real data. Real impact.
Growing
Developers
Per week
Open source
Skills give you superpowers. Install in 30 seconds.
Command-line tools for detecting and auto-fixing AI writing patterns.
Scans text and reports AI vocabulary, puffery, chatbot artifacts, and auto-replaceable phrases.
# Analyze a file python scripts/analyze.py input.txtAnalyze from stdin
echo "This serves as a testament to our commitment" | python scripts/analyze.py
JSON output for programmatic use
python scripts/analyze.py input.txt --json
Output example:
================================================== AI PATTERN ANALYSIS - 5 issues found ==================================================AI VOCABULARY: • testament: 1x • crucial: 2x
AUTO-REPLACEABLE: • "serves as" → "is": 1x • "in order to" → "to": 1x
Performs automatic replacements for common AI-isms.
# Humanize and print to stdout python scripts/humanize.py input.txtWrite to output file
python scripts/humanize.py input.txt -o output.txt
Include em dash replacement
python scripts/humanize.py input.txt --fix-dashes
Quiet mode (no change log)
python scripts/humanize.py input.txt -q
What it fixes automatically:
Analyze first to see what needs fixing:
python scripts/analyze.py document.txt
Auto-fix safe replacements:
python scripts/humanize.py document.txt -o document_clean.txt
Manual review for AI vocabulary and puffery flagged by analyze (these require human judgment)
Re-analyze to confirm improvements:
python scripts/analyze.py document_clean.txt
Edit
scripts/patterns.json to add/remove:
ai_words — vocabulary that flags but doesn't auto-replacepuffery — promotional language to flagreplacements — phrase → replacement mappings (empty string = delete)chatbot_artifacts — phrases to auto-removehedging_phrases — excessive hedging to flagProcess multiple files:
# Analyze all markdown files for f in *.md; do echo "=== $f ===" python scripts/analyze.py "$f" doneHumanize all txt files in place
for f in *.txt; do python scripts/humanize.py "$f" -o "$f.tmp" && mv "$f.tmp" "$f" done
No automatic installation available. Please visit the source repository for installation instructions.
View Installation Instructions1,500+ AI skills, agents & workflows. Install in 30 seconds. Part of the Torly.ai family.
© 2026 Torly.ai. All rights reserved.