원클릭으로
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 직업 분류 기준
| 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
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.