smithery/15195999826

naming-typescript

>- Applies TypeScript naming conventions for variables, functions, classes, types, and files. Use when writing new code or reviewing naming patterns.

Installation

$ npx skills add smithery/15195999826 --skill naming-typescript

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from smithery/15195999826.

npx skills add smithery/15195999826

Browse all from smithery/15195999826

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,541 B
  • docs SUMMARY.md 247 B

History

  1. First recorded snapshot · 0 installs

SKILL.md

TypeScript 命名规范

速查表

类型 规则 示例
变量/函数 camelCase userName, fetchUser
类/类型 PascalCase UserService, ApiResponse
常量 UPPER_SNAKE MAXRETRY, APIURL
布尔 前缀 isActive, hasPermission
数组 复数 users, items
文件 kebab-case user-service.ts

布尔变量前缀

前缀 语义 示例
is 状态 isActive, isLoading
has 拥有 hasPermission, hasError
can 能力 canEdit, canSubmit
should 建议 shouldRefresh, shouldRetry
will 将要 willUpdate, willExpire
did 已发生 didMount, didChange

常量判断

// UPPER_SNAKE: 编译时确定、不可变
const MAX_RETRY = 3
const API_URL = 'https://api.example.com'

// camelCase: 运行时计算
const currentUser = fetchUser()

常用缩写

缩写 全称
ctx Context
cfg Configuration
req/res Request/Response
err Error
fn Function
ref Reference
prev/next Previous/Next
idx Index

避免:单字母变量(除 i/j/kT/K/V