Humanizer

A writing quality skill sourced from ClawHub (52k+ downloads, 386 stars). Based on Wikipedia's comprehensive "Signs of AI writing" guide, Humanizer detects and rewrites patterns that make text sound machine-generated.

78Trust Medium
by biostartechnologycreativebeginnerv1.0.0updated Mar 8, 2026
18.4kTotal Runs
86.0%Success Rate
640Installs
78Trust Score

Tags

#writing#editing#ai-detection#humanize#text-quality#post-processing#clawhub

Required Tools

json_parse

Inputs

NameTypeDescriptionReq
texttextThe text to humanize. Can be any length — paragraphs, articles, reports.yes
strictnesstextHow aggressively to rewrite: "light" (fix obvious patterns only), "standard" (default), "thorough" (rewrite most flagged sections).--
preserve_meaningbooleanIf true (default), never change factual content — only rephrase style.--

Outputs

NameTypeDescriptionReq
resultjsonJSON with fields: humanized_text, patterns_found (array of detected AI patterns), changes_made (count), confidence_score (0-100).yes

Compatible Skills

SKILL.md

---
name: humanizer
description: Remove signs of AI-generated writing from text. Detects and fixes 24+ patterns including inflated symbolism, AI vocabulary, em dash overuse, and promotional language.
---

# Humanizer

Detect and rewrite AI-generated text patterns.

## Quick Start

### Basic Humanization

```bash
# Using Python script
cat ai_text.txt | python3 humanize.py

# With strictness level
python3 humanize.py --input ai_text.txt --strictness thorough
```

## AI Patterns Detected

| Pattern | Example AI | Human Alternative |
|---------|-----------|-------------------|
| Overuse of "delve" | "Let's delve into..." | "Let's explore..." |
| Inflated symbolism | "tapestry of" | "variety of" |
| Em dash overuse | "—" every sentence | Mix punctuation |
| AI buzzwords | "leverage", "utilize" | "use" |
| Hedging language | "It's important to note" | Remove or simplify |
| List padding | Unnecessary lists | Natural flow |
| Formulaic structure | Predictable patterns | Vary structure |

## Strictness Levels

| Level | Description |
|-------|-------------|
| light | Fix obvious patterns only |
| standard | Fix common AI patterns (default) |
| thorough | Rewrite most flagged sections |

## Output Format

```json
{
  "humanized_text": "The rewritten text...",
  "patterns_found": [
    "delve_overuse",
    "em_dash_heavy",
    "buzzword_leverage"
  ],
  "changes_made": 12,
  "confidence_score": 87
}
```

## Example Transformation

**Before (AI-generated):**
```
In the ever-evolving landscape of artificial intelligence, it's important to note that we must delve into the intricacies of machine learning algorithms — a tapestry of complex mathematical operations that leverage vast datasets.
```

**After (Humanized):**
```
As AI keeps changing, we need to explore how machine learning algorithms work. These are complex math operations that use large datasets.
```

## Best Practices

- Review changes before finalizing
- Adjust strictness based on context
- Professional writing may need lighter touch
- Creative writing can use thorough mode
- Always preserve factual accuracy

## Integration

Works well with:
- Content generation workflows
- Academic writing review
- Marketing copy refinement
- Blog post editing