ワンクリックで
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