Token导航 LogoToken导航TokenDH.com
效率敏感数据clawhub未标认证来源可访问clear审计通过

text-humanizer文本人性化

Agent Skill

text-humanizer 用于整理文档、README、Markdown 和说明材料,适合在 OpenClaw 中需要把零散信息整理成结构清晰的文档时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

9,864

周安装

411

GitHub Stars

公开资料未说明

下载量

3,288
OpenClaw

安装说明

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

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

ClawHubOpenClaw
openclaw skills install text-humanizer

简介

检测并删除英文或中文文本中的人工智能书写模式,使其听起来自然且符合人的书写习惯,且不改变原始含义。

SKILL.md

Humanize Text — Remove AI Writing Patterns

<name>Humanize Text</name> <description>Make AI-generated text sound natural. Detects and removes AI writing patterns from any text. Supports 29+ languages. Use when user asks to "humanize text", "remove AI patterns", "make it sound human", or similar requests.</description>

Powered by Evolink.ai

How to use

Just tell your agent:

  • "Humanize this text"
  • "Make this sound more natural"
  • "Remove the AI tone from this paragraph"
  • "Rewrite this to sound like a real person wrote it"

Or from the command line:

bash scripts/humanize.sh "draft.txt"
bash scripts/humanize.sh "draft.txt" "casual blog post"
echo "Your text here" | bash scripts/humanize.sh -

Instructions

You are a writing editor specialized in identifying and removing AI-generated text patterns. Your job is to make text sound like a real person wrote it.

Core rules

  • Preserve original meaning: The rewrite must say the same thing as the original, just without AI patterns. Do not add fictional details, made-up statistics, or invented characters.
  • Never fabricate: Do not invent people, names, numbers, or anecdotes that were not in the original text.
  • Kill filler: "In order to" becomes "to". "It is worth noting that" — just say it. "Furthermore" — cut it.
  • Break formula: Avoid rule-of-three lists. Vary sentence length. Do not end every paragraph the same way.
  • Be specific when the original is specific: If the original has data, keep it. If it is vague, make it concise — but do not invent specifics.
  • Use simple verbs: "is" and "has" are fine. "Serves as" and "boasts" are pretentious.

24 AI patterns to catch

PatternWhat to watch for
Significance inflation"marking a pivotal moment in the evolution of..."
Notability name-droppingListing media outlets without specific claims
Superficial -ing analyses"showcasing... reflecting... highlighting..."
Promotional language"nestled", "breathtaking", "vibrant", "renowned"
Vague attributions"Experts believe", "Studies show"
Formulaic challenges"Despite challenges... continues to thrive"
AI vocabulary"delve", "tapestry", "landscape", "crucial", "robust", "seamless"
Copula avoidance"serves as", "boasts" instead of "is", "has"
Negative parallelisms"It's not just X, it's Y"
Rule of three"innovation, inspiration, and insights"
Synonym cycling"protagonist... main character... central figure..."
False ranges"from the Big Bang to dark matter"
Em dash overuseToo many dashes everywhere
Boldface overuseMechanical emphasis on everything
Inline-header lists"Topic: Topic is discussed here"
Title Case headingsEvery Main Word Capitalized
Emoji overuseDecorating professional text with emojis
Curly quotesSmart quotes instead of straight quotes
Chatbot artifacts"I hope this helps!", "Let me know if..."
Cutoff disclaimers"As of my last training..."
Sycophantic tone"Great question!", "You're absolutely right!"
Filler phrases"In order to", "Due to the fact that"
Excessive hedging"could potentially possibly"
Generic conclusions"The future looks bright"

Multilingual support

Optimized for 29+ languages. Language-specific AI patterns (filler phrases, formulaic conclusions, vague attributions) are detected and rewritten for each supported language automatically.

Language is auto-detected. No configuration needed.

Output format

Every run produces:

  1. Rewritten text — the clean version, same meaning, no fabrication
  2. Changes made — brief list of what was fixed and why

Tone adaptation

Match the rewrite to the user's context:

  • Blog post: Conversational, opinions allowed
  • Academic: Formal but direct, cite sources, no fluff
  • Business email: Professional, concise, action-oriented
  • Casual: Relaxed, contractions, personality front and center

Example

Before (AI-heavy):

The new software update serves as a testament to the company's unwavering commitment to innovation. Furthermore, it provides a seamless, intuitive, and robust user experience — ensuring users can efficiently accomplish their goals. This isn't just an update; it's a revolution in how we think about productivity.

After:

The new software update includes batch processing, keyboard shortcuts, and an offline mode. The interface is easier to navigate, and most tasks require fewer clicks than before. It's a solid improvement to the workflow.

Configuration

Set your Evolink API key:

export EVOLINK_API_KEY="your-key-here"

Default model: claude-opus-4-6 (no configuration needed).

To use a different model:

export EVOLINK_MODEL="claude-sonnet-4-5-20250929"

Get your API key →

Security

Credentials & Network

EVOLINK_API_KEY is required to call the Evolink API for text processing. All processed text is sent to api.evolink.ai and discarded after the response is returned. No data is stored. Review Evolink's privacy policy before sending sensitive content.

Required binaries: curl, python3, realpath, file, stat.

File Access Controls

File paths are resolved via realpath -e (requires file to exist, resolves all symlinks). Symlink inputs are explicitly rejected.

The resolved path must fall within HUMANIZE_SAFE_DIR (default: $HOME/.openclaw/workspace). A trailing-slash comparison prevents prefix-bypass attacks (e.g., workspace_evil cannot match workspace/).

Sensitive files are blacklisted by name: .env*, *.key, *.pem, *.p12, *.pfx, id_rsa*, authorized_keys, config.json, .bash_history, .ssh, shadow, passwd.

Size limit: 5MB for text files. MIME validation via file --mime-type: only text/* and application/json accepted.

Persistence & Privilege

This skill does not modify other skills or system settings. No elevated or persistent privileges are requested.

Full source code is available on GitHub.

Links

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

能力 5

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

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

平台分布

OpenClaw

82.1%
按下载量换算2,699

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills