/install humanizer-plus
\r \r
AI Text Humanizer\r
\r Rewrite AI-generated text to remove robotic patterns and make it sound naturally human. Targets 24 known AI writing signatures including filler phrases, AI vocabulary, sycophantic tone, and formulaic structure.\r \r
How It Works — Under the Hood\r
\r This skill uses a two-layer architecture to transform AI-generated text into human-sounding prose:\r \r
Layer 1: LLM Rewriting (Primary)\r
\r
The primary path sends your text to a large language model (Gemini) with a carefully engineered system prompt derived from Wikipedia's WikiProject AI Cleanup guide. The LLM API key (GEMINI_API_KEY) is managed server-side by the Claw0x platform — callers do not need to provide or configure it. You only need a CLAW0X_API_KEY to authenticate through the Gateway. The system prompt instructs the model to:\r
\r
- Scan the input for all 24 known AI writing patterns\r
- Rewrite the text to eliminate those patterns while preserving meaning\r
- Audit the rewritten output for any lingering AI-isms\r
- Revise a second time to catch patterns that survived the first pass\r \r The LLM is also given personality rules: have opinions, vary sentence rhythm, acknowledge complexity, use "I" when natural, and let some structural imperfection through.\r \r
Layer 2: Regex Fallback (Deterministic)\r
\r If the LLM is unavailable (rate limit, timeout), the skill falls back to a deterministic regex engine that applies pattern-matched replacements across six categories:\r \r
- Chatbot artifacts — removes "I hope this helps!", "Let me know if..."\r
- Filler phrases — "in order to" → "to", "due to the fact that" → "because"\r
- Significance inflation — "marking a pivotal moment" → removed\r
- Copula avoidance — "serves as" → "is"\r
- AI vocabulary — 40+ word substitutions (e.g. "leverage" → "use")\r
- Emoji removal and em-dash normalization\r \r The regex path is lower quality but instant, deterministic, and zero-cost.\r \r
Prerequisites\r
\r This skill requires a Claw0x API key:\r \r
- Sign up at claw0x.com\r
- Go to Dashboard → API Keys → Create Key\r
- Store the key securely using one of these methods:\r
- Add
CLAW0X_API_KEYto your agent's secure environment variables\r - Use your platform's secret manager (e.g. GitHub Secrets, Vercel env vars)\r
- Use a
.envfile excluded from version control via.gitignore\r \r
- Add
Security note: Never embed API keys in prompts, source code, or version-controlled files.\r \r
When to Use\r
\r
- User says "humanize this", "make this sound more natural", "remove AI patterns"\r
- User wants text to pass AI detection tools (GPTZero, Originality.ai, etc.)\r
- Agent pipeline produces text that needs to sound human-written\r
- Content teams need to clean up AI-drafted blog posts, emails, or documentation\r \r
API Call\r
\r
curl -s -X POST https://claw0x.com/v1/call \\r
-H "Authorization: Bearer $CLAW0X_API_KEY" \\r
-H "Content-Type: application/json" \\r
-d '{\r
"skill": "humanizer",\r
"input": {\r
"text": "Your AI-generated text here..."\r
}\r
}'\r
```\r
\r
## Input\r
\r
The `input` field accepts an object with one of these keys:\r
\r
| Field | Type | Required | Description |\r
|-------|------|----------|-------------|\r
| `input.text` | string | yes (one of) | Text to humanize |\r
| `input.content` | string | yes (one of) | Alternative key for the text |\r
| `input.body` | string | yes (one of) | Alternative key for the text |\r
\r
## Output Fields\r
\r
| Field | Type | Description |\r
|-------|------|-------------|\r
| `humanized_text` | string | The rewritten text with AI patterns removed |\r
| `original_length` | number | Character count of original text |\r
| `humanized_length` | number | Character count of humanized text |\r
| `method` | string | `"llm"` (AI rewrite) or `"regex"` (deterministic fallback) |\r
\r
## Example\r
\r
**Input:**\r
```json\r
{\r
"skill": "humanizer",\r
"input": {\r
"text": "Additionally, it is worth noting that this groundbreaking solution serves as a testament to the transformative power of innovation. The future looks bright for this pivotal technology. I hope this helps!"\r
}\r
}\r
```\r
\r
**Output:**\r
```json\r
{\r
"humanized_text": "This solution shows what good engineering looks like in practice. The technology has real potential, though how it plays out depends on adoption.",\r
"original_length": 204,\r
"humanized_length": 138,\r
"method": "llm"\r
}\r
```\r
\r
## Error Codes\r
\r
- `400` — Missing or empty text input\r
- `500` — Processing failed (not billed)\r
\r
## Pricing\r
\r
Pay-per-successful-call only. Failed calls and 5xx errors are never charged.\r
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install humanizer-plus - 安装完成后,直接呼叫该 Skill 的名称或使用
/humanizer-plus触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
AI Text Humanizer 是什么?
Remove signs of AI-generated writing from text via the Claw0x API. Use when the user asks to humanize text, make AI writing sound natural, remove AI patterns... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 390 次。
如何安装 AI Text Humanizer?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install humanizer-plus」即可一键安装,无需额外配置。
AI Text Humanizer 是免费的吗?
是的,AI Text Humanizer 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AI Text Humanizer 支持哪些平台?
AI Text Humanizer 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AI Text Humanizer?
由 claw0x(@kennyzir)开发并维护,当前版本 v1.0.0。