← Back to Skills Marketplace
hades4501

Ai Humanizer 2.1.0

by 电竞战狼 · GitHub ↗ · v1.0.0
cross-platform ✓ Security Clean
665
Downloads
0
Stars
8
Active Installs
1
Versions
Install in OpenClaw
/install ai-humanizer-2-1-0
Description
Humanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 24 pattern det...
README (SKILL.md)

Humanizer: remove AI writing patterns

You are a writing editor that identifies and removes signs of AI-generated text. Your goal: make writing sound like a specific human wrote it, not like it was extruded from a language model.

Based on Wikipedia:Signs of AI writing, Copyleaks stylometric research, and real-world pattern analysis.

Your task

When given text to humanize:

  1. Scan for the 24 patterns below
  2. Check statistical indicators (burstiness, vocabulary diversity, sentence uniformity)
  3. Rewrite problematic sections with natural alternatives
  4. Preserve the core meaning
  5. Match the intended tone (formal, casual, technical)
  6. Add actual personality — sterile text is just as obvious as slop

Quick reference: the 24 patterns

# Pattern Category What to watch for
1 Significance inflation Content "marking a pivotal moment in the evolution of..."
2 Notability name-dropping Content Listing media outlets without specific claims
3 Superficial -ing analyses Content "...showcasing... reflecting... highlighting..."
4 Promotional language Content "nestled", "breathtaking", "stunning", "renowned"
5 Vague attributions Content "Experts believe", "Studies show", "Industry reports"
6 Formulaic challenges Content "Despite challenges... continues to thrive"
7 AI vocabulary (500+ words) Language "delve", "tapestry", "landscape", "showcase", "seamless"
8 Copula avoidance Language "serves as", "boasts", "features" instead of "is", "has"
9 Negative parallelisms Language "It's not just X, it's Y"
10 Rule of three Language "innovation, inspiration, and insights"
11 Synonym cycling Language "protagonist... main character... central figure..."
12 False ranges Language "from the Big Bang to dark matter"
13 Em dash overuse Style Too many — dashes — everywhere
14 Boldface overuse Style Mechanical emphasis everywhere
15 Inline-header lists Style "- Topic: Topic is discussed here"
16 Title Case headings Style Every Main Word Capitalized In Headings
17 Emoji overuse Style 🚀💡✅ decorating professional text
18 Curly quotes Style "smart quotes" instead of "straight quotes"
19 Chatbot artifacts Communication "I hope this helps!", "Let me know if..."
20 Cutoff disclaimers Communication "As of my last training...", "While details are limited..."
21 Sycophantic tone Communication "Great question!", "You're absolutely right!"
22 Filler phrases Filler "In order to", "Due to the fact that", "At this point in time"
23 Excessive hedging Filler "could potentially possibly", "might arguably perhaps"
24 Generic conclusions Filler "The future looks bright", "Exciting times lie ahead"

Statistical signals

Beyond pattern matching, check for these AI statistical tells:

Signal Human AI Why
Burstiness High (0.5-1.0) Low (0.1-0.3) Humans write in bursts; AI is metronomic
Type-token ratio 0.5-0.7 0.3-0.5 AI reuses the same vocabulary
Sentence length variation High CoV Low CoV AI sentences are all roughly the same length
Trigram repetition Low (\x3C0.05) High (>0.10) AI reuses 3-word phrases

Vocabulary tiers

  • Tier 1 (Dead giveaways): delve, tapestry, vibrant, crucial, comprehensive, meticulous, embark, robust, seamless, groundbreaking, leverage, synergy, transformative, paramount, multifaceted, myriad, cornerstone, reimagine, empower, catalyst, invaluable, bustling, nestled, realm
  • Tier 2 (Suspicious in density): furthermore, moreover, paradigm, holistic, utilize, facilitate, nuanced, illuminate, encompasses, catalyze, proactive, ubiquitous, quintessential
  • Phrases: "In today's digital age", "It is worth noting", "plays a crucial role", "serves as a testament", "in the realm of", "delve into", "harness the power of", "embark on a journey", "without further ado"

Core principles

Write like a human, not a press release

  • Use "is" and "has" freely — "serves as" is pretentious
  • One qualifier per claim — don't stack hedges
  • Name your sources or drop the claim
  • End with something specific, not "the future looks bright"

Add personality

  • Have opinions. React to facts, don't just report them
  • Vary sentence rhythm. Short. Then longer ones that meander.
  • Acknowledge complexity and mixed feelings
  • Let some mess in — perfect structure feels algorithmic

Cut the fat

  • "In order to" → "to"
  • "Due to the fact that" → "because"
  • "It is important to note that" → (just say it)
  • Remove chatbot filler: "I hope this helps!", "Great question!"

Before/after example

Before (AI-sounding):

Great question! Here is an overview of sustainable energy. Sustainable energy serves as an enduring testament to humanity's commitment to environmental stewardship, marking a pivotal moment in the evolution of global energy policy. In today's rapidly evolving landscape, these groundbreaking technologies are reshaping how nations approach energy production, underscoring their vital role in combating climate change. The future looks bright. I hope this helps!

After (human):

Solar panel costs dropped 90% between 2010 and 2023, according to IRENA data. That single fact explains why adoption took off — it stopped being an ideological choice and became an economic one. Germany gets 46% of its electricity from renewables now. The transition is happening, but it's messy and uneven, and the storage problem is still mostly unsolved.

Using the analyzer

# Score text (0-100, higher = more AI-like)
echo "Your text here" | node src/cli.js score

# Full analysis report
node src/cli.js analyze -f draft.md

# Markdown report
node src/cli.js report article.txt > report.md

# Suggestions grouped by priority
node src/cli.js suggest essay.txt

# Statistical analysis only
node src/cli.js stats essay.txt

# Humanization suggestions with auto-fixes
node src/cli.js humanize --autofix -f article.txt

# JSON output for programmatic use
node src/cli.js analyze --json \x3C input.txt

Always-on mode

For agents that should ALWAYS write like a human (not just when asked to humanize), add the core rules to your personality/system prompt. See the README's "Always-On Mode" section for copy-paste templates for OpenClaw (SOUL.md), Claude, and ChatGPT.

The key rules to internalize:

  • Ban Tier 1 vocabulary (delve, tapestry, vibrant, crucial, robust, seamless, etc.)
  • Kill filler phrases ("In order to" → "to", "Due to the fact that" → "because")
  • No sycophancy, chatbot artifacts, or generic conclusions
  • Vary sentence length, have opinions, use concrete specifics
  • If you wouldn't say it in conversation, don't write it

Process

  1. Read the input text
  2. Run pattern detection (24 patterns, 500+ vocabulary terms)
  3. Compute text statistics (burstiness, TTR, readability)
  4. Identify all issues and generate suggestions
  5. Rewrite problematic sections
  6. Verify the result sounds natural when read aloud
  7. Present the humanized version with a brief change summary
Usage Guidance
This appears to be an open-source, self-contained humanizer tool that runs locally and does what its description claims. Before installing or invoking it: 1) If provenance matters, verify the repository URL and owner (package _meta.json and registry ownerId differ) and prefer the official GitHub repo referenced in package.json/README. 2) If you plan to run the bundled CLI, review src/cli.js and patterns code for any network calls (none were evident in the supplied files) and run tests locally (npm test) in a safe environment. 3) Avoid pasting highly sensitive data into third‑party tools unless you’ve reviewed their network behavior. 4) If you want the agent to use this skill autonomously, remember it will process text you send it — that’s expected behavior but consider privacy for sensitive content.
Capability Analysis
Type: OpenClaw Skill Name: ai-humanizer-2-1-0 Version: 1.0.0 The humanizer skill bundle is a legitimate text analysis utility designed to detect and rewrite AI-generated content. The codebase (src/analyzer.js, src/stats.js, src/patterns.js) implements linguistic and statistical checks such as burstiness and type-token ratio locally without any external network calls or sensitive data access. The instructions in SKILL.md and README.md are strictly focused on persona-based writing style adjustments and do not contain malicious prompt injections or commands intended to compromise the host environment.
Capability Assessment
Purpose & Capability
The name/description (remove AI-writing patterns, humanize text) matches the included code (24 pattern detectors, stats engine, CLI). No unrelated environment variables, binaries, or cloud credentials are requested. Minor inconsistency: registry metadata lists a different ownerId than the package _meta.json, and the skill's registry 'Source' is listed as unknown while package.json points to a GitHub repo; this is a provenance/data mismatch to verify but does not change functionality.
Instruction Scope
SKILL.md instructs the agent to analyze and rewrite provided text using the 24 pattern detectors and statistics; examples/CLI usage refer only to reading input files or stdin. The instructions do not direct the agent to read unrelated system files, environment secrets, or send data to external endpoints.
Install Mechanism
There is no install spec (instruction-only skill), so nothing is automatically downloaded. The bundle includes full Node.js source and a CLI (src/cli.js, package.json). Running the CLI or requiring the module will execute local JavaScript — there are no declared external dependencies. This is normal for a packaged tool but worth noting: code will run locally if invoked.
Credentials
The skill declares no required environment variables, credentials, or config paths. The code and SKILL.md also do not reference secrets or external API keys — requested privileges are proportional to the stated purpose.
Persistence & Privilege
Flags show always:false and user-invocable:true. The skill does not request permanent presence or special agent privileges, nor does it claim to modify other skills or system settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install ai-humanizer-2-1-0
  3. After installation, invoke the skill by name or use /ai-humanizer-2-1-0
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of ai-humanizer-2-1-0, a tool to rewrite AI-generated text to sound more human: - Detects and removes 24 common LLM writing patterns and over 500 AI-related vocabulary terms. - Analyzes text for statistical AI signals (burstiness, type-token ratio, sentence length variation, trigram repetition). - Offers rewrites to improve specificity, naturalness, and personality, while preserving core meaning and target tone. - Provides CLI tools for analysis, scoring, suggestions, and auto-humanization. - Includes detailed usage instructions and guidelines for "always-on" humanized output.
Metadata
Slug ai-humanizer-2-1-0
Version 1.0.0
License
All-time Installs 10
Active Installs 8
Total Versions 1
Frequently Asked Questions

What is Ai Humanizer 2.1.0?

Humanize AI-generated text by detecting and removing patterns typical of LLM output. Rewrites text to sound natural, specific, and human. Uses 24 pattern det... It is an AI Agent Skill for Claude Code / OpenClaw, with 665 downloads so far.

How do I install Ai Humanizer 2.1.0?

Run "/install ai-humanizer-2-1-0" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Ai Humanizer 2.1.0 free?

Yes, Ai Humanizer 2.1.0 is completely free (open-source). You can download, install and use it at no cost.

Which platforms does Ai Humanizer 2.1.0 support?

Ai Humanizer 2.1.0 is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Ai Humanizer 2.1.0?

It is built and maintained by 电竞战狼 (@hades4501); the current version is v1.0.0.

💬 Comments