with one click
docs-update
Create or update architecture documentation from existing code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create or update architecture documentation from existing code
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
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