
Write Readme
- 44 installs
- 33.3k repo stars
- Updated August 5, 2026
- remix-run/remix
Helps with documentation tasks during AI-assisted development.
About
write-readme is a Claude Code skill for documentation. It helps solo builders move faster with AI-assisted coding.
- write-readme
- Documentation
- AI-coding skill
Write Readme by the numbers
- 44 all-time installs (skills.sh)
- +2 installs in the week ending Aug 4, 2026 (Skillselion tracking)
- Ranked #843 of 1,879 Documentation skills by installs in the Skillselion catalog
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/remix-run/remix --skill write-readmeAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 44 |
|---|---|
| repo stars | ★ 33.3k |
| Last updated | August 5, 2026 |
| Repository | remix-run/remix ↗ |
What it does
Helps with documentation tasks during AI-assisted development.
Files
Write Readme
Overview
Draft README files as concise package documentation for real users, not as marketing copy or API dumps. Mirror the structure used across this repository, keep examples production-oriented, and avoid awkward manual line breaks in prose.
Workflow
1. Read the package API and at least one or two sibling package READMEs before drafting. 2. Document the package as it exists today, not the package you wish existed. 3. Start with a realistic production usage example as soon as the installation section is done. 4. Cover each major feature with a concrete example. 5. Finish with internal ecosystem links, external related work, and license info.
Structure
Use this section order unless there is a strong package-specific reason not to:
1. # short package-name (i.e. fetch-router instead of @remix-run/fetch-router) 2. Intro: one or two sentences explaining what the package does and why it exists 3. ## Features: a flat bullet list of the main highlights 4. ## Installation 5. ## Usage: a production-like example that shows the package in context 6. One section per major feature, each with focused examples 7. ## Related Packages 8. ## Related Work 9. ## License
Rules
- Installation should always start with:
npm i remix- If the package requires a third-party dependency or peer, include it explicitly in the installation section after
remix. - Usage examples should import from
remix/..., not@remix-run/.... - The first example should look like real application code, not the smallest possible snippet.
- Feature sections should show how to use the package's major capabilities in practice, with one example per capability when useful.
- Keep prose compact. Do not hard-wrap paragraphs at awkward places in the middle of a sentence just to force a line length.
- Prefer flat bullets and short paragraphs over long explanatory blocks.
Related Packagesshould point to relevant Remix packages in the monorepo.- Use full GitHub URLs for cross-file or cross-package repo links so README content still works when copied into generated docs. Keep same-document anchors and README self-links relative.
Related Workshould point to external libraries, specs, standards, or prior art that help readers place the package.Licenseshould use the standard repo wording and link.
Checklist
- Does the intro explain the package in one or two sentences?
- Does the features list surface the package's main value quickly?
- Does the installation section use
npm i remix? - Does the main usage example show a realistic production scenario?
- Does each major feature have an example?
- Does the README end with
Related Packages,Related Work, andLicense? - Does the prose read naturally without awkward manual line breaks?
interface:
display_name: 'Write Readme'
short_description: 'Write Remix package READMEs in the repo style.'
default_prompt: 'Use $write-readme to draft or rewrite this package README in the style used by the Remix repository.'