con un clic
docs-revise
Revise existing documentation to match current codebase state
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Revise existing documentation to match current codebase state
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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
Basado en la clasificación ocupacional SOC
| 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: