Token导航 LogoToken导航TokenDH.com
开发可写文件github未标认证来源可访问许可证需确认审计通过

humanizer人性化

Agent Skill

humanizer 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

449

周安装

18

GitHub Stars

111

下载量

145
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/besoeasy/open-skills --skill humanizer

简介

移除 AI 写作痕迹,使文本更符合人类表达习惯与语言节奏。

  • 适合对外沟通、营销文案或用户-facing 内容的润色优化。
  • 保留原意前提下精简冗余、增强具体性,去除模板化句式。
  • 无法完全消除所有 AI 特征,复杂语境仍需人工二次确认。
  • humanizer 属于开发类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Humanizer: Remove AI writing patterns

Edit text so it sounds like a real person wrote it: clearer rhythm, stronger specificity, less filler, and no chatbot artifacts. Keep the original meaning, facts, and intent.

Quick quality checklist

  • name matches folder name exactly (humanizer)
  • Examples are copy-paste runnable (Bash + Node.js)
  • Rewrites preserve factual claims and scope
  • Output includes rewritten text and optional concise change summary
  • No invented facts, citations, or sources

When to use

  • User asks to “humanize”, “de-AI”, “make this sound natural”, or “remove AI tone”
  • Draft sounds generic, inflated, formulaic, or overly polished
  • Content has chatbot artifacts (hedging, servile tone, boilerplate intros/outros)
  • You need a tighter, more direct style without changing factual claims

Required tools / APIs

  • No external API required
  • Optional local tools for batch editing:

- rg (ripgrep) for pattern detection - node (v18+) for scripted rewrite pipelines

Install options:

# Ubuntu/Debian
sudo apt-get install -y ripgrep nodejs npm

# macOS
brew install ripgrep node

Skills

basic_usage

Use this flow for single passages:

  1. Identify AI-patterns in the input
  2. Rewrite sentences to simpler constructions
  3. Replace vague claims with specific details when provided
  4. Keep tone aligned to the user’s context (formal/casual/technical)
  5. Return the rewritten text

Bash (pattern scan):

cat input.txt \
  | rg -n -i "\b(additionally|crucial|pivotal|underscores|highlighting|fostering|landscape|testament|vibrant)\b|\b(i hope this helps|let me know if|great question)\b|—|[“”]"

Node.js (simple rule-based humanizer):

function humanizeText(text) {
  const replacements = [
    [/\bIn order to\b/g, "To"],
    [/\bDue to the fact that\b/g, "Because"],
    [/\bAt this point in time\b/g, "Now"],
    [/\bIt is important to note that\b/g, ""],
    [/\bI hope this helps!?\b/gi, ""],
    [/\bLet me know if you'd like.*$/gim, ""],
    [/\bserves as\b/g, "is"],
    [/\bstands as\b/g, "is"],
    [/\bboasts\b/g, "has"],
    [/—/g, ","],
    [/[“”]/g, '"']
  ];

  let output = text;
  for (const [pattern, to] of replacements) {
    output = output.replace(pattern, to);
  }

  return output
    .replace(/\s{2,}/g, " ")
    .replace(/\n{3,}/g, "\n\n")
    .trim();
}

// Usage:
// const fs = require('node:fs');
// const input = fs.readFileSync('input.txt', 'utf8');
// console.log(humanizeText(input));

robust_usage

Use this for long drafts and production outputs:

  • Do a first pass for pattern detection
  • Do a second pass for structure/rhythm (mix short + long sentences)
  • Remove claims without support ("experts say", "observers note") unless sourced
  • Prefer plain verbs (is/are/has) over inflated alternatives
  • Keep uncertainty only where uncertainty is real

Bash (batch rewrite starter):

#!/usr/bin/env bash
set -euo pipefail

in_file="${1:-input.txt}"
out_file="${2:-output.txt}"

sed -E \
  -e 's/\bIn order to\b/To/g' \
  -e 's/\bDue to the fact that\b/Because/g' \
  -e 's/\bAt this point in time\b/Now/g' \
  -e 's/\bserves as\b/is/g' \
  -e 's/\bstands as\b/is/g' \
  -e 's/\bboasts\b/has/g' \
  -e 's/[“”]/"/g' \
  -e 's/—/,/g' \
  "$in_file" > "$out_file"

echo "Rewritten text saved to: $out_file"

Node.js (pipeline with validation):

import fs from "node:fs/promises";

const bannedPatterns = [
  /\bI hope this helps\b/i,
  /\bLet me know if you'd like\b/i,
  /\bGreat question\b/i,
  /\bAdditionally\b/g,
  /\bcrucial|pivotal|vibrant|testament\b/g
];

function rewrite(text) {
  return text
    .replace(/\bIn order to\b/g, "To")
    .replace(/\bDue to the fact that\b/g, "Because")
    .replace(/\bAt this point in time\b/g, "Now")
    .replace(/\bserves as\b/g, "is")
    .replace(/\bstands as\b/g, "is")
    .replace(/\bboasts\b/g, "has")
    .replace(/—/g, ",")
    .replace(/[“”]/g, '"')
    .replace(/\s{2,}/g, " ")
    .trim();
}

function validate(text) {
  const hits = bannedPatterns.flatMap((pattern) => {
    const m = text.match(pattern);
    return m ? [pattern.toString()] : [];
  });
  return { ok: hits.length === 0, hits };
}

async function main() {
  const inputPath = process.argv[2] || "input.txt";
  const outputPath = process.argv[3] || "output.txt";

  const input = await fs.readFile(inputPath, "utf8");
  const output = rewrite(input);
  const report = validate(output);

  await fs.writeFile(outputPath, output, "utf8");

  if (!report.ok) {
    console.error("Warning: possible AI patterns remain:", report.hits);
    process.exitCode = 2;
  }

  console.log(`Saved: ${outputPath}`);
}

main().catch((err) => {
  console.error(err.message);
  process.exit(1);
});

Pattern checklist

Scan and remove these classes when they appear:

  1. Significance inflation and legacy framing
  2. Notability/media name-dropping without context
  3. Superficial -ing chains
  4. Promotional/advertisement wording
  5. Vague attribution ("experts say")
  6. Formulaic “challenges/future prospects” sections
  7. Overused AI vocabulary (e.g., pivotal, underscores, tapestry)
  8. Copula avoidance (serves as, stands as instead of is)
  9. Negative parallelism (not just X, but Y)
  10. Rule-of-three overuse
  11. Excessive synonym cycling
  12. False ranges (from X to Y without meaningful scale)
  13. Em-dash overuse
  14. Mechanical boldface emphasis
  15. Inline-header bullet artifacts
  16. Title Case heading overuse where sentence case fits
  17. Emoji decoration in formal content
  18. Curly quotes when straight quotes are expected
  19. Chatbot collaboration artifacts
  20. Knowledge-cutoff disclaimers left in final copy
  21. Sycophantic/servile tone
  22. Filler phrase bloat
  23. Excessive hedging
  24. Generic upbeat conclusions with no substance

Output format

Return:

  • rewritten_text (string, required): final humanized draft
  • changes (array of strings, optional): 3-8 concise bullets on major edits
  • warnings (array of strings, optional): unresolved vagueness or missing source details

Example:

{
  "rewritten_text": "The policy may affect outcomes, especially in smaller teams.",
  "changes": [
    "Removed filler phrase: 'It is important to note that'",
    "Replaced vague hedge 'could potentially possibly' with 'may'"
  ],
  "warnings": [
    "Claim about impact scale remains unsourced in original text"
  ]
}

Error shape:

{
  "error": "input_too_short",
  "message": "Need at least one full sentence to humanize reliably.",
  "fix": "Provide a longer passage or combine short fragments into a paragraph."
}

Rate limits / Best practices

  • Use a maximum of 2 rewrite passes (pattern pass + voice pass) to avoid over-editing
  • Keep domain terms and named entities unchanged unless the user asks for simplification
  • Preserve formatting intent (headings, bullets, quote blocks) unless clearly broken
  • If source claims are vague, keep wording conservative and surface a warning instead of inventing specifics
  • Read output aloud mentally: if rhythm sounds robotic, vary sentence length and cadence

Agent prompt

You have the humanizer skill. When the user asks to make text sound natural:

1) Read the full draft and detect AI writing patterns.
2) Rewrite to preserve meaning, facts, and intended tone.
3) Prefer specific, concrete language over vague significance claims.
4) Remove chatbot artifacts, filler, and over-hedging.
5) Use simple constructions (is/are/has) where they read better.
6) Vary sentence rhythm so the text sounds spoken by a real person.
7) Return the rewritten text. Optionally add a brief bullet summary of key changes.

Never invent facts. If a claim is vague and no source is provided, keep it conservative.

Troubleshooting

Rewrite feels too flat

  • Symptom: Text is clean but soulless
  • Fix: Add natural opinion/stance where context allows; vary rhythm and sentence length

Meaning drifted from original

  • Symptom: New version sounds better but changes claims
  • Fix: Re-run with strict requirement: preserve factual claims and scope sentence-by-sentence

Output still sounds AI-generated

  • Symptom: Frequent abstract words and formulaic transitions remain
  • Fix: Run pattern scan first, then rewrite only flagged spans; avoid global synonym swaps

Validation workflow

Use this quick gate before returning output:

  1. Compare original vs rewritten sentence-by-sentence for factual equivalence
  2. Verify no unsupported new specifics were introduced
  3. Check for leftover chatbot artifacts (I hope this helps, Let me know if)
  4. Ensure rhythm variety (not all sentences same length)
  5. Return warnings for unresolved ambiguities

See also

Reference

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

35.51%
按下载量换算51

Claude

33.37%
按下载量换算48

Cursor

19.46%
按下载量换算28

Gemini CLI

8.84%
按下载量换算13

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

可写文件

该 Skill 可能写入或修改本地文件,使用前需要确认目标目录和修改范围。

安装前确认

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

来源信息

继续浏览同类 Skills