원클릭으로
docs-revise
Revise existing documentation to match current codebase state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Revise existing documentation to match current codebase state
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Generate a comprehensive install.md documentation file for an image dataset. Use when asked to document a dataset, create a dataset readme, or prepare dataset documentation.
Close out an implemented spec by reconciling the project docs with the shipped code (updating them via opus subagents if stale), then removing the resolved spec directory and its INDEX entry so code + up-to-date docs remain the source of truth.
Implement tasks from an approved spec, one at a time, with independent implementer and reviewer subagents per task. The main session acts as orchestrator only.
Bootstrap a new spec under `specs/<feature-name>/` by walking the user through requirements, design, (optional) research, and tasks in EARS/SDD format
Implement items from a TODO file, one at a time, with independent implementer and reviewer subagents per item. The main session acts as orchestrator only.
Scan the project and create initial TODO files organized by area
| name | docs-revise |
| description | Revise existing documentation to match current codebase state |
| argument-hint | [component or path] |
Revise existing project documentation to reflect the current state of the codebase. The user may provide an optional scope argument: $ARGUMENTS
Determine scope:
docs/api.md), revise only that file.api, auth), revise docs/<name>.md.docs/.For each documentation file in scope, follow these steps:
Read the existing documentation file and understand what is currently documented.
Read the actual source files that the doc describes — compare documented behavior against the real code to find discrepancies.
Check recent changes — run git log --oneline -30 -- <relevant source paths> to see what has changed since the docs were last updated. Also run git log --oneline -5 -- <doc file> to see when the doc itself was last modified.
Identify discrepancies and gaps:
Update the documentation:
Update docs/README.md if the revision scope includes it or if component docs were added/removed:
Delete obsolete docs — if a component was entirely removed from the project, delete its documentation file and remove it from the index.
Create missing docs — if you discover a component that exists in the code but has no documentation file at all, create one following the same structure as docs-init.
Format with Prettier — after modifying each markdown file, run npx prettier --write --print-width 120 <file>.
Print a revision summary at the end: