Remix write-readme
Write or rewrite package README files in the style used by the Remix repository. Use when drafting a new package README, revising an existing README, or reviewing README structure, examples, installation instructions, and section ordering for Remix packages.
install
source · Clone the upstream repo
git clone https://github.com/remix-run/remix
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/remix-run/remix "$T" && mkdir -p ~/.claude/skills && cp -r "$T/.agents/skills/write-readme" ~/.claude/skills/remix-run-remix-write-readme && rm -rf "$T"
manifest:
.agents/skills/write-readme/SKILL.mdsource content
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
- Read the package API and at least one or two sibling package READMEs before drafting.
- Document the package as it exists today, not the package you wish existed.
- Start with a realistic production usage example as soon as the installation section is done.
- Cover each major feature with a concrete example.
- 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:
(i.e.# short package-name
instead offetch-router
)@remix-run/fetch-router- Intro: one or two sentences explaining what the package does and why it exists
: a flat bullet list of the main highlights## Features## Installation
: a production-like example that shows the package in context## Usage- One section per major feature, each with focused examples
## Related Packages## Related Work## 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
, notremix/...
.@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.
should point to relevant Remix packages in the monorepo.Related Packages
should point to external libraries, specs, standards, or prior art that help readers place the package.Related Work
should use the standard repo wording and link.License
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
, andRelated Work
?License - Does the prose read naturally without awkward manual line breaks?