Claudest make-readme
git clone https://github.com/gupsammy/Claudest
T=$(mktemp -d) && git clone --depth=1 https://github.com/gupsammy/Claudest "$T" && mkdir -p ~/.claude/skills && cp -r "$T/plugins/claude-coding/skills/make-readme" ~/.claude/skills/gupsammy-claudest-make-readme && rm -rf "$T"
plugins/claude-coding/skills/make-readme/SKILL.mdREADME 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
— Read the first match to extract project name and version as pre-filled defaultsgo.mod - Check if
already exists — warn the user before overwritingREADME.md - Note the primary language from the detected manifest file
- For Plugin Collection detection: Glob for
,*/.claude-plugin/plugin.json
in subdirectories. If 3+ sub-manifests are found, pre-select Plugin Collection in Step 2 and note the count.*/package.json - 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.
| # | header | options |
|---|---|---|
| 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:
| # | header | multiSelect | options |
|---|---|---|---|
| 1 | "Sections" | true | Features list · Demo/Screenshots · Configuration docs · API Reference |
| 2 | "Extras" | true | Contributing guide · Roadmap · FAQ · Acknowledgments |
| 3 | "Badges" | true | License · CI/Build · Coverage · Version/Release · Downloads · Stars+Forks · Per-section version |
| 4 | "Style" | false | Simple · Centered · Styled |
Style definitions (include as option descriptions):
- Simple — plain
with# Title
on next line> tagline - Centered —
block, title + tagline + badge row centered<div align="center"> - 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:
- Header block — apply Style from Round 2 (see styles below)
- 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
) to auto-discover components and pre-fill the table. Place immediately after the header block.*/package.json - 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
on its own line before each target heading and link via<a id="slug"></a>
in the TOC. Example:#slug
TOC entry:<a id="installation"></a> ## 🚀 Installation - [Installation](#installation) - Description — 2–3 sentences: problem solved, target user, key differentiator
- Features (if selected) — bulleted list of capabilities, present tense, parallel form
- Demo/Screenshots (if selected) —
placeholder; instruct user to replace with an actual GIF or screenshot path - Installation — prerequisites block, then numbered install steps
- Usage — single example for Standard; multiple headed examples for Comprehensive
- Configuration (if selected) — markdown table: Name · Type · Default · Description
- API Reference (if selected) — each function/endpoint: signature, one-line description, minimal example
- Contributing (if selected) — fork → clone → branch → commit → PR, 5 steps
- Roadmap (if selected) —
checklist of planned features- [ ] - FAQ (if selected) — H3 questions with short paragraph answers (2–3 entries)
- Acknowledgments (if selected) — linked credits
- 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):

Place inline with the component/section heading, separated by
:
### 🧠 plugin-name 
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
, workflow filename, screenshot/GIF paths, and any description body textPKG