TypeScript best practices for clean, maintainable, and optimized code. MUST USE for writing or working with TypeScript code (.ts, .tsx, .mts files), including editing, reviewing or refactoring.
Scanned 9/25/2026
Install to Claude Code
npx -y skills add NazmusSayad/skills --skill typescript --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Typescript?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/nazmussayad-typescript)More formats (shields.io, HTML) on the badges page.
---
name: typescript
description: TypeScript best practices for clean, maintainable, and optimized code. MUST USE for writing or working with TypeScript code (.ts, .tsx, .mts files), including editing, reviewing or refactoring.
---
## Types
Avoid explicit type annotations when TypeScript can infer.
Do not use `any`, casts, or explicit generic type arguments when inference is sufficient.
## Variables
Use consistent, descriptive naming; avoid obscure abbreviations.
Do not use object or array destructuring in declarations, assignments, parameters, or loops; use direct property or indexed access instead, including for component props and tuple returns.
## Asynchronous
Prefer `async`/`await` over callbacks or `.then()` chains
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!