Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
gupsammy avatar

Make Readme

  • 34 installs
  • 269 repo stars
  • Updated June 11, 2026
  • gupsammy/claudest

make-readme is an agent skill that applies shields.io badge URL patterns for polished GitHub README headers.

About

make-readme is a documentation agent skill that standardizes how solo builders present GitHub repositories: MIT-style license shields, GitHub Actions build status, Codecov coverage, npm or PyPI version and download counters, and a separate tech-stack row using for-the-badge logos. It exists so agents stop inventing inconsistent badge URLs or nesting stack badges inside centered headers where they render poorly. You invoke it when starting a new OSS lib, CLI, or SaaS repo and want the README to look credible before you ship binaries or publish packages. The skill is intentionally narrow—URL patterns and layout rules—not full narrative README storytelling; pair it with your own features, install, and contributing sections. Because README quality affects launch discovery and grow-stage credibility, the skill spans early build documentation through pre-release polish, but Prism shelves it under Build → docs as the canonical first touchpoint when the file is created.

  • flat-square shields for license, CI, coverage, npm/PyPI version, and download badges
  • for-the-badge tech stack row placed outside centered header divs
  • Substitution rules mapping USER/REPO and PKG placeholders to real slugs
  • Consistent style guidance: do not mix badge styles in the header block
  • Copy-paste Markdown templates for open-source repo polish

Make Readme by the numbers

  • 34 all-time installs (skills.sh)
  • Ranked #911 of 1,879 Documentation skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/gupsammy/claudest --skill make-readme

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs34
repo stars269
Security audit3 / 3 scanners passed
Last updatedJune 11, 2026
Repositorygupsammy/claudest

What it does

Generate consistent GitHub README headers with shields.io status badges and a for-the-badge tech stack row that matches community norms.

Who is it for?

Best when you're open-sourcing a library or CLI and want a professional README header in minutes.

Skip if: Skip if you need full README narrative, architecture diagrams, or non-GitHub package registries without shields.io support.

When should I use this skill?

When creating or updating a GitHub README and you need standardized shields.io badge URLs and tech-stack formatting.

What you get

You get Markdown-ready badge blocks with correct flat-square vs for-the-badge usage and substitution rules for USER/REPO and package names.

  • README header badge Markdown block
  • Tech stack for-the-badge row
  • Documented substitution for USER/REPO/PKG

Files

SKILL.mdMarkdownGitHub ↗

README Maker

Generate a professional README.md for any project — from 50-line minimal to 600-line comprehensive — with shields.io badges, styled headers, and structured sections. Interview the user to determine preferences, then produce the full README in one pass.

Step 1 — Detect Project Context

Before asking, scan the working directory for context clues:

  • Glob for package.json, pyproject.toml, Cargo.toml, go.mod — Read the

first match to extract project name and version as pre-filled defaults

  • Check if README.md already exists — warn the user before overwriting
  • Note the primary language from the detected manifest file
  • For Plugin Collection detection: Glob for */.claude-plugin/plugin.json,

*/package.json in subdirectories. If 3+ sub-manifests are found, pre-select Plugin Collection in Step 2 and note the count.

  • If no manifest is found, skip pre-filling — rely entirely on user input in Step 2

Step 2 — Round 1 Interview (Always)

Ask 4 questions via AskUserQuestion. Pre-select options that match detected context where possible.

#headeroptions
1"Project type"Library/Package · CLI Tool · Web App/API · Desktop App · Plugin Collection
2"Language"Python · JavaScript/Node · Go · Rust
3"Depth"Minimal · Standard · Comprehensive
4"License"MIT · Apache-2.0 · GPL-3.0 · No license

Project type definitions:

  • Plugin Collection / Monorepo — a repo containing multiple installable components

(plugins, packages, extensions) each with their own versions and descriptions. Automatically enables the component directory table (Step 4) and per-section version badges.

Depth definitions (include as option descriptions):

  • Minimal — small utilities, internal tools, or anything with one clear use case
  • Standard — open-source projects expecting contributors and external users
  • Comprehensive — mature projects with public APIs, active maintainers, or large communities

If depth = Minimal, skip Step 3 and proceed directly to Step 4.

Step 3 — Round 2 Interview (Standard / Comprehensive Only)

Ask 4 questions via AskUserQuestion:

#headermultiSelectoptions
1"Sections"trueFeatures list · Demo/Screenshots · Configuration docs · API Reference
2"Extras"trueContributing guide · Roadmap · FAQ · Acknowledgments
3"Badges"trueLicense · CI/Build · Coverage · Version/Release · Downloads · Stars+Forks · Per-section version
4"Style"falseSimple · Centered · Styled

Style definitions (include as option descriptions):

  • Simple — plain # Title with > tagline on next line
  • Centered<div align="center"> block, title + tagline + badge row centered
  • Styled — centered + emoji prefix on every H2 and H3 heading. H2 defaults:

✨ Features, 🚀 Quick Start, ⚙️ Configuration, 📖 API, 🤝 Contributing, 🗺 Roadmap, ❓ FAQ, 📄 License. H3 for Plugin Collection components: choose from 🧠 🔍 💻 ✍️ 🤔 🎬 🔧 📦 🛠️ — match to component domain, not alphabetically.

Per-section version badge is pre-selected when project type = Plugin Collection.

Step 4 — Generate README

Minimal Structure

Five sections in order: title + tagline, description paragraph (what/who/why), Installation with syntax-highlighted copy-paste command, Usage with a minimal working example plus expected output as a comment, License with SPDX name and link to LICENSE file.

Standard / Comprehensive Structure

Assemble sections in this order, including only those selected in Round 2:

1. Header block — apply Style from Round 2 (see styles below) 2. Component directory table — Plugin Collection type only; a compact markdown table listing each component with an anchor link, version, and key skills or features. Glob for sub-directory manifests (*/.claude-plugin/plugin.json, */package.json) to auto-discover components and pre-fill the table. Place immediately after the header block. 3. Table of Contents — Comprehensive only; auto-generate anchored links for every H2 section present. Because headings that contain images (version badges) or emoji have unreliable GitHub anchor generation, place <a id="slug"></a> on its own line before each target heading and link via #slug in the TOC. Example:

   <a id="installation"></a>
   ## 🚀 Installation  ![v1.0](...)

TOC entry: - [Installation](#installation) 4. Description — 2–3 sentences: problem solved, target user, key differentiator 5. Features (if selected) — bulleted list of capabilities, present tense, parallel form 6. Demo/Screenshots (if selected) — ![Demo](demo.gif) placeholder; instruct user to replace with an actual GIF or screenshot path 7. Installation — prerequisites block, then numbered install steps 8. Usage — single example for Standard; multiple headed examples for Comprehensive 9. Configuration (if selected) — markdown table: Name · Type · Default · Description 10. API Reference (if selected) — each function/endpoint: signature, one-line description, minimal example 11. Contributing (if selected) — fork → clone → branch → commit → PR, 5 steps 12. Roadmap (if selected) — - [ ] checklist of planned features 13. FAQ (if selected) — H3 questions with short paragraph answers (2–3 entries) 14. Acknowledgments (if selected) — linked credits 15. License — SPDX name, link to LICENSE file

For Comprehensive: append [⬆ back to top](#readme) after each H2 section.

Header Block Styles

Simple: # Project Name followed by > One-line tagline.

Centered: Wrap title, tagline, and badge row in <div align="center">, using <h1> for title, <p> for tagline, and markdown badge syntax for badges.

Styled: Same as Centered; prepend the relevant emoji to every H2 and H3 per the emoji lists in Step 3. Add <a id="slug"></a> before each H2 and H3 that will be linked from the TOC or component directory table.

Badge URLs

Load references/badges.md when assembling the badge row — it contains the complete URL patterns for all supported services with substitution instructions. If Language = Other, omit the tech stack badge row unless the user provides their language name.

Per-section version badge (Plugin Collection and Library types):

![v{VERSION}](https://img.shields.io/badge/v{VERSION}-blue?style=flat-square)

Place inline with the component/section heading, separated by &nbsp;:

### 🧠 plugin-name &nbsp; ![v0.7.5](https://img.shields.io/badge/v0.7.5-blue?style=flat-square)

Always use <a id="slug"></a> before these headings since the badge makes the auto-generated GitHub anchor unpredictable.

Step 5 — Write and Summarize

Write to README.md in the current working directory. If README.md already exists, confirm overwrite before writing.

After writing, output a concise summary:

  • File path written
  • Sections included
  • Placeholder values the user must replace: USER/REPO, PKG, workflow filename,

screenshot/GIF paths, and any description body text

Related skills

How it compares

Use instead of asking the agent to freestyle badge Markdown—this skill enforces one visual system, not a generic doc generator.

FAQ

Who is make-readme for?

Developers and maintainers publishing on GitHub who want consistent README status and tech-stack badges without looking up shields.io syntax each time.

When should I use make-readme?

Use it while creating or refreshing repo docs during Build, again before Ship or Launch when you add CI, coverage, or npm/PyPI publishing badges.

Is make-readme safe to install?

It is a documentation template skill with no runtime permissions implied; review the Security Audits panel on this Prism page for the upstream package either way.

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.