ワンクリックで
code
Python language standards: type hints, error handling, logging, and style conventions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Python language standards: type hints, error handling, logging, and style conventions.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Dual-model adversarial review: local and delegated reviewers audit independently, verdicts are synthesized.
Implement the SDD task list. Read tasks and design from memory, write code, run tests.
Archive all SDD artifacts for a change as a single completed record in memory.
Write the technical design for a planned change: components, interfaces, data flows, edge cases.
Explore the codebase to build context for a planned change. First phase of the SDD workflow.
Propose 2–3 solution approaches for a planned change, evaluating trade-offs and recommending one.
| name | code |
| description | Python language standards: type hints, error handling, logging, and style conventions. |
| compatibility | opencode |
| when_to_use | When writing or reviewing *.py source files. |
| user-invocable | false |
| hub-skill-ids | ["implementation","review","refactoring"] |
REJECT if:
except: without a specific exception typeprint() used in production code (use logging instead)def f(x=[]):)REQUIRE:
from __future__ import annotations in all modulesPREFER:
pathlib.Path over os.path for filesystem operations