Agent skill · Documentation

humanize-it

对指定文档进行去 AI 味的改写。自动选择最合适的人性化策略(humanizer-zh / humanize-chinese / technical-writing), 迭代改写直到效果达标或迭代 42 次为止。适用于中文文本的去 AI 化处理,包括通用文章、技术文档、学术论文等。 Use when user says: "humanize this", "去AI味", "降AIGC", "人性化改写", "改成人话", "去除AI痕迹", "humanize document", "make text human-like", "去机器味", "降低AI率", "过AIGC检测"

smallnestgithub.com/smallnestGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add smallnest/goal-workflow --skill humanize-it --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: -Read-Write-Edit-AskUserQuestion-Skill
Path: skills/humanize-it/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 199
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# Humanize-It: 迭代式去 AI 味改写 对指定文档进行去 AI 味的改写。根据文本类型和内容,从三个子 skill 中自动选择最合适的一个开始改写。如果改写效果不满意,换用另一个 skill 继续迭代,直到效果达标或达到 42 次迭代上限。 ## 子 Skill 能力矩阵 | Skill | 适用场景 | 核心能力 | 改写风格 | |-------|---------|---------|---------| | **humanizer-zh** | 通用文本、文章、博客、文案 | 识别 24+ AI 写作模式,注入个性与灵魂,节奏变化 | 自然、有温度、带观点 | | **humanize-chinese** | 通用 + 学术 + 长文本 | 20+ 规则检测 + 统计特征 + LR 融合评分,CLI 工具链 | 多种风格可选(知乎/小红书/学术/文学等) | | **technical-writing** | 技术文档、架构说明、设计稿、评审文档 | 去除技术黑话,证据先行,消除主持腔 | 平实、严谨、可论证 | ## 工作流程 ### 第一步:读取文档并分析 1. 读取用户指定的文档内容 2. 判断文档类型: - **技术文档**(技术方案、架构说明、设计文档、评审稿)→ 优先使用 `technical-writing` - **学术论文**(论文、研究文章)→ 优先使用 `humanize-chinese`(学术模式) - **通用文本**(博客、文案、文章)→ 优先使用 `humanizer-zh` - **长文本**(≥1500 字)→ 优先使用 `humanize-chinese`(长文本模式) ### 第二步:改写策略选择 根据文档类型选择第一个改写 skill: ``` 文档类型判断: ├── 技术文档 → technical-writing → humanizer-zh → humanize-chinese ├── 学术论文 → humanize-chinese(academic) → humanizer-zh → technical-writing ├── 通用文本 → humanizer-zh → humanize-chinese → technical-writing └── 长文本(≥1500字) → humanize-chinese(longform) → humanizer-zh → technical-writing ``` ### 第三步:迭代改写循环 ``` iteration = 0 MAX_ITERATIONS = 42 while iteration < MAX_ITERATIONS: iteration += 1 # 使用当前 skill 进行改写 result = humanize(curre

What's inside
Steps it walks through
  1. 子 Skill 能力矩阵
  2. 工作流程
  3. 第一步:读取文档并分析
  4. 第二步:改写策略选择
  5. 第三步:迭代改写循环
  6. 第四步:质量评估
  7. 第五步:输出结果
  8. 具体执行指令
  9. 调用 humanizer-zh 时
  10. 调用 humanize-chinese 时
  11. 调用 technical-writing 时
  12. 迭代策略细节
  13. 何时切换 Skill
  14. 组合策略
More from goal-workflow
All skills →
About this skill
What does the humanize-it skill do?

对指定文档进行去 AI 味的改写。自动选择最合适的人性化策略(humanizer-zh / humanize-chinese / technical-writing), 迭代改写直到效果达标或迭代 42 次为止。适用于中文文本的去 AI 化处理,包括通用文章、技术文档、学术论文等。 Use when user says: "humanize this", "去AI味", "降AIGC", "人性化改写", "改成人话", "去除AI痕迹", "humanize document", "make text human-like", "去机器味", "降低AI率", "过AIGC检测"

How do I install it?

Run `npx skills add smallnest/goal-workflow --skill humanize-it --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From smallnest/goal-workflow, a repository with 199 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going