README Update Workflow
When To Use
Use this skill whenever the README requires a structural refresh.
Run Skill(sanctum:git-workspace-review) first to capture repo context and diffs.
When NOT To Use
- Updating inline docs: use doc-updates
- Consolidating ephemeral reports: use doc-consolidation
Required TodoWrite Items
update-readme:language-audit
update-readme:exemplar-research
update-readme:outline-aligned
update-readme:edits-applied
update-readme:slop-scanned - AI marker detection via scribe
update-readme:verification-reporting
Step 1 - Language Audit (update-readme:language-audit)
- Confirm
pwd, git status -sb, and the baseline branch for reference.
- Detect dominant languages using repository heuristics (manifest files, file counts).
- Note secondary languages that influence documentation (e.g., a TypeScript frontend and a Rust backend) so the README can surface both.
- Record the method and findings.
See modules/language-audit.md for detailed detection patterns and commands.
Step 2 - Exemplar Research (update-readme:exemplar-research)
- For each primary and secondary language, use web search to locate high-quality READMEs (star count, recency, maintainer activity).
- Capture 2-3 exemplar repositories per language and summarize why each is relevant (section order, visuals, quickstart clarity, governance messaging, math exposition, etc.).
- Store citations for every exemplar so the final summary references them explicitly.
See modules/exemplar-research.md for search query patterns and evaluation criteria.
Step 3 - Outline Alignment (update-readme:outline-aligned)
- Compare current README headings (
rg -n '^#' README.md) against patterns observed in exemplars.
- Draft a target outline covering: value proposition, installation, quickstart, deeper usage/configuration, architecture/feature highlights, performance or math guarantees, documentation links, contribution/governance, roadmap/status, and licensing/security notes.
- validate internal documents (docs/, specs/, wiki, commands/) are mapped to the relevant sections so the README anchors them with context-sensitive links.
Step 4 - Apply Edits (update-readme:edits-applied)
- Implement the new structure directly in
README.md
(or the specified file).
- Follow
Skill(leyline:markdown-formatting) conventions:
wrap prose at 80 chars (prefer sentence/clause boundaries),
blank lines around headings, ATX headings only, blank line
before lists, reference-style links for long URLs.
- Maintain concise, evidence-based prose; avoid marketing fluff.
- Add comparison tables, feature lists, or diagrams only if
they originate from current repository assets (no speculative
content).
- When referencing algorithms or performance claims, point to
benchmarks or tests within the repository or documented math
reviews.
Step 4.5 - AI Slop Detection (update-readme:slop-scanned)
Run Skill(scribe:slop-detector) on the updated README to detect AI-generated content markers.
Scribe Integration
The scribe plugin provides AI slop detection:
Skill(scribe:slop-detector) --target README.md
This detects:
- Tier 1 words: delve, tapestry, comprehensive, leveraging, etc.
- Phrase patterns: "In today's fast-paced world", "cannot be overstated"
- Structural markers: Excessive em dashes, bullet overuse, sentence uniformity
- Marketing language: "enterprise-ready", "cutting-edge", "seamless"
Remediation
If slop score exceeds 2.0 (moderate), apply Skill(scribe:doc-generator) principles:
- Ground every claim with specifics
- Remove formulaic openers/closers
- Use numbers, commands, filenames over adjectives
- Balance bullets with narrative prose
- Show authorial perspective (trade-offs, reasoning)
For significant cleanup needs, use:
Agent(scribe:doc-editor) --target README.md
Step 5 - Verification & Reporting (update-readme:verification-reporting)
- Re-read the updated README for clarity, accessibility (section lengths, bullet balance), and accurate links.
- Run
git diff README.md (or the edited file) and capture snippets for the final report.
- Summarize detected languages, exemplar sources (with citations), key structural decisions, and follow-up TODOs (e.g., add badges, upload diagrams).
Exit Criteria
- All
TodoWrite items are complete.
- The README reflects a modern, language-aware structure, referencing both internal docs and external inspiration with citations.
- Research notes and command references are captured so future reviewers can reproduce the process.
Troubleshooting
Common Issues
Documentation out of sync
Run make docs-update to regenerate from code
Build failures
Check that all required dependencies are installed
Links broken
Verify relative paths in documentation files
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: update-readme-23description: Refresh README structure and content using repo context from git-workspace-review Use when this capability is needed.4---5# README Update Workflow67## When To Use8Use this skill whenever the README requires a structural refresh.9Run `Skill(sanctum:git-workspace-review)` first to capture repo context and diffs.1011## When NOT To Use1213- Updating inline docs: use doc-updates14- Consolidating ephemeral reports: use doc-consolidation1516## Required TodoWrite Items171. `update-readme:language-audit`182. `update-readme:exemplar-research`193. `update-readme:outline-aligned`204. `update-readme:edits-applied`215. `update-readme:slop-scanned` - AI marker detection via scribe226. `update-readme:verification-reporting`2324## Step 1 - Language Audit (`update-readme:language-audit`)25- Confirm `pwd`, `git status -sb`, and the baseline branch for reference.26- Detect dominant languages using repository heuristics (manifest files, file counts).27- Note secondary languages that influence documentation (e.g., a TypeScript frontend and a Rust backend) so the README can surface both.28- Record the method and findings.2930See `modules/language-audit.md` for detailed detection patterns and commands.3132## Step 2 - Exemplar Research (`update-readme:exemplar-research`)33- For each primary and secondary language, use web search to locate high-quality READMEs (star count, recency, maintainer activity).34- Capture 2-3 exemplar repositories per language and summarize why each is relevant (section order, visuals, quickstart clarity, governance messaging, math exposition, etc.).35- Store citations for every exemplar so the final summary references them explicitly.3637See `modules/exemplar-research.md` for search query patterns and evaluation criteria.3839## Step 3 - Outline Alignment (`update-readme:outline-aligned`)40- Compare current README headings (`rg -n '^#' README.md`) against patterns observed in exemplars.41- Draft a target outline covering: value proposition, installation, quickstart, deeper usage/configuration, architecture/feature highlights, performance or math guarantees, documentation links, contribution/governance, roadmap/status, and licensing/security notes.42- validate internal documents (docs/, specs/, wiki, commands/) are mapped to the relevant sections so the README anchors them with context-sensitive links.4344## Step 4 - Apply Edits (`update-readme:edits-applied`)45- Implement the new structure directly in `README.md`46 (or the specified file).47- Follow `Skill(leyline:markdown-formatting)` conventions:48 wrap prose at 80 chars (prefer sentence/clause boundaries),49 blank lines around headings, ATX headings only, blank line50 before lists, reference-style links for long URLs.51- Maintain concise, evidence-based prose; avoid marketing fluff.52- Add comparison tables, feature lists, or diagrams only if53 they originate from current repository assets (no speculative54 content).55- When referencing algorithms or performance claims, point to56 benchmarks or tests within the repository or documented math57 reviews.5859## Step 4.5 - AI Slop Detection (`update-readme:slop-scanned`)6061Run `Skill(scribe:slop-detector)` on the updated README to detect AI-generated content markers.6263### Scribe Integration6465The scribe plugin provides AI slop detection:6667```68Skill(scribe:slop-detector) --target README.md69```7071This detects:72- **Tier 1 words**: delve, tapestry, comprehensive, leveraging, etc.73- **Phrase patterns**: "In today's fast-paced world", "cannot be overstated"74- **Structural markers**: Excessive em dashes, bullet overuse, sentence uniformity75- **Marketing language**: "enterprise-ready", "cutting-edge", "seamless"7677### Remediation7879If slop score exceeds 2.0 (moderate), apply `Skill(scribe:doc-generator)` principles:80811. Ground every claim with specifics822. Remove formulaic openers/closers833. Use numbers, commands, filenames over adjectives844. Balance bullets with narrative prose855. Show authorial perspective (trade-offs, reasoning)8687For significant cleanup needs, use:8889```90Agent(scribe:doc-editor) --target README.md91```9293## Step 5 - Verification & Reporting (`update-readme:verification-reporting`)94- Re-read the updated README for clarity, accessibility (section lengths, bullet balance), and accurate links.95- Run `git diff README.md` (or the edited file) and capture snippets for the final report.96- Summarize detected languages, exemplar sources (with citations), key structural decisions, and follow-up TODOs (e.g., add badges, upload diagrams).9798## Exit Criteria99- All `TodoWrite` items are complete.100- The README reflects a modern, language-aware structure, referencing both internal docs and external inspiration with citations.101- Research notes and command references are captured so future reviewers can reproduce the process.102## Troubleshooting103104### Common Issues105106**Documentation out of sync**107Run `make docs-update` to regenerate from code108109**Build failures**110Check that all required dependencies are installed111112**Links broken**113Verify relative paths in documentation files114115---116> Converted and distributed by [TomeVault](https://tomevault.io/claim/athola) — claim your Tome and manage your conversions.117<!-- tomevault:4.0:skill_md:2026-04-11 -->