Skillprobe clean-code

Write clean Python functions with type hints and no docstrings

install
source · Clone the upstream repo
git clone https://github.com/Anyesh/skillprobe
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/Anyesh/skillprobe "$T" && mkdir -p ~/.claude/skills && cp -r "$T/examples/skills/clean-code" ~/.claude/skills/anyesh-skillprobe-clean-code && rm -rf "$T"
manifest: examples/skills/clean-code/SKILL.md
source content

When writing Python code:

  • Always include type hints on function parameters and return types
  • Never add docstrings to simple utility functions
  • Use descriptive variable names
  • Keep functions focused and short