بنقرة واحدة
docs-update
Create or update architecture documentation from existing code
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Create or update architecture documentation from existing code
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف 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