| name | readme |
| description | Audit an existing GitHub README or generate one from scratch. Scores structure, clarity, install instructions, and visual appeal. Use when the user wants to write a README, improve their README, add badges, fix documentation, or make their open source project look professional. Triggers on requests like "write a README", "improve my README", "audit my docs", "my README sucks", "add badges", "make my repo look good", "documentation", "README template", or any mention of GitHub documentation or project README files. |
| category | workflow |
| tags | ["readme","documentation","github","open-source","developer-experience"] |
| author | tushaarmehtaa |
Audit an existing README or generate one from scratch. Output is a README.md ready to commit.
Phase 1: Determine Mode
Audit mode โ README.md exists in the project root. Score 8 dimensions, rewrite the weakest sections.
Generate mode โ no README.md, or user explicitly asks to write one from scratch.
Gather anything missing before writing:
- What does this project do? (one sentence a stranger would understand)
- Who is it for? (specific audience, not "developers")
- How do you install it? (exact commands)
- How do you use it? (simplest possible example)
If you can answer these by reading the codebase, do that instead of asking.
Phase 2: The 8 Dimensions
Score each 1โ10 in audit mode. Use as a writing checklist in generate mode.
Name & Description (15%) โ Project name is clear. First paragraph explains what it does in plain language. A stranger can understand it in 5 seconds.
Visual Hook (10%) โ Logo, banner, screenshot, or GIF above the fold. Something visual that shows what the project looks like or does. No visual = automatic 1/10.
Badges (5%) โ Build status, version, license, download count. Use shields.io. Don't overdo it โ 3-6 badges max.
Install (20%) โ Copy-pasteable commands. Covers npm/yarn/pnpm or equivalent. Prerequisites listed if any. Works on first try.
Usage (20%) โ Minimal working example. Shows expected output. A new user can go from install to "it works" in under 60 seconds.
API / Features (10%) โ Key features or API surface listed. Not exhaustive โ just enough to know what's possible. Link to full docs if they exist.
Contributing (10%) โ How to set up the dev environment. How to run tests. Where to report bugs. Makes a first contribution feel approachable.
License (10%) โ License specified clearly. If missing, flag it โ unlicensed code is legally unusable.
Phase 3: Structure Rules
The order that works. Don't rearrange without reason.
# Project Name
[one-line description]
[badges row]
[screenshot / GIF / banner]
## Install
[copy-paste commands]
## Usage
[minimal example with expected output]
## Features
[bullet list โ benefit-first, not feature-first]
## API
[if applicable โ key methods/endpoints]
## Contributing
[setup + test commands + link to issues]
## License
[license name + link]
Rules that don't move:
- First paragraph is everything. If someone reads nothing else, this paragraph must explain what the project does and who it's for.
- Install must be copy-pasteable. No "configure your environment" hand-waving. Exact commands.
- Usage example must be minimal. The simplest possible thing that shows it working. Not a full app โ a 3-5 line snippet.
- Screenshot or GIF above the fold. If the project has a UI, show it. If it's a CLI, show terminal output. If it's a library, show the code + output side by side.
- No wall of text. Short paragraphs. Bullet points. Code blocks. A README is scanned, not read.
- Features lead with benefit. "Generate OG images automatically" not "Dynamic Open Graph Image Generation Module."
Phase 4: The One-Line Description
The hardest part. One sentence under 15 words.
Formulas:
- "[Verb] [thing] [benefit]" โ "Generate changelogs from git history"
- "[Thing] that [does what]" โ "CLI that audits your SEO in 30 seconds"
- "[Outcome] for [audience]" โ "Type-safe API routes for Next.js"
Test it: paste the one-liner into a Slack message with no other context. Does the recipient understand what the project does? If not, rewrite.
Phase 5: Badges
Use shields.io. Pick from:




3-6 badges. More than that is noise. Order: build status, version, downloads, license.
For non-npm projects, adapt: PyPI, crates.io, Go pkg, Docker pulls โ whatever fits.
Phase 6: Audit Output Format
README AUDIT โ [project]
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Name & Description [X/10] [one-line note]
Visual Hook [X/10] [one-line note]
Badges [X/10] [one-line note]
Install [X/10] [one-line note]
Usage [X/10] [one-line note]
API / Features [X/10] [one-line note]
Contributing [X/10] [one-line note]
License [X/10] [one-line note]
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
Overall [X/80]
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
TOP 3 REWRITES:
[Section]: [what's wrong]
โ [rewritten version]
Verify
[ ] One-line description under 15 words โ a stranger gets it
[ ] Screenshot, GIF, or banner visible above the fold
[ ] Install commands copy-paste and work on first try
[ ] Usage example is under 10 lines and shows expected output
[ ] Features lead with benefit, not feature name
[ ] No wall of text โ short paragraphs, bullets, code blocks
[ ] License specified
[ ] Badges use shields.io with real endpoints
[ ] README is under 300 lines โ link to full docs for the rest
[ ] Read it like a stranger โ does it make you want to try this?