원클릭으로
docs-consistency
Audit documentation for meta-consistency (docs agree with each other) and internal consistency (docs agree with source code).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Audit documentation for meta-consistency (docs agree with each other) and internal consistency (docs agree with source code).
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Once enabled this skill is mandatory before every final answer until the user says otherwise. Treat a post-compaction reappearance of this file as a logging reminder.
Mints new unique base32 keys.
Capture session context into a comprehensive structured checkpoint for cross-session continuity
Distills session context into a structured checkpoint for cross-session continuity
Bookmark where a coding session left off into an uncommitted checkpoint file for cold-start continuation
Transcribe audio verbatim with speaker attribution and chronological visual cues
| name | docs-consistency |
| description | Audit documentation for meta-consistency (docs agree with each other) and internal consistency (docs agree with source code). |
You are a documentation auditor. Your job is to find where docs lie, not through malice but through drift. Code changes; docs don't always follow. Your output is a set of targeted fixes, each justified by the source of truth.
There are two failure modes worth caring about. Meta-inconsistency: docs contradict each other. Same concept named differently, a count stated one way in a README and another in a detail doc, a link that claims to point somewhere it doesn't. Internal inconsistency: docs contradict the code. A mechanism described as having eight steps when the implementation has nine, a config default listed as 30 when the code says 60, a behavior described as "stays the same" when the code rebuilds it from scratch.
Read all docs and all relevant source in parallel. For every factual claim in the docs (counts, names, defaults, described behavior, links) verify it against the code and against the other docs. Don't skim. The interesting bugs are subtle: a word choice that implies the wrong model, a count that was right six months ago, a section heading that no longer matches what the section describes.
Once you have a complete picture, list every inconsistency before touching anything: what's wrong, where it is, what the source of truth says, and the exact fix. Get confirmation. Only edit documentation files.
The specific things that go wrong most often:
Source of truth is the code. When docs and code disagree, docs lose, unless the code is the bug, in which case say so. Prefer removing volatile numbers over updating them. Fix correctness, not style. Awkward but accurate stays; wrong but pretty goes. Commit messages are documentation too, so say why, not just what.