Skip to main content

python-expert

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

インストールへ移動

ソース情報

リポジトリ
genkit-ai/genkit
ソースの最終更新活動
2026年6月4日 02:15
検出された SKILL.md の言語
英語
スター
6,448
フォーク
842

インストール方法

デフォルトでは、最初にソースを確認する 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で見る