返回 Skills 列表
🧑

AI 文本人性化

去除 AI 痕迹,让文字更自然。

社区🔥

📦安装

在终端中运行以下命令安装此 Skill:

clawhub install humanizer

✨ 主要特性

  • AI 内容人性化改写
  • 语气和情感调整
  • 去除机器感降低 AI 检测率
  • 保持原意优化表达
  • 多种写作风格
  • 文化和语境适配

📖 使用指南

人性化改写

让 AI 生成的内容更自然

import { Humanizer } from "@ima-claw/humanizer"

const humanizer = new Humanizer()
const result = await humanizer.rewrite({
  content: "AI生成的机械化文本...",
  style: "conversational",
  emotion: "warm"
})

风格调整

转换内容的语气和风格

const adjusted = await humanizer.adjustTone({
  content: "原始内容...",
  fromTone: "formal",
  toTone: "friendly",
  preserveStructure: true
})

💡 示例代码

批量处理

批量优化多篇内容

const contents = [
  "文章1...",
  "文章2...",
  "文章3..."
]

const humanized = await humanizer.batchProcess(contents, {
  style: "natural",
  variance: "high" // 每篇风格有差异
})

AI 检测规避

降低 AI 内容检测率

const evaded = await humanizer.evadeDetection({
  content: "AI生成内容...",
  level: "high",
  maintainQuality: true,
  checkResult: true // 返回检测分数
})

🔧 故障排除

  • 改写后建议人工审核确保质量
  • 过度优化可能影响内容准确性
  • 不同语言效果可能有差异
  • 保存原文便于对比和调整