원클릭으로
typescript-best-practices
Idiomatic TypeScript patterns for clean, maintainable code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Idiomatic TypeScript patterns for clean, maintainable code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Foundational "High-Density" standard for token-optimized agent instructions and CLI-based automated activation.
Universal principles for clean, maintainable, and robust code across all environments.
Standards for performing high-quality, readable code reviews.
Essential rules for code comments, READMEs, and technical documentation.
CRITICAL - Before ANY file write, audit loaded skills for violations. Auto-report via feedback command.
Universal standards for version control, branching, and team collaboration.
| name | TypeScript Best Practices |
| description | Idiomatic TypeScript patterns for clean, maintainable code. |
| metadata | {"labels":["typescript","best-practices","idioms","conventions"],"triggers":{"files":["**/*.ts","**/*.tsx"],"keywords":["class","function","module","import","export","async","promise"]}} |
PascalCase, vars/funcs=camelCase, consts=UPPER_SNAKE. Prefix I only if needed.async/await, not raw Promises. Promise.all() for parallel.readonly.never for exhaustiveness, asserts for runtime checks.?:, not | undefined.import type for tree-shaking.noUnusedLocals.require: Use ES6 import.type or non-empty interface.any, use unknown only when necessary.See references/examples.md for code samples including:
language | tooling | security