mcpbeat

Code Checklist

github/code-checklist

Team code quality checklist - use for checking Python code quality, bugs, security issues, and best practices

276 tokens
context cost
the whole folder, loaded on every use
1
files
instructions only
0
copies elsewhere
how many repositories repackaged it
2768
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/github/copilot-cli-for-beginners --skill code-checklist

The instruction itself

5 sections, as written by the author

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

How to use it

Copy the folder

Take github/code-checklist from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.