بنقرة واحدة
write-docs
Write documentation following this project's Diataxis framework and docblock conventions
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Write documentation following this project's Diataxis framework and docblock conventions
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Create a changeset entry describing changes to workspace packages
Scaffold a new UI component with the correct folder structure, styles, tests, and docblocks
Scaffold a new class with the correct file structure, naming, tests, and docblocks
Scaffold a new runtime type guard with the correct naming and docblocks
Scaffold a new utility function with the correct naming, tests, and docblocks
Write tests following this project's testing conventions, file patterns, and placement rules
| name | write-docs |
| description | Write documentation following this project's Diataxis framework and docblock conventions |
| user-invocable | false |
Documentation in this project follows the Diataxis framework and uses Markdown files.
docs/ # Root-level project documentation
├── README.md
├── CHANGELOG.md
├── learn/ # Explanation guides (understanding-oriented)
├── recipes/ # How-to guides (task-oriented)
├── tutorials/ # Tutorial guides (learning-oriented)
└── references/ # Reference docs (information-oriented, auto-generated from docblocks)
packages/<module>/src/docs/ # Module-specific documentation
├── learn/
├── recipes/
├── tutorials/
└── references/
| Category | Purpose | Orientation |
|---|---|---|
| Learn | Explain concepts | Understanding |
| Recipes | Step-by-step how-to | Task completion |
| Tutorials | Guided learning | Learning by doing |
| References | API/type documentation | Information lookup |
All public types, interfaces, classes, functions, and methods must have well-written JSDoc/TSDoc comments. Reference documentation is generated from these docblocks — so the quality of docblocks directly determines the quality of reference docs.
learn/, recipes/, tutorials/, or references/)src/docs/ within the module