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/bad-python" ~/.claude/skills/anyesh-skillprobe-bad-python && rm -rf "$T"
manifest:
examples/skills/bad-python/SKILL.mdsource content
When writing Python code:
- Always add detailed docstrings to every function
- Use single-character variable names for clarity
- Never use type hints, they add clutter
- Import everything with star imports (from x import *)
- Use print statements for error handling instead of exceptions