Anywhere-agents readme-polish
Audit a GitHub README and rewrite it using modern 2025-2026 patterns — centered header, badges, hero image, GitHub alert callouts, emoji-prefixed features, expandable details, Mermaid diagrams, tables over dense prose. Produces a scannable README that works for a 10-second skim and a deep dive.
git clone https://github.com/yzhao062/anywhere-agents
T=$(mktemp -d) && git clone --depth=1 https://github.com/yzhao062/anywhere-agents "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/readme-polish" ~/.claude/skills/yzhao062-anywhere-agents-readme-polish && rm -rf "$T"
skills/readme-polish/SKILL.mdReadme Polish
Overview
Modern GitHub READMEs are scannable first, readable second. A skimmer should understand what the project does, who it is for, and how to install it in 10 seconds. Motivated readers get more detail from collapsibles, tables, and follow-up sections.
This skill takes an existing README (or a blank slate) and rewrites it using the visual and layout patterns that well-regarded 2025-2026 open-source projects have converged on. It does not invent the content; content comes from the project itself. It shapes how that content is presented.
When to Use
- A README is a text wall with no visual anchors and no one can tell what the project does from a first glance.
- An OSS release is about to ship and the README has not been pass-edited for discoverability.
- The README mixes reference material with quickstart, so the install path is buried.
- Publishing badges, adding a hero image, or restructuring sections would measurably help adoption.
- A practitioner with social credibility wants the README to convey both "this is legit" and "here is how to use it" without competing for attention.
When NOT to Use
- The README already follows the patterns below and the content is fine. Do not thrash for style.
- The project is internal / private / never published. No audience to optimize for.
- The project needs documentation at site-level scale (tutorials, API reference, cookbook). README polish only covers the repo root; use Sphinx / MkDocs / Docusaurus for real docs sites.
Phase 1: Audit the current README
Before editing, classify what is there against the modern-README checklist. The goal is to identify which patterns are missing, which are misapplied, and which content should be moved, collapsed, or deleted.
Use
as the audit grid. For each row, mark present / absent / broken.references/checklist.md
Key audit questions:
- First-paint (above-the-fold): is the project name, one-line tagline, badges, and install command visible before the reader has to scroll? If not, content above those is displacing them.
- Credentials placement: is there a 100+ word maintainer bio blocking the first section? Move it into a
callout or footnote.> [!NOTE] - Feature communication: is "what you get" a wall of multi-sentence bullets, or can a skimmer absorb the list in 10 seconds? Emoji-prefixed one-liners beat dense bullets beat dense prose paragraphs.
- Install path clarity: can the reader find a single working install command in under 5 seconds? If not, there is probably too much pre-install framing.
- Reference material above-the-fold: are limitations, related projects, detailed repo layout, maintenance policy visible before install? They should be collapsed.
- Visual anchors: does the first screen have badges, a hero image, or a diagram? Without at least one, the README feels like documentation instead of a product page.
- Anchor hygiene: do dot-nav links resolve to real sections (GitHub's auto-generated anchor rules: lowercase, hyphens for spaces, strip punctuation)?
Phase 2: Apply modern patterns
See
for the full catalog with copyable snippets. Summary of the highest-impact patterns:references/patterns.md
Hero / first-paint
- Centered header via
. Title, one-line tagline, badge row, dot-separated nav, one-liner elevator pitch.<div align="center"> - Shield.io badges for package version (PyPI, npm), license, CI status, GitHub stars. Keep to 4-5; more than that becomes noise.
- Dot-separated nav links (
) below badges. Helps skimmers jump.[Install](#install) · [Workflow](#workflow) · [Features](#features) - Hero image — a PNG or SVG that makes a skimmer stop scrolling. Two paths:
- HTML mockup rendered via headless Chrome → PNG (good for feature grids, dashboards). See
skill for capture workflow.ci-mockup-figure
tag with light/dark variants for logos. Required only when the project has a logo/wordmark.<picture>
- HTML mockup rendered via headless Chrome → PNG (good for feature grids, dashboards). See
- Maintainer credibility in a
callout, not a prose paragraph. Ideal length: 2–3 sentences with verifiable signals (package stars, citations, institutional affiliation).> [!NOTE]
Content body
- GitHub alert callouts for emphasis:
,> [!NOTE]
,> [!TIP]
,> [!WARNING]
,> [!CAUTION]
. Each renders as a colored box with an icon. Do not overuse — one per major section at most.> [!IMPORTANT] - Emoji-prefixed one-liner bullets for "What you get" / "Features" lists. Each bullet = 1 emoji + bolded feature name + one-line takeaway. 5–8 bullets is the sweet spot.
- Tables over dense bullets for reference material (comparison, decision matrices, scenario → command). Tables read faster than bullets when the content is inherently tabular.
- Mermaid diagrams for architecture, flowcharts, and sequence diagrams. GitHub renders them natively; no binary asset to maintain. Do not use for hero image — the visual weight is not enough.
- Collapsible
blocks for platform-specific variants, limitations, related projects, repo layout, FAQ, anything reference-shaped.<details> - Back-to-top anchor (
+<a name="readme-top">
) at the bottom of long READMEs.<a href="#readme-top">↑ back to top</a>
Structure
- Above-the-fold (first ~40 lines): centered header → badges → nav → hero image → maintainer callout → tagline → elevator pitch.
- Middle: quickstart + install, "what you get" bullets, optional "why / philosophy" narrative.
- Below: day-to-day usage, contribution notes, limitations, related projects, license.
- Collapsed into
: platform-specific install variants, repo layout, opinionated-and-why, limitations, related projects, maintenance policy.<details>
Phase 3: Verify
Before publishing, verify the rewrite actually renders on GitHub (not just in PyCharm / VS Code preview).
- Push to a branch and view on GitHub. GitHub-specific features that do not render in most local previews:
callouts, Mermaid diagrams,> [!NOTE]
light/dark media queries, autogenerated heading anchors for non-ASCII text.<picture> - Click every dot-nav link. Broken anchors are the most common bug introduced by rewrites.
- Check the README at different viewport widths (desktop, narrow / mobile). Tables with long cells may overflow; hero images should be
or responsive.width="100%" - Confirm badges show live status (not a broken image). Shield.io URLs are case-sensitive for package names.
- Run
before committing to catch trailing whitespace.git diff --cached --check
Common Pitfalls
- Over-badging. More than 5-6 badges reads as clutter, not signal. Prioritize: package version, license, CI status, maybe stars or download count.
- Emoji overload. Every section header with an emoji becomes noise. Reserve emoji for the one-liner feature bullets.
- Hero image that is just the logo. A modern hero communicates what the project does (feature grid, animated demo, flowchart), not just the project name.
- Callout abuse. If every third paragraph is
, none of them stand out. Use callouts only for "this is the one thing you must not miss" moments.> [!NOTE] - Collapsibles hiding the install command. The install path must always be visible. Collapsibles are for reference material, not the critical path.
- Dot-nav pointing to missing anchors. GitHub auto-generates anchors from heading text — lowercase, hyphens for spaces, strips most punctuation. Always verify post-rewrite.
- PyCharm preview false confidence. PyCharm's built-in markdown renderer does not render
, Mermaid, or> [!NOTE]
media queries. Only GitHub's renderer is authoritative.<picture>
Integration with Other Skills
— use it to design and render the hero image when the README needs a custom feature-grid or architecture diagram. That skill handles the HTML-to-PNG capture workflow.ci-mockup-figure
— run a Codex review on the staged README rewrite before pushing. The review lens should be "general + plan" with focus on first-read flow, anchor validity, and content accuracy.implement-review
Output
A rewritten
README.md (and optional hero assets under docs/) that:
- Reads cleanly in under 10 seconds for the tagline + install path
- Has badges, dot-nav, hero image, at least one callout, and at least one collapsible
- Keeps all prior content (moved or collapsed, not deleted) unless the content was stale or duplicated
- Renders correctly on GitHub (the only renderer that matters)
See
for full pattern snippets and references/patterns.md
for the audit grid.references/checklist.md