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 页面并帮你完成安装。
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