python
Python skill router. Use when planning, implementing, or reviewing Python changes and you need to select focused skills for workflow, design, typing/contracts, reliability, testing, data/state, concurrency, integrations, runtime operations, or notebook async behavior.
下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o python.zip https://jpskill.com/download/10643.zip && unzip -o python.zip && rm python.zip
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/10643.zip -OutFile "$d\python.zip"; Expand-Archive "$d\python.zip" -DestinationPath $d -Force; ri "$d\python.zip"
完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。
💾 手動でダウンロードしたい(コマンドが難しい人向け)
- 1. 下の青いボタンを押して
python.zipをダウンロード - 2. ZIPファイルをダブルクリックで解凍 →
pythonフォルダができる - 3. そのフォルダを
C:\Users\あなたの名前\.claude\skills\(Win)または~/.claude/skills/(Mac)へ移動 - 4. Claude Code を再起動
⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。
🎯 このSkillでできること
下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。
📦 インストール方法 (3ステップ)
- 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
- 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
- 3. 展開してできたフォルダを、ホームフォルダの
.claude/skills/に置く- · macOS / Linux:
~/.claude/skills/ - · Windows:
%USERPROFILE%\.claude\skills\
- · macOS / Linux:
Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。
詳しい使い方ガイドを見る →- 最終更新
- 2026-05-18
- 取得日時
- 2026-05-18
- 同梱ファイル
- 1
📖 Claude が読む原文 SKILL.md(中身を展開)
この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。
Python Skill Router
Scope Note
- Treat these recommendations as preferred defaults for common cases, not universal rules.
- If a default conflicts with project constraints or worsens the outcome, suggest a better-fit alternative and explain why it is better for this case.
- When deviating, call out tradeoffs and compensating controls (tests, observability, migration, rollback).
Invocation Notice
- Inform the user when this skill is being invoked by name:
python.
Overview
Use this skill to route Python work to focused skills instead of loading one large guide. Select the smallest set of skills that matches the task.
Route by Task
Choose one or more based on scope:
- Delivery workflow, branch/PR checks:
python-workflow-delivery - Design, readability, module boundaries, refactor shape:
python-design-modularity - Typing, public interfaces, contract evolution, pydantic boundaries:
python-types-contracts - Error strategy, retries/timeouts, retryability policy:
python-errors-reliability - Testing strategy, pytest practices, async/reliability testing:
python-testing - Data lifecycle, consistency boundaries, configuration:
python-data-state - Concurrency models, cancellation/deadlines, leak diagnostics:
python-concurrency-performance - External clients, outbound reliability, resilience contract tests:
python-integrations-resilience - Services/jobs/CLI runtime behavior and observability:
python-runtime-operations - Notebook async loop ownership and
#%%/.ipynbpatterns:python-notebooks-async
Shared Defaults
- Use project-defined Python version first.
- Use
uvfor env/dependency workflow and run checks withuv run .... - Prefer
#%%.pynotebooks over.ipynbunless.ipynbis explicitly required. - If repo conventions conflict with a selected skill, follow the repo and state tradeoffs.
Clarification Rule
Ask concise questions before coding when behavior/contracts/reliability policy are ambiguous or when defaults appear counterproductive for the repository context.