code-checklist
Team code quality checklist - use for checking Python code quality, bugs, security issues, and best practices
Works with
Agent Skills format with YAML frontmatter. Claude Code reads it as-is.
--- name: "code-checklist" description: "Team code quality checklist - use for checking Python code quality, bugs, security issues, and best practices" license: "MIT" --- # 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 ## Testing Checklist - [ ] New code has corresponding pytest tests - [ ] Edge cases are covered - [ ] Tests use descriptive names ## Output Format Present findings as: ``` ## Code Checklist: [filename] ### Code Quality - [PASS/FAIL] Description of finding ### Input Validation - [PASS/FAIL] Description of finding ### Testing - [PASS/FAIL] Description of finding ### Summary [X] items need attention before merge ```
More General & Other skills
find-skills
vercel-labs/skills
Helps users discover and install agent skills when they ask questions like "how do I do X", "find a skill for X", "is there a skill that can...", or express interest in extending capabilities. This skill should be used when the user is looking for functionality that might exist as an installable skill.
grill-me
mattpocock/skills
A relentless interview to sharpen a plan or design.
grill-with-docs
mattpocock/skills
A relentless interview to sharpen a plan or design, which also creates docs (ADR's and glossary) as we go.

