Claude Skill

solo-humanize

Use when "humanize this", "make it sound human", "strip AI patterns", "clean up the copy", or text reads like AI-generated output with em dashes and stock phrases.

LLM Mart · 0 points · 7 views 0 listing impressions 0 install-command copies
Virus-scanned Reviewed automatically before listing.

Full trust report

Download fortunto2-solo-factory-skills_humanize-05ec009.zip · 4 KB
Part of fortunto2/solo-factory — 43 skills

Install

skills CLI npx skills add https://github.com/fortunto2/solo-factory/tree/main/skills/humanize
Claude Code claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install fortunto2-solo-factory@llmmart
Git git clone https://github.com/fortunto2/solo-factory.git

The skills CLI installs just this skill, for any of its supported agents. Claude Code installs the whole fortunto2/solo-factory collection as a plugin from our marketplace. Git is the plain clone.

Skill manifest

/humanize

Strip AI writing patterns from user-facing text. Takes a file or pasted text and rewrites it to read like a human wrote it, without losing meaning or structure.

Why this exists

LLM output has recognizable tells — em dashes, stock phrases, promotional inflation, performed authenticity. Readers (and Google) notice. This skill catches those patterns and rewrites them.

When to use

  • After /content-gen, /landing-gen, /video-promo — polish the output
  • Before publishing any user-facing prose (blog posts, landing pages, emails)
  • When editing CLAUDE.md or docs that will be read by humans
  • Standalone: /humanize path/to/file.md

Input

  • File path from $ARGUMENTS — reads and rewrites in place
  • No argument — asks to paste text, outputs cleaned version
  • Works on .md, .txt, and text content in .tsx/.html (string literals only)

Pattern Catalog

1. Em Dash Overuse (—)

The most obvious AI tell. Replace with commas, periods, colons, or restructure the sentence.

Before After
"The tool — which is free — works great" "The tool (which is free) works great"
"Three features — speed, security, simplicity" "Three features: speed, security, simplicity"
"We built this — and it changed everything" "We built this. It changed everything."

Rule: Max 1 em dash per 500 words. Zero is better.

2. Stock Phrases

Phrases that signal "AI wrote this." Remove or replace with specific language.

Filler phrases (delete entirely):

  • "it's worth noting that" → (just state the thing)
  • "at the end of the day" → (cut)
  • "in today's world" / "in the modern landscape" → (cut)
  • "without further ado" → (cut)
  • "let's dive in" / "let's explore" → (cut)

Promotional inflation (replace with specifics):

  • "game-changer" → what specifically changed?
  • "revolutionary" → what's actually new?
  • "cutting-edge" → describe the technology
  • "seamless" → "works without configuration" (or whatever it actually does)
  • "leverage" → "use"
  • "robust" → "handles X edge cases" (specific)
  • "streamline" → "cut steps from N to M"
  • "empower" → what can the user now do?
  • "unlock" → what's the actual capability?

Performed authenticity (rewrite):

  • "to be honest" → (if you need to say this, the rest wasn't honest?)
  • "let me be frank" → (just be frank)
  • "I have to say" → (just say it)
  • "honestly" → (cut)
  • "the truth is" → (cut, state the truth directly)

3. Rule of Three

AI loves triplets: "fast, secure, and scalable." Real writing varies list length.

Before After
"Fast, secure, and scalable" "Fast and secure" (if scalable isn't proven)
"Build, deploy, and iterate" "Build and ship" (if that's what you mean)
Three bullet points that all say the same thing One clear bullet

Rule: If you find 3+ triplet lists in one document, break at least half of them.

4. Structural Patterns

Every section has the same shape: AI tends to write: heading → one-sentence intro → 3 bullets → transition sentence. Real writing varies section length and structure.

Hedging sandwich: "While X has limitations, it offers Y, making it Z." → Pick a side. State it.

False balance: "On one hand X, on the other hand Y." → If one side is clearly better, say so.

5. Sycophantic Openers

  • "Great question!" → (cut)
  • "That's a fantastic idea!" → (cut, or say what's specifically good about it)
  • "Absolutely!" → (cut if not genuine agreement)
  • "I'd be happy to help!" → (just help)

6. Passive Voice / Weak Verbs

  • "It should be noted that" → (cut, just note it)
  • "There are several factors that" → name the factors
  • "It is important to" → say why
  • "This can be achieved by" → "Do X"

7. Rhetorical Patterns

Word-level fixes miss these. They survive shortening: a 300-character message can still carry three of them, which is why manually trimming text does not make it sound human. Cut them, don't rewrite them into better versions.

Pattern Before After
Binary contrast "It's not a docs problem. It's a coverage problem." "6 questions fail because 3 devices have no docs."
Negative listing "Not a wrapper. Not a chatbot. A compiler." "It's a compiler."
Colon reveal "The catch: it needs your docs." "It needs 3 docs nobody has written."
Faux-insight setup "The part everyone misses is distribution." "Distribution is the moat."
Throat-clearing "Here's the thing." / "Let me be clear." (cut, state the point)
Rhetorical setup "What if I told you...", "Think about it:" (cut, make the claim)
-ing pseudo-analysis "…shipped v2, highlighting their focus on speed." "…shipped v2, which cut load time to 400ms."
Importance puffery "marks a pivotal moment", "a testament to" state the fact, let the reader judge
Metadiscourse "This matters more than it sounds." (cut — the fact carries it)
Weasel attribution "experts agree", "studies show" name the source or drop the claim
Synonym cycling "the agent… the assistant… the tool…" one name, repeated
Profound kicker "The future isn't coming. It's already here." delete it, end on the last concrete line
Summary recap "In conclusion…", "Overall…" end on the takeaway or next action

Portability test. If a sentence would read identically about another person, company, or product, it is filler. Replace it with a fact, mechanism, number or consequence specific to this subject, or cut it.

Show, don't label. Cut commentary that tells the reader a point is important, surprising or subtle. If the prose already shows it, delete the label.

Protect the specific fact. Never smooth a detail into generic importance. "significantly improves productivity" → "cut review time from 30 minutes to 8."

Process

  1. Read the input — file path or pasted text.

  2. Scan for patterns — check each category above. Count violations per category.

  3. Rewrite — fix each violation while preserving:

    • Technical accuracy (don't change code, commands, or technical terms)
    • Structure (headings, lists, code blocks stay)
    • Tone intent (if the original was casual, keep it casual)
    • Length (aim for same or shorter, never longer)
  4. Report what changed:

    Humanized: {file or "pasted text"}
    
    Changes:
      Em dashes:  {N} removed
      Stock phrases: {N} replaced
      Inflation: {N} deflated
      Triplets: {N} broken
      Sycophancy: {N} cut
      Rhetorical patterns: {N} cut
      Total: {N} patterns fixed
    
    Before: {word count}
    After:  {word count}
    
  5. If file path: write the cleaned version back. Show a diff summary. If pasted text: output the cleaned version directly.

Detect mode

Asked "is this AI slop?" or handed someone else's draft to audit: name each pattern from this skill that appears, quote the line, give the fix in a few words. Do not rewrite, do not score the text, and never claim an AI wrote it — detectors guess, a named pattern is evidence the writer can check. Offer to edit afterwards.

What NOT to change

  • Code blocks and inline code
  • Technical terms, library names, CLI commands
  • Quotes from other people (attributed quotes stay verbatim)
  • Numbers, dates, URLs
  • Headings structure (don't merge or split sections)
  • Content meaning — only rephrase, never add or remove ideas

Edge Cases

  • Short text (<50 words): just apply stock phrase filter, skip structural analysis
  • Already clean: report "No AI patterns found. Text looks human."
  • Code-heavy docs: skip code blocks entirely, only process prose sections
  • Non-English text: apply em dash and structural rules (they're universal), skip English stock phrases

Credits

The rhetorical-pattern taxonomy in section 7 and the detect-mode contract are adapted from no-ai-slop by Peter Yang (MIT).

Files (solo-factory)
  • SKILL.md 8.3 KB
    ---
    name: solo-humanize
    description: Use when "humanize this", "make it sound human", "strip AI patterns", "clean up the copy", or text reads like AI-generated output with em dashes and stock phrases.
    license: MIT
    metadata:
      author: fortunto2
      version: "1.1.0"
      openclaw:
        emoji: "✍️"
    allowed-tools: Read, Write, Edit, Glob, Grep
    argument-hint: "[file-path or paste text]"
    ---
    
    # /humanize
    
    Strip AI writing patterns from user-facing text. Takes a file or pasted text and rewrites it to read like a human wrote it, without losing meaning or structure.
    
    ## Why this exists
    
    LLM output has recognizable tells — em dashes, stock phrases, promotional inflation, performed authenticity. Readers (and Google) notice. This skill catches those patterns and rewrites them.
    
    ## When to use
    
    - After `/content-gen`, `/landing-gen`, `/video-promo` — polish the output
    - Before publishing any user-facing prose (blog posts, landing pages, emails)
    - When editing CLAUDE.md or docs that will be read by humans
    - Standalone: `/humanize path/to/file.md`
    
    ## Input
    
    - **File path** from `$ARGUMENTS` — reads and rewrites in place
    - **No argument** — asks to paste text, outputs cleaned version
    - Works on `.md`, `.txt`, and text content in `.tsx`/`.html` (string literals only)
    
    ## Pattern Catalog
    
    ### 1. Em Dash Overuse (—)
    
    The most obvious AI tell. Replace with commas, periods, colons, or restructure the sentence.
    
    | Before | After |
    |--------|-------|
    | "The tool — which is free — works great" | "The tool (which is free) works great" |
    | "Three features — speed, security, simplicity" | "Three features: speed, security, simplicity" |
    | "We built this — and it changed everything" | "We built this. It changed everything." |
    
    **Rule:** Max 1 em dash per 500 words. Zero is better.
    
    ### 2. Stock Phrases
    
    Phrases that signal "AI wrote this." Remove or replace with specific language.
    
    **Filler phrases (delete entirely):**
    - "it's worth noting that" → (just state the thing)
    - "at the end of the day" → (cut)
    - "in today's world" / "in the modern landscape" → (cut)
    - "without further ado" → (cut)
    - "let's dive in" / "let's explore" → (cut)
    
    **Promotional inflation (replace with specifics):**
    - "game-changer" → what specifically changed?
    - "revolutionary" → what's actually new?
    - "cutting-edge" → describe the technology
    - "seamless" → "works without configuration" (or whatever it actually does)
    - "leverage" → "use"
    - "robust" → "handles X edge cases" (specific)
    - "streamline" → "cut steps from N to M"
    - "empower" → what can the user now do?
    - "unlock" → what's the actual capability?
    
    **Performed authenticity (rewrite):**
    - "to be honest" → (if you need to say this, the rest wasn't honest?)
    - "let me be frank" → (just be frank)
    - "I have to say" → (just say it)
    - "honestly" → (cut)
    - "the truth is" → (cut, state the truth directly)
    
    ### 3. Rule of Three
    
    AI loves triplets: "fast, secure, and scalable." Real writing varies list length.
    
    | Before | After |
    |--------|-------|
    | "Fast, secure, and scalable" | "Fast and secure" (if scalable isn't proven) |
    | "Build, deploy, and iterate" | "Build and ship" (if that's what you mean) |
    | Three bullet points that all say the same thing | One clear bullet |
    
    **Rule:** If you find 3+ triplet lists in one document, break at least half of them.
    
    ### 4. Structural Patterns
    
    **Every section has the same shape:**
    AI tends to write: heading → one-sentence intro → 3 bullets → transition sentence. Real writing varies section length and structure.
    
    **Hedging sandwich:**
    "While X has limitations, it offers Y, making it Z." → Pick a side. State it.
    
    **False balance:**
    "On one hand X, on the other hand Y." → If one side is clearly better, say so.
    
    ### 5. Sycophantic Openers
    
    - "Great question!" → (cut)
    - "That's a fantastic idea!" → (cut, or say what's specifically good about it)
    - "Absolutely!" → (cut if not genuine agreement)
    - "I'd be happy to help!" → (just help)
    
    ### 6. Passive Voice / Weak Verbs
    
    - "It should be noted that" → (cut, just note it)
    - "There are several factors that" → name the factors
    - "It is important to" → say why
    - "This can be achieved by" → "Do X"
    
    ### 7. Rhetorical Patterns
    
    Word-level fixes miss these. They survive shortening: a 300-character message can still
    carry three of them, which is why manually trimming text does not make it sound human.
    Cut them, don't rewrite them into better versions.
    
    | Pattern | Before | After |
    |---------|--------|-------|
    | Binary contrast | "It's not a docs problem. It's a coverage problem." | "6 questions fail because 3 devices have no docs." |
    | Negative listing | "Not a wrapper. Not a chatbot. A compiler." | "It's a compiler." |
    | Colon reveal | "The catch: it needs your docs." | "It needs 3 docs nobody has written." |
    | Faux-insight setup | "The part everyone misses is distribution." | "Distribution is the moat." |
    | Throat-clearing | "Here's the thing." / "Let me be clear." | (cut, state the point) |
    | Rhetorical setup | "What if I told you...", "Think about it:" | (cut, make the claim) |
    | `-ing` pseudo-analysis | "…shipped v2, highlighting their focus on speed." | "…shipped v2, which cut load time to 400ms." |
    | Importance puffery | "marks a pivotal moment", "a testament to" | state the fact, let the reader judge |
    | Metadiscourse | "This matters more than it sounds." | (cut — the fact carries it) |
    | Weasel attribution | "experts agree", "studies show" | name the source or drop the claim |
    | Synonym cycling | "the agent… the assistant… the tool…" | one name, repeated |
    | Profound kicker | "The future isn't coming. It's already here." | delete it, end on the last concrete line |
    | Summary recap | "In conclusion…", "Overall…" | end on the takeaway or next action |
    
    **Portability test.** If a sentence would read identically about another person,
    company, or product, it is filler. Replace it with a fact, mechanism, number or
    consequence specific to this subject, or cut it.
    
    **Show, don't label.** Cut commentary that tells the reader a point is important,
    surprising or subtle. If the prose already shows it, delete the label.
    
    **Protect the specific fact.** Never smooth a detail into generic importance.
    "significantly improves productivity" → "cut review time from 30 minutes to 8."
    
    ## Process
    
    1. **Read the input** — file path or pasted text.
    
    2. **Scan for patterns** — check each category above. Count violations per category.
    
    3. **Rewrite** — fix each violation while preserving:
       - Technical accuracy (don't change code, commands, or technical terms)
       - Structure (headings, lists, code blocks stay)
       - Tone intent (if the original was casual, keep it casual)
       - Length (aim for same or shorter, never longer)
    
    4. **Report what changed:**
       ```
       Humanized: {file or "pasted text"}
    
       Changes:
         Em dashes:  {N} removed
         Stock phrases: {N} replaced
         Inflation: {N} deflated
         Triplets: {N} broken
         Sycophancy: {N} cut
         Rhetorical patterns: {N} cut
         Total: {N} patterns fixed
    
       Before: {word count}
       After:  {word count}
       ```
    
    5. **If file path:** write the cleaned version back. Show a diff summary.
       **If pasted text:** output the cleaned version directly.
    
    ## Detect mode
    
    Asked "is this AI slop?" or handed someone else's draft to audit: name each pattern
    from this skill that appears, quote the line, give the fix in a few words. Do not
    rewrite, do not score the text, and never claim an AI wrote it — detectors guess, a
    named pattern is evidence the writer can check. Offer to edit afterwards.
    
    ## What NOT to change
    
    - Code blocks and inline code
    - Technical terms, library names, CLI commands
    - Quotes from other people (attributed quotes stay verbatim)
    - Numbers, dates, URLs
    - Headings structure (don't merge or split sections)
    - Content meaning — only rephrase, never add or remove ideas
    
    ## Edge Cases
    
    - **Short text (<50 words):** just apply stock phrase filter, skip structural analysis
    - **Already clean:** report "No AI patterns found. Text looks human."
    - **Code-heavy docs:** skip code blocks entirely, only process prose sections
    - **Non-English text:** apply em dash and structural rules (they're universal), skip English stock phrases
    
    ## Credits
    
    The rhetorical-pattern taxonomy in section 7 and the detect-mode contract are adapted
    from [no-ai-slop](https://github.com/petergyang/no-ai-slop) by Peter Yang (MIT).
    

Comments (0)

Sign in to join the conversation.

No comments yet.

Reviews (0)

No reviews yet.

Related