con un clic
docs-update
Create or update architecture documentation from existing code
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ú
Create or update architecture documentation from existing code
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.
Basado en la clasificación ocupacional SOC
Write the release notes
Review the changelog and last commits for consistency
Simplify the [Unreleased] section of CHANGELOG.md (or a specific version) into a user-focused changelog summary using the instructions from the CI workflow.
Clean C# code style based on project rules
Write a commit message for the currently staged or uncommitted changes
Debug some feature
| name | docs-update |
| description | Create or update architecture documentation from existing code |
| allowed-tools | ["read","write","edit","grep","glob"] |
| triggers | ["user","model"] |
Inventory the codebase
src/ projects and namespaces.src/ are out of scope unless the user explicitly asks for workflow documentation.Map core abstractions
Trace dependencies & data flows
Draft Architecture Overview (docs/Architecture.md)
# Architecture Overview
## System Components
- [Component descriptions]
## Key Design Patterns
- [Patterns identified]
## Component Relationships
- [How components interact]
## Data Flow
- [Key data flows]
Add diagrams (Mermaid)
```mermaid
graph TD
Core[Core] --> Infra[Infrastructure]
Infra --> Providers[Providers.*]
Infra --> Components[Components]
Components --> GH[Grasshopper UI]
Component docs
docs/Components/<category>/<name>.md with:
Review & optimize