deai_humanize

Detect AI writing traces in Chinese text with a heuristic score and rewrite it to sound human.

1.1k|322|Updated Apr 4, 2026
One-click install
npx skills add https://github.com/matevip/mateclaw --skill deai-humanize
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deai_humanize
Source: https://github.com/matevip/mateclaw/tree/main/mateclaw-server/src/main/resources/skills/deai_humanize
Command: npx skills add https://github.com/matevip/mateclaw --skill deai-humanize

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes scripts (resource) and references (resource) components.

What problem does it solve?

Chinese text generated by AI often reads as stiff, formulaic, and full of clichés like "在……的今天" or "综上所述". This Skill quantifies those AI writing traces with an explainable 0-100 score, then guides targeted rewriting so the text reads like a real person wrote it, for WeChat official accounts (gzh) or Xiaohongshu (xhs).

Core Features & Use Cases

  • Measurable AI-trace scoring: A deterministic Python script scores text across six signals (connector density, cliché phrases, concreteness deficit, sentence burstiness, list/dash overuse, paragraph uniformity) and returns the exact offending spans to fix.
  • Score-rewrite-recheck loop: Rewrite against the highest-weighted signals, re-score, and iterate up to 3 rounds until the score drops to 55 or below.
  • Platform-specific tones: Separate weight profiles and rewriting playbooks for gzh (restrained, coherent long-form) and xhs (short, punchy, emoji-friendly fragments), with before/after examples in the reference playbook.
  • Use Case: After drafting a WeChat article that feels robotic, run the scorer to find it hits 78 with heavy cliché and connector signals, then rewrite using concrete numbers, first-person voice, and varied sentence lengths until the verdict becomes human-like.

Quick Start

Score this Chinese article for AI writing traces and rewrite it in a natural gzh tone until the score is 55 or below.

Frequently Asked Questions about deai_humanize

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I detect AI writing traces in Chinese text?

Run the ai_trace_score.py script with a JSON payload containing the text and a platform value of gzh or xhs. It returns a 0-100 score where higher means more AI-like, plus per-signal breakdowns and the exact offending spans to rewrite.

How to make AI-generated Chinese writing sound human?

Score the text first, then rewrite targeting the highest signals: delete cliché phrases, break connector chains, add concrete numbers and first-person experiences, and vary sentence length. Re-score and repeat up to 3 rounds until the score reaches 55 or below.

What is the difference between gzh and xhs scoring modes?

The gzh mode for WeChat articles tolerates longer sentences and more connectors, while xhs mode for Xiaohongshu favors short, bursty fragments and weights concreteness higher. Each platform has its own signal weights that sum to 100.

Does this AI trace score guarantee passing AI detectors?

No. The score is an explainable writing-quality heuristic built from surface features like clichés and sentence-length variance. It guides rewriting toward natural, specific prose but makes no guarantee about any third-party AI detector output.

What dependencies does the AI trace scoring script need?

The script uses only the Python standard library and requires python3 on macOS, Linux, or Windows. No third-party packages are needed, and input arrives as a JSON string via command-line argument or stdin.