원클릭으로
typescript
TypeScript conventions, strictness rules, and interface/type definitions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
TypeScript conventions, strictness rules, and interface/type definitions.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
Guidelines for writing and structuring Astro components, pages, layouts, routing, and data fetching in this project.
Instructions on leveraging DaisyUI predefined components and handling theming.
Instructions on how to run and fix formatting/linting using prettier and eslint.
Rules for structuring content, using frontmatter, and handling rich text formatting.
Best practices and conventions for styling the project using Tailwind CSS v4.
SOC 직업 분류 기준
| name | typescript |
| description | TypeScript conventions, strictness rules, and interface/type definitions. |
This project relies on TypeScript to ensure type safety across Astro and standard script files.
any. Use unknown or specify exact types.GetStaticPaths, AstroGlobal).interface over type for defining object shapes (like component Props or API responses) as they provide better error messages and are more easily extensible.const btn = document.querySelector<HTMLButtonElement>('#my-btn'); if (btn) { ... }).When handling complex type definitions or TypeScript utility types, utilize the official TypeScript documentation to fetch accurate guidelines:
https://www.typescriptlang.org/docs/If encountering an issue with specific compiler checks or required patterns, read the contents of this URL for the necessary context.