← 返回
数据分析

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 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.
检测并自动修复AI生成内容,使AI文本人性化。使用Python脚本扫描AI词汇、夸大词、聊天机器人痕迹,自动替换填充短语。适用于在AI检测器中分析文本、规避检测、批量处理文件、自动化清理或在人工润色前获取报告。
artur-zhdan
数据分析 clawhub v1.1.0 1 版本 99585.9 Key: 无需
★ 8
Stars
📥 2,966
下载
💾 360
安装
1
版本
#latest

概述

Humanize CLI

Command-line tools for detecting and auto-fixing AI writing patterns.

Scripts

analyze.py — Detect AI 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

humanize.py — Auto-Replace Patterns

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:

  • Filler phrases: "in order to" → "to", "due to the fact that" → "because"
  • Copula avoidance: "serves as" → "is", "boasts" → "has"
  • Sentence starters: removes "Additionally,", "Furthermore,", "Moreover,"
  • Curly quotes → straight quotes
  • Chatbot artifacts: removes "I hope this helps", "Let me know if", etc.

Workflow

  1. Analyze first to see what needs fixing:

```bash

python scripts/analyze.py document.txt

```

  1. Auto-fix safe replacements:

```bash

python scripts/humanize.py document.txt -o document_clean.txt

```

  1. Manual review for AI vocabulary and puffery flagged by analyze (these require human judgment)
  1. Re-analyze to confirm improvements:

```bash

python scripts/analyze.py document_clean.txt

```


Customizing Patterns

Edit scripts/patterns.json to add/remove:

  • ai_words — vocabulary that flags but doesn't auto-replace
  • puffery — promotional language to flag
  • replacements — phrase → replacement mappings (empty string = delete)
  • chatbot_artifacts — phrases to auto-remove
  • hedging_phrases — excessive hedging to flag

Batch Processing

Process 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

版本历史

共 1 个版本

  • v1.1.0 当前
    2026-03-28 13:38 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

content-creation

Humanize

artur-zhdan
移除AI写作痕迹。用于文本编辑、审阅或改写,使其更自然、更像人工撰写。检测夸张象征、促销语言、破折号滥用、AI词汇及谄媚语气等模式。
★ 14 📥 9,280
data-analysis

A股量化 AkShare

mbpz
A股量化数据分析工具,基于AkShare库获取A股行情、财务数据、板块信息等。用于回答关于A股股票查询、行情数据、财务分析、选股等问题。
★ 162 📥 59,675
data-analysis

Data Analysis

ivangdavila
{"answer":"数据分析与可视化。查询数据库、生成报告、自动化电子表格,将原始数据转化为清晰可行的见解。适用于:(1) 您……"}
★ 198 📥 64,859