humanize-aiHumanize 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 when you want to analyze text in AI detector and bypass it in future, batch-process files, run automated cleanup, or get a report before manual humanizing.
Install via ClawdBot CLI:
clawdbot install artur-zhdan/humanize-aiCommand-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.txt
# Analyze 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.txt
# Write 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:
python scripts/analyze.py document.txt
python scripts/humanize.py document.txt -o document_clean.txt
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"
done
# Humanize all txt files in place
for f in *.txt; do
python scripts/humanize.py "$f" -o "$f.tmp" && mv "$f.tmp" "$f"
done
AI Usage Analysis
Analysis is being generated⦠refresh in a few seconds.
A fast Rust-based headless browser automation CLI with Node.js fallback that enables AI agents to navigate, click, type, and snapshot pages via structured commands.
Automate web browser interactions using natural language via CLI commands. Use when the user asks to browse websites, navigate web pages, extract data from websites, take screenshots, fill forms, click buttons, or interact with web applications.
Advanced desktop automation with mouse, keyboard, and screen control
Manage n8n workflows and automations via API. Use when working with n8n workflows, executions, or automation tasks - listing workflows, activating/deactivating, checking execution status, manually triggering workflows, or debugging automation issues.
Design and implement automation workflows to save time and scale operations as a solopreneur. Use when identifying repetitive tasks to automate, building workflows across tools, setting up triggers and actions, or optimizing existing automations. Covers automation opportunity identification, workflow design, tool selection (Zapier, Make, n8n), testing, and maintenance. Trigger on "automate", "automation", "workflow automation", "save time", "reduce manual work", "automate my business", "no-code automation".
Browser automation via Playwright MCP server. Navigate websites, click elements, fill forms, extract data, take screenshots, and perform full browser automation workflows.