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.