Humanize README
Reads the current README.md, audits it for AI slop patterns, then rewrites it in a direct, honest, human voice.
Workflow
Step 1 — Read the README
Use the path passed as the argument; default to README.md when none was given:
cat <readme-path> # e.g. cat docs/README.md — falls back to cat README.md
Also check what the project actually is (to rewrite with specifics, not generics):
cat package.json 2>/dev/null | head -20
cat pyproject.toml 2>/dev/null | head -15
ls src/ 2>/dev/null | head -10
Step 2 — Audit for slop
Read references/slop-patterns.md for the full list. Flag these in the README:
High-signal slop patterns:
- Banned buzzwords:
seamlessly, robust, scalable, leverage, cutting-edge, comprehensive, empower, intuitive, powerful, game-changer
- 2026-era hedging/filler:
"it's worth noting", "let's explore", "this is designed to", "makes it easy to", "enables developers to", "ensures", "has been designed"
- Generic openers starting with "In today's...", "This powerful tool...", "This repository aims to..."
- Feature lists with empty adjectives: "Blazing fast", "Enterprise-grade", "Intuitive API"
- Suspiciously polished completeness with no honest gaps
- Conclusions that philosophize about the project
- Uniform sentence length — every sentence the same rhythm (burstiness check)
- No personal voice — no "why it exists", no honest limitations, no tradeoffs mentioned
Step 3 — Rewrite
Rewrite the README applying these rules:
Voice:
- Write like you'd explain the project over coffee — direct, specific, a bit casual
- Use the actual tech names (not "modern technologies" or "industry-standard tools")
- Keep code blocks, commands, and links exactly as they are
- Preserve the structure (sections) but rewrite the prose
For each section:
- Project description / intro — one or two sentences: what it does, why it exists. No superlatives.
- Features — remove adjectives, add specifics. Not "Fast" → state the actual number if known, otherwise just name the feature plainly
- Installation / Usage — keep as-is if already good; strip any "Welcome to the getting started..." filler
- Why this project — if it exists and sounds generic, rewrite with a real reason or remove it
- Contributing / Closing — strip "star this repo", philosophy, or over-long contributing guides
Tone rules:
- Honest about gaps: "Not tested on Windows", "Still experimental", "Works on my machine"
- Varied sentence lengths — short and long, not all the same
- No emoji unless they were already there (and even then, fewer)
- No exclamation marks unless genuinely warranted
Do NOT:
- Add content that wasn't there — only rewrite existing content
- Change technical accuracy — keep the same claims, just strip the fluff
- Make it curt to the point of being unhelpful — clarity > brevity
- Touch badge rows (
[](#) lines) — CI badges, version badges, license badges stay exactly as-is
Step 4 — Output
Output the full rewritten README in a single fenced markdown code block so it can be copied directly.
Before the block, briefly note what you changed (2-3 bullet points max).
For full banned phrase list and before/after examples: references/slop-patterns.md
1---2name: humanize-readme3description: Rewrites a README.md to remove AI slop — buzzwords, generic openers, fake enthusiasm, and formulaic structure — replacing it with direct, honest, human-sounding writing. This skill should be used when the user wants to humanize a README, remove AI-generated writing patterns, make documentation sound less like ChatGPT wrote it, or asks to "humanize readme", "make it sound human", "remove AI slop from the docs". NOT for factual drift (whether the README's claims are still true — that is a docs-accuracy audit) and not for source code slop (anti-slop).4---56# Humanize README78Reads the current `README.md`, audits it for AI slop patterns, then rewrites it in a direct, honest, human voice.910## Workflow1112### Step 1 — Read the README1314Use the path passed as the argument; default to `README.md` when none was given:1516```bash17cat <readme-path> # e.g. cat docs/README.md — falls back to cat README.md18```1920Also check what the project actually is (to rewrite with specifics, not generics):2122```bash23cat package.json 2>/dev/null | head -2024cat pyproject.toml 2>/dev/null | head -1525ls src/ 2>/dev/null | head -1026```2728### Step 2 — Audit for slop2930Read `references/slop-patterns.md` for the full list. Flag these in the README:3132**High-signal slop patterns:**33- Banned buzzwords: `seamlessly`, `robust`, `scalable`, `leverage`, `cutting-edge`, `comprehensive`, `empower`, `intuitive`, `powerful`, `game-changer`34- 2026-era hedging/filler: `"it's worth noting"`, `"let's explore"`, `"this is designed to"`, `"makes it easy to"`, `"enables developers to"`, `"ensures"`, `"has been designed"`35- Generic openers starting with "In today's...", "This powerful tool...", "This repository aims to..."36- Feature lists with empty adjectives: "Blazing fast", "Enterprise-grade", "Intuitive API"37- Suspiciously polished completeness with no honest gaps38- Conclusions that philosophize about the project39- **Uniform sentence length** — every sentence the same rhythm (burstiness check)40- **No personal voice** — no "why it exists", no honest limitations, no tradeoffs mentioned4142### Step 3 — Rewrite4344Rewrite the README applying these rules:4546**Voice:**47- Write like you'd explain the project over coffee — direct, specific, a bit casual48- Use the actual tech names (not "modern technologies" or "industry-standard tools")49- Keep code blocks, commands, and links exactly as they are50- Preserve the structure (sections) but rewrite the prose5152**For each section:**53- **Project description / intro** — one or two sentences: what it does, why it exists. No superlatives.54- **Features** — remove adjectives, add specifics. Not "Fast" → state the actual number if known, otherwise just name the feature plainly55- **Installation / Usage** — keep as-is if already good; strip any "Welcome to the getting started..." filler56- **Why this project** — if it exists and sounds generic, rewrite with a real reason or remove it57- **Contributing / Closing** — strip "star this repo", philosophy, or over-long contributing guides5859**Tone rules:**60- Honest about gaps: "Not tested on Windows", "Still experimental", "Works on my machine"61- Varied sentence lengths — short and long, not all the same62- No emoji unless they were already there (and even then, fewer)63- No exclamation marks unless genuinely warranted6465**Do NOT:**66- Add content that wasn't there — only rewrite existing content67- Change technical accuracy — keep the same claims, just strip the fluff68- Make it curt to the point of being unhelpful — clarity > brevity69- Touch badge rows (`[](#)` lines) — CI badges, version badges, license badges stay exactly as-is7071### Step 4 — Output7273Output the full rewritten README in a single fenced markdown code block so it can be copied directly.7475Before the block, briefly note what you changed (2-3 bullet points max).7677**For full banned phrase list and before/after examples:** `references/slop-patterns.md`