返回顶部
h

humanize-aiAI内容人性化

Humanize AI content by detecting and auto-fixing AI generated content. Humanize AI text using Python scripts. Scans for AI vocabulary, puffery, chatbot artifacts, and auto-replaces filler phrases. Use when you want to analyze text in AI detector and bypass it in future, batch-process files, run automated cleanup, or get a report before manual humanizing.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.1.0
安全检测
已通过
2,242
下载量
免费
免费
8
收藏
概述
安装方式
版本历史

humanize-ai

Humanize CLI

用于检测和自动修复AI写作模式的命令行工具。

脚本

analyze.py — 检测AI模式

扫描文本并报告AI词汇、浮夸用语、聊天机器人痕迹以及可自动替换的短语。

bash

分析文件


python scripts/analyze.py input.txt

从标准输入分析

echo 这证明了我们的承诺 | python scripts/analyze.py

用于程序化处理的JSON输出

python scripts/analyze.py input.txt --json

输出示例:

==================================================
AI模式分析 - 发现5个问题
==================================================

AI词汇:
• 证明:1次
• 至关重要:2次

可自动替换:
• 作为 → 是:1次
• 为了 → 以:1次



humanize.py — 自动替换模式

对常见的AI用语进行自动替换。

bash

人性化处理并输出到标准输出


python scripts/humanize.py input.txt

写入输出文件

python scripts/humanize.py input.txt -o output.txt

包含破折号替换

python scripts/humanize.py input.txt --fix-dashes

静默模式(无变更日志)

python scripts/humanize.py input.txt -q

自动修复的内容:

  • - 填充短语:为了 → 以,由于 → 因为
  • 系动词回避:作为 → 是,拥有 → 有
  • 句子开头:删除此外,、而且,、再者,
  • 弯引号 → 直引号
  • 聊天机器人痕迹:删除希望这有帮助、如有疑问请等



工作流程

  1. 1. 先分析,查看需要修复的内容:
bash python scripts/analyze.py document.txt
  1. 2. 自动修复安全替换:
bash python scripts/humanize.py document.txt -o document_clean.txt
  1. 3. 手动审查分析标记的AI词汇和浮夸用语(这些需要人工判断)
  1. 4. 重新分析,确认改进效果:
bash python scripts/analyze.py document_clean.txt

自定义模式

编辑 scripts/patterns.json 以添加/删除:

  • - aiwords — 标记但不自动替换的词汇
  • puffery — 需要标记的宣传性语言
  • replacements — 短语 → 替换映射(空字符串表示删除)
  • chatbotartifacts — 自动删除的短语
  • hedging_phrases — 需要标记的过度模糊表达



批量处理

处理多个文件:

bash

分析所有markdown文件


for f in *.md; do
echo === $f ===
python scripts/analyze.py $f
done

原地处理所有txt文件

for f in *.txt; do python scripts/humanize.py $f -o $f.tmp && mv $f.tmp $f done

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 humanize-ai-1776372551 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 humanize-ai-1776372551 技能

通过命令行安装

skillhub install humanize-ai-1776372551

下载

⬇ 下载 humanize-ai v1.1.0(免费)

文件大小: 5.62 KB | 发布时间: 2026-4-17 15:09

v1.1.0 最新 2026-4-17 15:09
- Skill renamed from "humanize-cli" to "humanize-ai"
- Description updated to reflect the new name and clarify purpose
- No code or functional changes detected

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部