SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AxGord/claude-workflow --skill lang-pythonコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
Debugging meta-patterns — what to do when fixes don't stick
Game dev precision and physics gotchas
Claude Code configuration gotchas — permission rule syntax and evaluation order, settings hierarchy, plugin install scopes, hook behavior
| name | lang-python |
| description | Python language gotchas |
:= Scope Leak in Comprehensionsresults = [c for raw in data if (c := normalize(raw)) is not None]
# c IS accessible outside the comprehension (PEP 572 design) —
# but only if the walrus actually ran: with an empty `data`, reading c
# raises NameError. It runs even for filtered-out elements (the walrus
# sits in the condition), so c holds the last *evaluated* value, not the
# last *kept* one.
# Unlike regular loop variables, := leaks to enclosing scope
The common confident claim "c is NOT accessible outside" is wrong — the walrus operator in comprehensions intentionally binds in the containing scope.