name: humanize-ai-text description: Remove signs of AI-generated writing from text. Detects AI vocabulary, puffery, and chatbot artifacts. author: @biostartechnology version: 1.0.0 license: MIT metadata: {"clawdbot":{"emoji":"✍️","requires":{"bins":["python3"]}}}
Remove signs of AI-generated writing from text. Use when editing or reviewing text to make it sound more natural and human-written.
Based on Wikipedia's comprehensive "Signs of AI writing" guide.
Excessive conjunctive phrases
Diagnostic Reports: Generate detailed AI detection reports
# Basic detection
python skills/humanize-ai-text/scripts/detect.py text.txt
# JSON output
python skills/humanize-ai-text/scripts/detect.py text.txt -j
# Score only
python skills/humanize-ai-text/scripts/detect.py text.txt -s
# Pipe text directly
echo "This text might be AI-generated" | python skills/humanize-ai-text/scripts/detect.py
# Basic transformation
python skills/humanize-ai-text/scripts/transform.py text.txt
# Output to file
python skills/humanize-ai-text/scripts/transform.py text.txt -o clean.txt
# Aggressive mode (more changes)
python skills/humanize-ai-text/scripts/transform.py text.txt -a
# Quiet mode (no progress output)
python skills/humanize-ai-text/scripts/transform.py text.txt -q
# Compare original and transformed
python skills/humanize-ai-text/scripts/compare.py text.txt
# Compare and save result
python skills/humanize-ai-text/scripts/compare.py text.txt -o document_v2.txt
The skill is already installed. To use it, ensure you have Python 3 installed.
No external dependencies required - uses Python standard library.
The detection script identifies these AI writing patterns:
patterns.json to add custom detectionsEdit skills/humanize-ai-text/scripts/patterns.json:
{
"custom_patterns": {
"my_pattern": {
"regex": "pattern_here",
"replacement": "replacement_text",
"description": "What this pattern detects"
}
}
}
Process multiple files:
for f in *.md; do
python skills/humanize-ai-text/scripts/detect.py "$f" -s
python skills/humanize-ai-text/scripts/transform.py "$f" -a -o "${f%.md}_clean.md" -q
done
AI Detection Report
===================
File: text.txt
AI Probability: 73%
Patterns Detected:
- AI Vocabulary: 12 instances
- Filler Phrases: 8 instances
- Stylistic Parallelisms: 5 instances
...
Original: "I'd be happy to delve into this important topic."
Humanized: "Let's explore this topic."
# In CI/CD or pre-commit hook
python skills/humanize-ai-text/scripts/detect.py content.md -s
# Fail if AI score > threshold
Some legitimate writing may trigger patterns. Review manually.
AI models evolve. Update patterns.json regularly.
Ensure files are UTF-8 encoded:
python skills/humanize-ai-text/scripts/detect.py file.txt --encoding utf-8
# Check AI score
python skills/humanize-ai-text/scripts/detect.py blog_post.md -s
# Output: AI Probability: 68%
# Transform
python skills/humanize-ai-text/scripts/transform.py blog_post.md -o blog_post_clean.md -a
# Compare
python skills/humanize-ai-text/scripts/compare.py blog_post.md -o blog_post_clean.md
echo "I hope this email finds you well. I wanted to reach out regarding..." | \
python skills/humanize-ai-text/scripts/detect.py
# Detect AI patterns in paper
python skills/humanize-ai-text/scripts/detect.py paper.md -j > report.json
# Transform with conservative settings
python skills/humanize-ai-text/scripts/transform.py paper.md -o paper_clean.md
For more info, visit: https://clawhub.ai/biostartechnology/humanizer
文档写得很详细,看起来功能很完善,但实际上这个Skill缺了最关键的东西——代码文件都没有!只有说明书没有实际工具,根本没法用。好在文档结构清晰、功能规划合理,修复后应该是个不错的工具。