Install
openclaw skills install humanize-zh-pro中文去AI味 — 将AI生成的机械化文本转换为自然、有人情味的人类写作风格。支持5种平台风格(知乎/小红书/公众号/朋友圈/通用),内置AI味检测器和深度风格指南。比现有版本多了自动化脚本、多风格支持、批量处理和AI味评分。
openclaw skills install humanize-zh-pro将AI生成的机械化文本转换为自然、有人情味的人类写作风格。
比 humanize-zh 强在哪?
# 1. 先检测文本的AI味
./scripts/detect-ai-taste.sh my_article.txt
# 2. 对AI味重的文本去味
./scripts/humanize.sh -i my_article.txt -s zhihu -o ready.txt
# 3. AI 读取 ready.txt 中的提示词,执行去味
# 4. 再检测一次确认效果
./scripts/detect-ai-taste.sh ready.txt
| 风格 | 命令 | 适用平台 |
|---|---|---|
zhihu | -s zhihu | 知乎回答、专栏文章 |
xiaohongshu | -s xiaohongshu | 小红书笔记 |
gongzhonghao | -s gongzhonghao | 微信公众号 |
pengyouquan | -s pengyouquan | 朋友圈、短文案 |
casual | -s casual | 博客、私信、通用 |
每种风格都有完整的模板(语气、结构、用词、禁忌、开头/结尾模板),见 scripts/templates/。
detect-ai-taste.sh 从 4 个维度评估:
维度1: 结构模式 (0-50)
维度2: 语句多样性 (0-35)
维度3: 人性化指标 (0-55)
维度4: 连接词模式 (0-30)
评分:
# 批量检测文件夹中所有txt文件
for f in drafts/*.txt; do
echo "=== $f ==="
./scripts/detect-ai-taste.sh "$f"
done
# 批量去味(知乎风格)
for f in drafts/*.txt; do
base=$(basename "$f" .txt)
./scripts/humanize.sh -i "$f" -s zhihu -o "ready/${base}_zhihu.txt"
done
完整风格指南和去味方法论见 references/style-guide.md,包含:
cat ai_draft.txt | ./scripts/humanize.sh -s casual
./scripts/humanize.sh -i article.txt --score
SCORE=$(./scripts/humanize.sh -i text.txt --score 2>/dev/null | grep 'AI味评分' | grep -o '[0-9]*')
if [ "$SCORE" -ge 70 ]; then
./scripts/humanize.sh -i text.txt -s casual -o humanized.txt
echo "深度去味完成"
else
./scripts/humanize.sh -i text.txt -s zhihu -o humanized.txt
echo "轻度润色完成"
fi
humanize-zh 对比| 功能 | humanize-zh | humanize-zh-pro |
|---|---|---|
| 写作指导 | ✅ | ✅ |
| 自动化脚本 | ❌ | ✅ |
| AI味检测 | ❌ | ✅ 4维评分 |
| 多平台风格 | ❌ | ✅ 5种 |
| 批量处理 | ❌ | ✅ |
| 深度风格指南 | ❌ | ✅ |
| 管道模式 | ❌ | ✅ |
| 风格模板库 | ❌ | ✅ 5个完整模板 |
humanize-zh-pro/
├── SKILL.md # 本文件
├── scripts/
│ ├── humanize.sh # 主脚本(去味)
│ ├── detect-ai-taste.sh # AI味检测器
│ └── templates/
│ ├── zhihu.md # 知乎风格模板
│ ├── xiaohongshu.md # 小红书风格模板
│ ├── gongzhonghao.md # 公众号风格模板
│ ├── pengyouquan.md # 朋友圈风格模板
│ └── casual.md # 通用口语模板
└── references/
└── style-guide.md # 深度风格指南
MIT — 随便用,署名就好。