review-readmes
작성자: openshift
리포지토리의 모든 README.md 파일을 검토하여 오타, 오류, 오래된 정보를 찾습니다. 사용자가 README 검토, 문서 정확성 확인 등을 요청할 때 사용합니다.
npx skills add https://github.com/openshift/lightspeed-console --skill review-readmesReview READMEs
Audit every README.md in the repository for language quality and factual
accuracy against the current codebase.
Step 1 — Collect README files
Find all README files:
find . -name 'README.md' -not -path '*/node_modules/*'
Read each file in full.
Step 2 — Check language quality
For each README, look for:
- Spelling mistakes and typos
- Grammatical errors
- Awkward phrasing or unclear sentences
- Broken Markdown formatting
- Unnecessary verbosity — tighten wordy passages without losing meaning
Step 3 — Cross-reference with the codebase
Verify that claims in the READMEs still hold by checking the actual code. Do not guess — confirm every claim against the source.
Step 4 — Fix
Apply all fixes directly to the README files. For each file, briefly summarize what was changed and why.