code-checklist

Installation
SKILL.md

Code Checklist Skill

Apply this checklist when checking Python code.

Code Quality Checklist

  • All functions have type hints
  • No bare except clauses
  • No mutable default arguments
  • Context managers used for file I/O
  • Functions are under 50 lines
  • Variable and function names follow PEP 8 (snake_case)

Input Validation Checklist

  • User input is validated before processing
  • Edge cases handled (empty strings, None, out-of-range values)
  • Error messages are clear and helpful
Installs
13
GitHub Stars
2.7K
First Seen
Apr 30, 2026
code-checklist — github/copilot-cli-for-beginners