Token导航 LogoToken导航TokenDH.com
效率只读clawhub未标认证来源可访问clear审计通过

humanize-chinese-2-0-0人性化中文 2 0 0

Agent Skill

humanize-chinese-2-0-0 用于补充效率相关能力,适合在 OpenClaw 中需要让 Agent 承接效率相关任务时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

6,891

周安装

296

GitHub Stars

公开资料未说明

下载量

2,415
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:humanize-chinese-2-0-0(人性化中文 2 0 0)
来源仓库:https://github.com/0xspeter/humanize-chinese-2-0-0
安装命令:
openclaw skills install humanize-chinese-2-0-0
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install humanize-chinese-2-0-0

简介

humanize-chinese-2-0-0 用于检测与人性化中文 AI 文本,提升自然表达与可读性。

  • 适合在 OpenClaw 中处理学术、商务或日常中文内容时使用。
  • 支持句子级评分与多风格转换,精准识别 AI 生成信号。
  • 安装命令为 openclaw skills install humanize-chinese-2-0-0,建议查阅来源仓库了解调用方式。
  • 使用前应确认是否涉及敏感话题,并确保输出符合平台政策与伦理规范。

SKILL.md

name
humanize-chinese
description
Detect and humanize AI-generated Chinese text. 20+ detection categories, weighted 0-100 scoring with sentence-level analysis, 7 style transforms (casual/zhihu/xiaohongshu/wechat/academic/literary/weibo), sentence restructuring, context-aware replacement. Pure Python, no dependencies. v2.0.0
allowed-tools

Humanize Chinese AI Text v2.0

Comprehensive CLI for detecting and transforming Chinese AI-generated text. Makes robotic AI writing natural and human-like.

v2.0 highlights: weighted 0-100 scoring, sentence-level analysis, sentence restructuring (merge/split), context-aware replacement, rhythm variation, vocabulary diversification, 7 style transforms, external pattern config (patterns_cn.json).

Quick Start

# Detect AI patterns (20+ categories, 0-100 score)
python scripts/detect_cn.py text.txt
python scripts/detect_cn.py text.txt -v          # verbose + worst sentences
python scripts/detect_cn.py text.txt -s           # score only
python scripts/detect_cn.py text.txt -j           # JSON output

# Humanize text
python scripts/humanize_cn.py text.txt -o clean.txt
python scripts/humanize_cn.py text.txt --scene social
python scripts/humanize_cn.py text.txt --scene tech -a   # aggressive mode
python scripts/humanize_cn.py text.txt --seed 42         # reproducible

# Apply writing styles
python scripts/style_cn.py text.txt --style zhihu -o zhihu.txt
python scripts/style_cn.py text.txt --style xiaohongshu
python scripts/style_cn.py --list

# Compare before/after
python scripts/compare_cn.py text.txt --scene tech -a
python scripts/compare_cn.py text.txt -o clean.txt

Detection System

Scoring

Weighted 0-100 score with 4 severity levels:

ScoreLevelMeaning
0-24LOWLikely human-written
25-49MEDIUMSome AI signals
50-74HIGHProbably AI-generated
75-100VERY HIGHAlmost certainly AI

Detection Categories

🔴 Critical (weight: 8)

CategoryExamples
Three-Part Structure首先...其次...最后, 一方面...另一方面, 其一...其二...其三
Mechanical Connectors值得注意的是, 综上所述, 不难发现, 归根结底, 由此可见
Empty Grand Words赋能, 闭环, 数字化转型, 协同增效, 全方位, 多维度

🟠 High Signal (weight: 4)

CategoryExamples
AI High-Frequency Words助力, 彰显, 底层逻辑, 抓手, 触达, 沉淀, 复盘
Filler Phrases值得一提的是, 众所周知, 毫无疑问
Balanced Arguments虽然...但是...同时, 既有...也有...更有
Template Sentences随着...的不断发展, 在当今...时代, 作为...的重要组成部分

🟡 Medium Signal (weight: 2)

CategoryExamples
Hedging Language在一定程度上, 某种程度上, 通常情况下 (>5 occurrences)
List AddictionExcessive numbered/bulleted lists
Punctuation OveruseDense em dashes, semicolons
Excessive Rhetoric对偶/排比句过多

⚪ Style Signal (weight: 1.5)

CategoryDescription
Uniform ParagraphsLow CV in paragraph lengths
Low BurstinessMonotonous sentence lengths
Emotional FlatnessLack of emotional/personal expressions
Repetitive StartersSame sentence starters >3 times
Low EntropyLow character-level entropy (predictable text)

Sentence-Level Analysis

With -v (verbose) mode, the detector identifies the most AI-like sentences:

── 最可疑句子 ──
  1. [16分] 随着人工智能技术的不断发展,在当今数字化转型时代...
     原因: 数字化转型, 深度融合, 模板: 随着.*?的(不断)?发展

Humanization Engine

Transforms (applied in order)

  1. Structure cleanup — Remove three-part structure (首先/其次/最后)
  2. Phrase replacement — Context-aware replacement of AI phrases (regex patterns first, then plain text, longest-first matching)
  3. Sentence merge — Merge overly short consecutive sentences
  4. Sentence split — Split long sentences at natural breakpoints (但是/不过/同时)
  5. Punctuation normalization — Reduce excessive semicolons, em dashes
  6. Vocabulary diversification — Replace repeated words (进行/实现/提供 etc.) with synonyms
  7. Paragraph rhythm — Vary uniform paragraph lengths (merge short, split long)
  8. Casual injection — Add human expressions (scene-dependent)
  9. Paragraph shortening — For social/chat scenes

Scenes

SceneCasualnessBest For
general0.3Default, balanced
social0.7Social media, short posts
tech0.3Tech blogs, tutorials
formal0.1Formal articles, reports
chat0.8Conversations, messaging

Aggressive Mode (-a)

Adds +0.3 casualness, more colloquial expressions, stronger sentence restructuring. Typical score reduction: 60-80 points on heavily AI-generated text.

Reproducibility

Use --seed N for reproducible results (same input + seed = same output).


Writing Style Transforms

7 specialized Chinese writing styles:

StyleNameDescription
casual口语化Like chatting with friends — natural, relaxed
zhihu知乎Rational, in-depth, personal opinions
xiaohongshu小红书Enthusiastic, emoji-rich, product-focused
wechat公众号Storytelling, engaging, relatable
academic学术Rigorous, precise, no colloquialisms
literary文艺Poetic, imagery-rich, metaphorical
weibo微博Short, opinionated, shareable

Combine humanize + style

python scripts/humanize_cn.py text.txt --style xiaohongshu -o xhs.txt

This first humanizes (removes AI patterns) then applies the style transform.


External Configuration

All patterns, replacements, and scoring weights are in scripts/patterns_cn.json. Edit this file to:

  • Add new AI vocabulary patterns
  • Customize replacement alternatives
  • Adjust scoring weights per severity
  • Add regex patterns for template detection
  • Set thresholds for hedging language detection

Scripts Reference

detect_cn.py

python scripts/detect_cn.py [file] [-j] [-s] [-v] [--sentences N]
FlagDescription
-jJSON output
-sScore only (e.g. "72/100 (high)")
-vVerbose: show worst sentences
--sentences NNumber of worst sentences to show (default: 5)

humanize_cn.py

python scripts/humanize_cn.py [file] [-o output] [--scene S] [--style S] [-a] [--seed N]
FlagDescription
-oOutput file
--scenegeneral/social/tech/formal/chat
--stylecasual/zhihu/xiaohongshu/wechat/academic/literary/weibo
-aAggressive mode
--seedRandom seed for reproducibility

style_cn.py

python scripts/style_cn.py [file] --style S [-o output] [--seed N] [--list]

compare_cn.py

python scripts/compare_cn.py [file] [-o output] [--scene S] [--style S] [-a]

Shows score diff, category changes, and metric comparison before/after humanization.


Workflow

# 1. Check AI score
python scripts/detect_cn.py document.txt -v

# 2. Humanize with comparison
python scripts/compare_cn.py document.txt --scene tech -a -o clean.txt

# 3. Verify improvement
python scripts/detect_cn.py clean.txt -s

# 4. Optional: apply specific style
python scripts/style_cn.py clean.txt --style zhihu -o final.txt

Batch Processing

# Scan all files
for f in *.txt; do
  echo "=== $f ==="
  python scripts/detect_cn.py "$f" -s
done

# Transform all markdown
for f in *.md; do
  python scripts/humanize_cn.py "$f" --scene tech -a -o "${f%.md}_clean.md"
done

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

94.38%
按下载量换算2,279

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills