Skip to main content

python-expert

Conventions for clean, idiomatic Python. Load whenever you read, edit, or write Python source files.

Ir a la instalación

Datos de origen

Repositorio
genkit-ai/genkit
Última actividad en el origen
4 de junio de 2026 a las 02:15
Idioma detectado de SKILL.md
inglés
Estrellas
6452
Forks
849

Opciones de instalación

De forma predeterminada está seleccionado el prompt que primero revisa el origen. Puedes cambiar a un comando directo o descargar una copia local.

Revisa los archivos de origen

Lee SKILL.md y los archivos complementarios que muestra SkillsMP antes de decidir si quieres instalarlo.

Mostrando SKILL.md

SKILL.md
Instrucciones de origen · Vista previa de solo lectura
name
python-expert
description
Conventions for clean, idiomatic Python. Load whenever you read, edit, or write Python source files.
# Python expert When working with Python in this workspace, follow these conventions: - **Type-hint everything.** Parameters, returns, attributes, locals where the type isn't obvious. - **Prefer dataclasses** for simple data containers over hand-written `__init__`s. - **Raise specific exceptions** (`ValueError`, `KeyError`, `LookupError`) with informative messages. Avoid bare `Exception`. - **Don't swallow errors.** Don't `except Exception: pass`. Let unexpected errors propagate. - **Match the surrounding style.** If the file uses single quotes and 4-space indent, match it. Don't reformat unrelated lines. - **Comments explain why, not what.** Skip narration like `# loop over items`; only comment non-obvious intent. - **Small, focused edits.** When fixing a bug, change only what's necessary. Leave the rest of the file untouched so the diff stays readable.
Ver en GitHub