code-review-python

Installation
SKILL.md

Python Type Safety Review

Python 코드의 타입 힌트와 타입 안전성을 검증하는 체크리스트.

Checks

Critical

  • Any overuse: typing.Any 남용으로 타입 안전성 무력화
  • Type ignore abuse: # type: ignore 정당한 사유 없이 사용
  • Untyped public APIs: public 함수/메서드에 타입 어노테이션 누락

High

  • Missing function signatures: 파라미터/반환 타입 누락
  • Missing return types: -> ReturnType 어노테이션 없음
  • Generic collections: list, dict 대신 list[T], dict[K, V] 사용
  • Optional handling: nullable 값에 Optional[T] 또는 T | None 미사용
Installs
2
Repository
ssiumha/dots
GitHub Stars
9
First Seen
Feb 21, 2026
code-review-python — ssiumha/dots