بنقرة واحدة
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