good-readme
Create and improve README documents for GitHub projects. Use when the user wants to write a new README, improve an existing one, audit README quality, or asks about documentation best practices for their repository.
Works with
--- name: good-readme description: Create and improve README documents for GitHub projects. Use when the user wants to write a new README, improve an existing one, audit README quality, or asks about documentation best practices for their repository. license: MIT --- # good-readme ## Philosophy **Core principle**: A README is the front door to your project. It should answer "what is this, why should I care, and how do I use it?" within 30 seconds. Every section earns its place by serving a reader's real need — don't pad with boilerplate. **Good READMEs** are scannable, honest, and audience-aware. They lead with a clear value proposition, show real usage examples, and respect the reader's time. A developer evaluating your project will decide in under a minute whether to invest further — the README is your pitch. **Bad READMEs** are walls of text with no structure, auto-generated boilerplate nobody reads, or sparse one-liners that force readers to dig through source code. Equally bad: over-documented READMEs that duplicate what's in `/docs` or include every API method inline. See [anatomy.md](references/anatomy.md) for section-by-section guidance, [examples.md](references/examples.md) for patterns from well-regarded projects, [anti-patterns.md](references/anti-patterns.md) for common mistakes, and [cloudflare.md](references/cloudflare.md) for Cloudflare ecosystem conventions. ## Modes This skill operates in two modes: ### 1. Create — New README For projects that have no README or need one written from scratch. **Before writing anything:** - [ ] Read the project's source code to understand what it does - [ ] Identify the target audience (end users, developers, both?) - [ ] Check for existing docs, config files, and CI setup that reveal project conventions - [ ] Look at package.json / Cargo.toml / pyproject.toml / go.mod etc. for project metadata - [ ] Ask the user: "Who is this README for, and what's the one thing you want them to understand?" **Writing process:** - [ ] Draft the title + one-line description (the hook) - [ ] Write a concise "What & Why" section (2-4 sentences max) - [ ] Add a quick-start that gets the reader from zero to working in minimal steps - [ ] Include real, tested code examples — not pseudocode - [ ] Add installation instructions appropriate to the ecosystem - [ ] Only add sections that this specific project needs (see [anatomy.md](references/anatomy.md)) - [ ] Present draft to user for review before finalizing ### 2. Improve — Existing README For projects with a README that needs enhancement. **Audit first:** - [ ] Read the current README completely - [ ] Read the project source to check if README is accurate and current - [ ] Score against the [quality checklist](references/quality-checklist.md) - [ ] Identify gaps, outdated content, and unnecessary sections - [ ] Present findings to user with specific recommendations **Then improve:** - [ ] Fix factual inaccuracies first (wrong install commands, outdated API examples) - [ ] Address structural issues (missing sections, poor ordering) - [ ] Improve clarity and scannability (headers, code blocks, lists) - [ ] Remove boilerplate that adds no value - [ ] Verify all code examples work - [ ] Present changes to user for approval ## Key Principles 1. **Lead with value** — The first 3 lines determine if someone keeps reading 2. **Show, don't tell** — Code examples > prose descriptions 3. **Be honest about scope** — State what the project does AND what it doesn't do 4. **Respect ecosystem conventions** — npm projects look different from Rust crates 5. **Keep it maintained** — A README that lies is worse than no README 6. **Link, don't duplicate** — Point to docs/ for deep dives, keep the README focused 7. **Test your examples** — Broken code examples destroy trust instantly ## Per-Section Checklist ``` [ ] Title is clear and descriptive (not clever) [ ] One-liner explains what + why in plain language [ ] Quick-start gets reader to "it works" in ≤5 steps [ ] Code examples are real, tested, and copy-pasteable [ ] Installation covers the project's actual ecosystem [ ] No orphan sections (every section serves a purpose) [ ] Badges are useful, not decorative [ ] License is stated [ ] Contributing section exists if accepting contributions ```
More Writing & Documentation skills
paper-context-resolver
lllllllama/rigorpilot-skills
Rigor Paper Context helper for README-first deep learning repo reproduction. Use only when the README and repository files leave a narrow reproduction-critical gap and the task is to resolve a specific paper detail such as dataset split, preprocessing, evaluation protocol, checkpoint mapping, or runtime assumption from primary paper sources while recording conflicts. Do not use for general paper summary, repo scanning, environment setup, command execution, title-only paper lookup, or replacing README guidance by default.
repo-intake-and-plan
lllllllama/rigorpilot-skills
Rigor Intake helper for README-first deep learning repo reproduction. Use when the task is specifically to scan a repository, read the README and common project files, extract documented commands, classify inference, evaluation, and training candidates, and return the smallest trustworthy reproduction plan to the main orchestrator. Do not use for environment setup, asset download, command execution, final reporting, paper lookup, or end-to-end orchestration.
minimal-run-and-audit
lllllllama/rigorpilot-skills
Rigor Run skill for README-first deep learning repo reproduction. Use when the task is specifically to capture or normalize evidence from the selected smoke test or documented inference or evaluation command and write standardized `repro_outputs/` files, including patch notes when repository files changed. Do not use for training execution, initial repo intake, generic environment setup, paper lookup, target selection, hidden scientific-meaning changes, or end-to-end orchestration by itself.

