返回顶部
h

humanize-ai

Humanize AI content by detecting and auto-fixing AI generated content. Humanize AI text using Python scripts. Scans for AI vocabulary, puffery, chatbot artifacts, and auto-replaces filler phrases. Use when you want to analyze text in AI detector and bypass it in future, batch-process files, run automated cleanup, or get a report before manual humanizing.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.1.0
安全检测
已通过
2,234
下载量
8
收藏
概述
安装方式
版本历史

humanize-ai

# Humanize CLI Command-line tools for detecting and auto-fixing AI writing patterns. ## Scripts ### analyze.py — Detect AI Patterns Scans text and reports AI vocabulary, puffery, chatbot artifacts, and auto-replaceable phrases. ```bash # Analyze a file python scripts/analyze.py input.txt # Analyze from stdin echo "This serves as a testament to our commitment" | python scripts/analyze.py # JSON output for programmatic use python scripts/analyze.py input.txt --json ``` **Output example:** ``` ================================================== AI PATTERN ANALYSIS - 5 issues found ================================================== AI VOCABULARY: • testament: 1x • crucial: 2x AUTO-REPLACEABLE: • "serves as" → "is": 1x • "in order to" → "to": 1x ``` --- ### humanize.py — Auto-Replace Patterns Performs automatic replacements for common AI-isms. ```bash # Humanize and print to stdout python scripts/humanize.py input.txt # Write to output file python scripts/humanize.py input.txt -o output.txt # Include em dash replacement python scripts/humanize.py input.txt --fix-dashes # Quiet mode (no change log) python scripts/humanize.py input.txt -q ``` **What it fixes automatically:** - Filler phrases: "in order to" → "to", "due to the fact that" → "because" - Copula avoidance: "serves as" → "is", "boasts" → "has" - Sentence starters: removes "Additionally,", "Furthermore,", "Moreover," - Curly quotes → straight quotes - Chatbot artifacts: removes "I hope this helps", "Let me know if", etc. --- ## Workflow 1. **Analyze first** to see what needs fixing: ```bash python scripts/analyze.py document.txt ``` 2. **Auto-fix** safe replacements: ```bash python scripts/humanize.py document.txt -o document_clean.txt ``` 3. **Manual review** for AI vocabulary and puffery flagged by analyze (these require human judgment) 4. **Re-analyze** to confirm improvements: ```bash python scripts/analyze.py document_clean.txt ``` --- ## Customizing Patterns Edit `scripts/patterns.json` to add/remove: - `ai_words` — vocabulary that flags but doesn't auto-replace - `puffery` — promotional language to flag - `replacements` — phrase → replacement mappings (empty string = delete) - `chatbot_artifacts` — phrases to auto-remove - `hedging_phrases` — excessive hedging to flag --- ## Batch Processing Process multiple files: ```bash # Analyze all markdown files for f in *.md; do echo "=== $f ===" python scripts/analyze.py "$f" done # Humanize all txt files in place for f in *.txt; do python scripts/humanize.py "$f" -o "$f.tmp" && mv "$f.tmp" "$f" done ``` ---

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 humanize-ai-1776372551 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 humanize-ai-1776372551 技能

通过命令行安装

skillhub install humanize-ai-1776372551

下载 Zip 包

⬇ 下载 humanize-ai v1.1.0

文件大小: 5.62 KB | 发布时间: 2026-4-17 15:09

v1.1.0 最新 2026-4-17 15:09
- Skill renamed from "humanize-cli" to "humanize-ai"
- Description updated to reflect the new name and clarify purpose
- No code or functional changes detected

Archiver·手机版·闲社网·闲社论坛·羊毛社区· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2025 闲社网·线报更新论坛·羊毛分享社区·http://xianshe.com

p2p_official_large
返回顶部