--- name: clean-code description: Write clean Python functions with type hints and no docstrings --- 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