com um clique
code-quality-docs
// Apply comment and documentation standards for Python code. Use when writing docstrings, adding comments, or marking technical debt (TODOs). Ensures explain-why-not-what and traceable debt.
// Apply comment and documentation standards for Python code. Use when writing docstrings, adding comments, or marking technical debt (TODOs). Ensures explain-why-not-what and traceable debt.
[HINT] Baixe o diretório completo da skill incluindo SKILL.md e todos os arquivos relacionados
| name | code-quality-docs |
| description | Apply comment and documentation standards for Python code. Use when writing docstrings, adding comments, or marking technical debt (TODOs). Ensures explain-why-not-what and traceable debt. |
Comments explain why, not what. Code should be self-documenting.
.cursor/rules/).For CLI modules, data pipelines, and agent-facing packages, a one-line file header is usually not enough. Prefer a short block at the top of *.py that covers:
Function and method docstrings can then stay focused on contracts (Args / Returns / Raises). Dutch (or other) UI strings are fine in user-facing text; keep identifiers and public API names in English.
# TODO(TASK-NNN): … or # TODO(#123): … when your repo issues map that wayNever use a bare # TODO without either a task ID or a complete, self-contained description.