plugins/claude-coding/skills/update-readme/SKILL.md
This skill should be used when the user asks to "update my README", "refresh the README", "README is outdated", "sync README with the codebase", "improve my README", "keep README up to date", "fix the README", "my README is stale", "update the readme file", "README needs updating", "update readme from git history", or "readme is out of date".
npx skillsauth add gupsammy/claudest update-readmeInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Refresh an existing README.md using current codebase state, git history, and
changelog intelligence. Always updates CHANGELOG.md first so changelog content
is available when revising README sections.
Glob for README.md, readme.md, and Readme.md in the working directory.
If not found, or if the file has fewer than 5 lines of real content:
Skill: claude-coding:make-readmeIf a substantial README exists: continue.
Invoke Skill: claude-coding:make-changelog.
make-changelog detects fill mode automatically — it adds only versions missing since the last documented entry. If the repo has no git history, make-changelog will report an error; note it and continue without changelog context.
Record the current README line count before edits.
Launch the three agents below in a single message (all in parallel):
Agent A — README Audit (subagent_type: Explore)
Prompt:
Read README.md. For each section (every H1/H2/H3 heading), record:
- Section name and approximate line count
- Stale content: version numbers, paths, commands, or features that look incorrect
- Placeholder text never replaced (e.g. "YOUR_USERNAME", "TODO", angle-bracket values)
- Thin sections with fewer than 3 lines of real content
Also identify which standard sections are MISSING:
installation, usage, configuration, API reference, contributing, license.
Return structured notes:
- existing_sections: list of heading names
- stale_items: list of {location, description} objects
- missing_sections: list
- thin_sections: list
Agent B — Codebase Scan (subagent_type: Explore)
Prompt:
Scan the working directory to extract:
- Project name and current version from the first found manifest:
package.json, pyproject.toml, Cargo.toml, go.mod, .claude-plugin/plugin.json
- Primary language and framework (file extensions, config files)
- Top-level directory structure, max 2 levels deep
- Key public-facing files: entry points, config templates, example files, CLI scripts
- Documentation files beyond README: CONTRIBUTING.md, docs/, ARCHITECTURE.md, etc.
Return: project_name, version, language, framework, structure_summary,
key_files (paths), extra_docs (paths).
Agent C — Git History Since Last README Touch (subagent_type: Explore)
Prompt:
Run: git log --follow -1 --format="%ai" -- README.md
This gives the date README.md was last committed.
If README.md has no git history, use the initial commit date:
git log --reverse --format="%ai" | head -1
Then run: git log --since="[date from above]" --format="%s" --no-merges
Categorize each commit subject into:
- new_features: new capabilities users can invoke
- breaking_changes: removed or incompatible changes
- deprecations: features flagged for future removal
- significant_fixes: user-visible bug fixes
- other: everything else
Skip: merge commits, CI/CD changes, formatting/whitespace, version-bump commits.
Return: readme_last_updated (ISO date), changes_since (object with 5 category lists).
Wait for all three agents to complete before Step 4.
Read CHANGELOG.md and extract the most recent version section (the first ## [x.y.z]
block). This provides structured change context for README sections like Features.
Apply targeted updates to README.md. Preserve existing style, header format,
badge patterns, and overall structure — do not restructure unless clearly broken.
Apply in this priority order — highest-confidence fixes first, judgment-heavy additions last, because objective errors (wrong version, broken path) have deterministic answers while structural additions require codebase context to get right:
new_features list and the latest CHANGELOG sectionIf no updates are needed after applying all criteria, skip edits and proceed to Step 6.
For each change, make the smallest edit that achieves accuracy. Use Edit for
targeted section updates — it preserves git blame and is safer for incremental
changes. Use Write only if more than 60% of the file changes, because at that
point the document is being regenerated, not updated.
Output a diff summary after writing:
tools
This skill should be used when the user asks to "design a CLI", "help me design command-line flags", "what flags should my tool have", "create a CLI spec", "refactor my CLI interface", "design a CLI my agent can call", or wants to design command-line UX (args/flags/subcommands/help/output/errors/config) before implementation or audit an existing CLI surface for consistency and composability.
testing
Recall, search, continue, or analyze past conversations. Triggers on recall phrases ("what did we discuss", "continue where we left off", "we decided"), retrospective phrases ("do a retro", "post-mortem", "what went well", "lessons learned", "find antipatterns"), and implicit signals (past-tense references, possessives without context, assumptive questions like "do you remember").
data-ai
Persist learnings to memory or maintain existing memories. Triggers on "extract learnings", "save this for next time", "remember this pattern", "consolidate memories", "dream", "clean up memories".
development
Use for any image creation or editing request — logo, sticker, product mockup, nano banana, t2i, i2i, multi-reference compositing via generate.py. Not for HTML/CSS mockups, diagrams, or coded UI.