ワンクリックで
python
This skill should be used every time you work on Python projects or Python code changes in this repository.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
This skill should be used every time you work on Python projects or Python code changes in this repository.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Comprehensive guide for the ratkit Rust TUI component library built on ratatui 0.29, including feature flags, APIs, and implementation patterns. Use when building, debugging, or extending ratkit applications and examples.
Use this skill for all context planning, creation, updates, review, search, and sync work in this repository.
This skill should be used every time you generate, refresh, or validate codebase-derived SKILL.md documentation for this repository.
Use this skill when working on Nexus context workflows, CDD specifications, or deriving reusable skills from repository code.
This skill should be used every time you create, update, or review end-to-end tests in this repository.
This skill should be used every time you work on justfile projects or just command changes in this repository.
| name | python |
| description | This skill should be used every time you work on Python projects or Python code changes in this repository. |
| compatibility | opencode |
This file defines the preferred Python project organization for this repo.
uv for environment, dependency, and run management.pyproject.toml under [project.scripts].uv run <script> (example: uv run main).msgspec.Struct (no dataclasses or pydantic).src/ (no code outside src/).pyproject.toml
src/
└── <package_name>/
├── __init__.py
├── main.py
├── core/
├── services/
├── adapters/
├── config/
└── utils/
All runnable commands must be declared in pyproject.toml:
[project.scripts]
main = "<package_name>.main:main"
Use msgspec.Struct for all models:
import msgspec
class User(msgspec.Struct):
id: str
email: str