From claude-skills
Fix AI writing patterns in text. Use when: (1) ai-writing-analyzer found issues to fix, (2) need to humanize AI-generated content, (3) preparing content for publication, (4) iteratively refining text until clean.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-skills:ai-writing-fixerThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Fix detected AI writing patterns. Run `ai-writing-analyzer` first to identify issues.
Fix detected AI writing patterns. Run ai-writing-analyzer first to identify issues.
ai-writing-analyzer../ai-writing-humanizer/patterns/patterns.json# Interactive mode - review each change
humanize_text --mode interactive input.md
# Batch mode - auto-fix high-confidence issues
humanize_text --mode batch input.md
# Fix specific categories only
humanize_text --categories "buzzwords,filler-phrases" input.md
Chatbot Artifacts → Delete entirely
Buzzwords → Simplify
| Original | Replacement |
|---|---|
| leverage | use |
| utilize | use |
| facilitate | help, enable |
| implement | build, create |
| delve into | examine, explore |
| cutting-edge | modern, current |
| ecosystem | system, environment |
| synergy | cooperation |
Inflated Symbolism → Deflate
| Original | Replacement |
|---|---|
| stands as a testament | shows, demonstrates |
| plays a vital role | is important for |
| watershed moment | turning point |
| cornerstone of | foundation of, basis for |
Promotional Language → Neutralize
| Original | Replacement |
|---|---|
| revolutionary | significant, notable |
| breathtaking | impressive |
| game-changing | important |
| unparalleled | excellent, strong |
Editorializing → Delete
Negative Parallelism → Direct statement
Participle Endings → Trim or restructure
Filler Phrases → Delete entirely
Em Dash Overuse → Replace with commas or periods Hedge Words → Remove or be specific Transition Overuse → Remove redundant connectors
┌─────────────────┐
│ Analyze Text │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Issues Found? │──No──▶ Done (Clean)
└────────┬────────┘
│ Yes
▼
┌─────────────────┐
│ Generate Fixes │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Apply Changes │
└────────┬────────┘
│
▼
┌─────────────────┐
│ Iteration < 5? │──No──▶ Done (Max iterations)
└────────┬────────┘
│ Yes
└──────────▶ (loop back to Analyze)
| Confidence | Auto-apply? | Examples |
|---|---|---|
| High | Yes | Simple word swaps, deletions |
| Medium | Review | Phrase restructuring |
| Low | Skip | Complex rewrites |
Apply changes from end to beginning to preserve positions:
After all iterations:
## Humanization Report
**Status:** Clean after 3 iterations
**Changes Made:** 15
### Summary
| Category | Fixed |
| ------------------ | ----- |
| Chatbot Artifacts | 1 |
| Buzzwords | 6 |
| Inflated Symbolism | 3 |
| Participle Endings | 2 |
| Filler Phrases | 1 |
| Editorializing | 2 |
### Before/After Excerpt
**Before:** "In today's ever-evolving world, the platform stands as a testament to innovation, leveraging cutting-edge technology."
**After:** "The platform demonstrates innovation using modern technology."
ai-writing-analyzer - Detection without fixesai-writing-humanizer - Full reference implementationnpx claudepluginhub cajias/claude-skills --plugin cc-plugin-authoringGuides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.