typescript-standards
스타11
포크1
업데이트2026년 4월 5일 15:06
TypeScript best practices and coding standards
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
TypeScript best practices and coding standards
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Biome JavaScript/TypeScript linter and formatter
Hono lightweight web framework on Cloudflare Workers
Cloudflare Workers edge computing platform
Laravel PHP framework best practices
MySQL database best practices and query patterns
Next.js with React 19 App Router patterns
| name | typescript-standards |
| description | TypeScript best practices and coding standards |
| model | inherit |
| triggers | [{"file_pattern":"*.ts"},{"file_pattern":"*.tsx"}] |
Guides you to write clean, type-safe TypeScript code following best practices.
strict: true in tsconfig.jsonany - use unknown when type is uncertainnoImplicitAny and strictNullChecksinterface over type for object shapesreadonly for immutable propertiesconst assertions for literal typesany usage and implicit typesinterface User {
readonly id: string;
name: string;
email: string;
}
function getUserById(id: string): Promise<User | null> {
// Implementation
}
type User = any;
function getUser(id) {
return fetch(`/users/${id}`);
}
/react-typescript - React-specific TypeScript patterns/vue3-typescript - Vue 3 TypeScript integration