ts-style
스타0
포크0
업데이트2025년 11월 6일 08:26
TypeScript style standards for AIRBot reviewers
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
TypeScript style standards for AIRBot reviewers
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Kotlin backend layering and packaging guidelines
Coroutine usage guardrails for Kotlin backend reviewers
SQL data access best practices for AIRBot reviewers
Security review guardrails for AIRBot
Testing expectations for AIRBot reviewers
| name | ts-style |
| description | TypeScript style standards for AIRBot reviewers |
| license | MIT |
type aliases or interfaces when exporting shared shapes; avoid anonymous object literals.undefined and null, avoid non-null assertions unless justified.async functions propagate errors or handle them locally; reject swallowed catch blocks.src/* modules; move orchestration or side effects to src/index.ts.const over let unless mutation is necessary; avoid var.any or unknown without runtime guards; suggest narrower generics or refinements.switch/if chains on discriminated unions; enforce never exhaustiveness checks where practical.Read to inspect files, Grep for patterns like any, and Glob for locating related modules or tests.