De-ai Text Humanizer banner
glebis glebis

De-ai Text Humanizer

Documentation community Intermediate

Description

Transform AI-sounding text into human, authentic writing while preserving meaning and facts.

Installation

Installs to ~/.claude/skills/de-ai/

Terminal
git clone --depth 1 https://github.com/glebis/claude-skills /tmp/claude-skills \ && mkdir -p ~/.claude/skills \ && cp -r /tmp/claude-skills/de-ai ~/.claude/skills/de-ai

Clones the whole repository, because a skill folder can carry scripts and resources beside its SKILL.md.

Repository README

This is the README for glebis/claude-skills, shared by 3 entries in this directory. It describes the repository, not this entry specifically.

De-AI Text Humanization Skill

Transform AI-sounding text into human, authentic writing while preserving meaning and facts.

Key Differentiators

Unlike commercial de-AI tools that focus on detection evasion, this skill prioritizes:

  1. Meaning preservation over detection bypass
  2. Interactive dialogue - understands context before processing
  3. Language-specific optimization - especially Russian, German, English
  4. Professional quality - not just for academic cheating
  5. Transparency - explains what was changed and why
  6. No word limits - process entire documents

Installation

# Copy to Claude Code skills directory
cp -r de-ai ~/.claude/skills/

# Or clone from GitHub
git clone https://github.com/glebis/claude-skills.git
cp -r claude-skills/de-ai ~/.claude/skills/

No additional dependencies required - works out of the box with Claude Code.

Usage

Basic Usage

# Process file (interactive mode)
/de-ai --file article.md

# Process inline text
/de-ai --text "Your AI-generated text here..."

Advanced Options

# Specify language
/de-ai --file article.md --language ru

# Specify register/type
/de-ai --file draft.txt --register essay

# Quick mode (no questions)
/de-ai --file content.md --interactive false

# Show explanation of changes
/de-ai --file text.md --explain true

# Combine options
/de-ai --file article.md --language de --register technical --explain true

Parameters

  • --text - Text to humanize (alternative to --file)
  • --file - Path to file containing text
  • --language - Target language: en, ru, de, es, fr (auto-detected if not specified)
  • --register - Text type: personal, essay, critique, narrative, technical, academic
  • --interactive - Ask clarifying questions (default: true)
  • --explain - Show AI tells removed (default: false)

Supported Languages

  • English (en)
  • Russian (ru)
  • German (de)
  • Spanish (es)
  • French (fr)

...