# Clean Code

> Write clean Python functions with type hints and no docstrings

- Skill: `anyesh/clean-code` (Agent Skill)
- Install (CLI): `npx skillmds@latest add anyesh/clean-code`
- Raw SKILL.md: https://api.skillmd.com/api/skills/anyesh/clean-code/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Anyesh (https://skillmd.com/u/anyesh)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/anyesh/clean-code

---


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

