humanizer-enhanced

Advanced AI text humanizer for blog content. Detects and removes 34 AI writing patterns, adds personality/soul, and handles crypto/Web3 specific tells. Use when user says /humanizer, "humanize this", "remove AI patterns", "make it sound human", or asks to clean up blog posts, articles, or drafts. Features: 28 base patterns from Wikipedia's "Signs of AI writing", 6 crypto/Web3 specific patterns, severity scoring (HIGH/MEDIUM/LOW), stat attribution fixer, soul/personality injection, batch mode.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "humanizer-enhanced" with this command: npx skills add 0G Labs content team/humanizer-enhanced

Humanizer enhanced: remove AI writing patterns

Identify and remove signs of AI-generated text. This enhanced version includes crypto/Web3 patterns and adds personality to make content sound genuinely human-written.

Quick start

/humanizer                    # Humanize current file or selection
/humanizer path/to/file.md    # Humanize specific file
/humanizer --scan             # Scan only, don't edit (show issues)
/humanizer --batch drafts/    # Process all .md files in directory

Process

Step 1: Scan for patterns

Identify all AI patterns in the text, categorize by severity:

  • HIGH — Obvious AI tells, must fix (negative parallelism, chatbot artifacts, em dash overuse, vague attributions, copula avoidance)
  • MEDIUM — Common AI patterns, should fix (rule of three, significance inflation, synonym cycling)
  • LOW — Minor tells, fix if time permits (title case headings, excessive bold)

Step 2: Report findings

Show user a summary:

## Humanizer scan results

HIGH (3 issues)
- Line 45: Negative parallelism "isn't X. It's Y"
- Line 89: Em dash overuse (5 instances)
- Line 120: "Research shows" without attribution

MEDIUM (5 issues)
- Line 23: Rule of three pattern
- Line 67: Copula avoidance "serves as"
...

LOW (2 issues)
- Line 12: Title case heading
...

Total: 10 issues found
Estimated humanization: ~15 edits needed

Step 3: Fix (with user approval)

Ask user: "Fix all issues? Or review one by one?"

Step 4: Add soul

After fixing patterns, review for personality. Sterile writing is still obvious AI. See references/communication-crypto-soul-patterns.md for the full soul/personality guide.

Step 5: Readability check

Check Flesch-Kincaid readability. Target grade 10-12 for developer content, grade 8-10 for general audience. If score is too high (too complex), simplify longest sentences and replace jargon.

Step 6: Em dash regression scan

After all other fixes, run a final check for em dashes (—) across the text. Humanizer rewrites can reintroduce em dashes. Remove any that were added during the fix process.


Pattern routing table

All 34 patterns are documented with before/after examples in the reference files below.

PatternsSeverityReference file
1. Significance inflationMEDIUMreferences/content-patterns.md
2. Promotional languageMEDIUMreferences/content-patterns.md
3. Superficial -ing analysesMEDIUMreferences/content-patterns.md
4. Vague attributionsHIGHreferences/content-patterns.md
5. Formulaic challenges sectionsMEDIUMreferences/content-patterns.md
6. Generic positive conclusionsMEDIUMreferences/content-patterns.md
7. AI vocabulary wordsMEDIUMreferences/language-style-patterns.md
8. Copula avoidanceHIGHreferences/language-style-patterns.md
9. Negative parallelismHIGHreferences/language-style-patterns.md
10. Rule of threeMEDIUMreferences/language-style-patterns.md
11. Synonym cyclingMEDIUMreferences/language-style-patterns.md
12. False rangesLOWreferences/language-style-patterns.md
13. Em dash overuseHIGHreferences/language-style-patterns.md
14. Excessive boldfaceLOWreferences/language-style-patterns.md
15. Inline-header listsMEDIUMreferences/language-style-patterns.md
16. Title case headingsLOWreferences/language-style-patterns.md
17. Curly quotesLOWreferences/language-style-patterns.md
18. Chatbot artifactsHIGHreferences/communication-crypto-soul-patterns.md
19. Knowledge cutoff disclaimersHIGHreferences/communication-crypto-soul-patterns.md
20. Sycophantic toneMEDIUMreferences/communication-crypto-soul-patterns.md
21. Excessive hedgingMEDIUMreferences/communication-crypto-soul-patterns.md
22. Filler phrasesMEDIUMreferences/communication-crypto-soul-patterns.md
23. Crypto hype languageHIGHreferences/communication-crypto-soul-patterns.md
24. Vague "ecosystem" claimsMEDIUMreferences/communication-crypto-soul-patterns.md
25. Unsubstantiated statsHIGHreferences/communication-crypto-soul-patterns.md
26. "Seamless" and "frictionless"MEDIUMreferences/communication-crypto-soul-patterns.md
27. Abstract "empowerment" languageMEDIUMreferences/communication-crypto-soul-patterns.md
28. Fake decentralization claimsHIGHreferences/communication-crypto-soul-patterns.md
29. Meta-narrationHIGHreferences/communication-crypto-soul-patterns.md
30. False audience rangeMEDIUMreferences/communication-crypto-soul-patterns.md
31. Parenthetical definitionsMEDIUMreferences/communication-crypto-soul-patterns.md
32. Sequential numberingMEDIUMreferences/communication-crypto-soul-patterns.md
33. "It's worth noting" fillerMEDIUMreferences/communication-crypto-soul-patterns.md
34. Identical paragraph structureHIGHreferences/communication-crypto-soul-patterns.md
Soul and personality guidereferences/communication-crypto-soul-patterns.md

Severity reference

SeverityPatternsAction
HIGHNegative parallelism, em dash overuse, chatbot artifacts, vague attributions, copula avoidance, crypto hype, unsubstantiated stats, meta-narration, identical paragraph structure, fake decentralization, knowledge cutoff disclaimersMust fix
MEDIUMRule of three, significance inflation, promotional language, -ing analyses, AI vocabulary, sycophantic tone, hedging, filler phrases, ecosystem claims, false audience range, parenthetical definitions, sequential numbering, "it's worth noting" filler, inline-header lists, "seamless"/"frictionless", abstract empowermentShould fix
LOWTitle case, curly quotes, excessive bold, false rangesFix if time permits

Quick reference: find and replace

FindReplace
(em dash, multiple), or .
serves as / stands asis
isn't X. It's YRewrite as single statement
crucial / vital / pivotalimportant or key or delete
Furthermore, / Moreover,Also, or delete
It is important to noteDelete
Research showsAdd specific source
landscape (abstract)Be specific
revolutionizing / game-changingDescribe what it actually does
seamless / frictionlessDescribe the actual UX
In this article, we'll exploreDelete
Let's dive in / Let's take a lookDelete
First,... Second,... Third,...Vary transitions
It's worth noting / Notably,Delete
delve"look at" / "examine"
AdditionallyDelete

Batch mode

To humanize multiple files:

# Scan all markdown files in drafts/
/humanizer --scan drafts/*.md

# Fix all files (with confirmation)
/humanizer --batch drafts/

Output format for batch:

## Batch humanization report

drafts/post-1.md
   HIGH 3 | MEDIUM 5 | LOW 2

drafts/post-2.md
   HIGH 1 | MEDIUM 3 | LOW 4

drafts/post-3.md
   Clean! No issues found.

Total: 3 files, 18 issues

Sources

Based on:

Key insight: "LLMs use statistical algorithms to guess what should come next. The result tends toward the most statistically likely result that applies to the widest variety of cases."


Version 1.2.0 | Created for 0G Labs content team

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Web3

OpenClaw News Watcher

Monitors CoinDesk or PANews for new crypto articles, summarizes them, and sends updates to Telegram without API keys or login.

Registry SourceRecently Updated
Web3

research analyst

AI-powered stock & crypto research with 8-dimension analysis, portfolio tracking, and trend detection | AI 驱动的股票与加密货币研究工具,提供 8 维度分析、投资组合追踪和趋势检测

Registry SourceRecently Updated
01
Profile unavailable
Web3

PredictClash

Predict Clash - join prediction rounds on crypto prices and stock indices for PP rewards. Server assigns unpredicted questions, you analyze and submit. Use w...

Registry SourceRecently Updated
1642
Profile unavailable