원클릭으로
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