Skip to main content

python-expert

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

الانتقال إلى التثبيت

معلومات المصدر

المستودع
genkit-ai/genkit
آخر نشاط في المصدر
٤ يونيو ٢٠٢٦ في ٠٢:١٥
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٦٬٤٥٢
التفرعات
٨٤٩

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
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.
عرض على GitHub