一键导入
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.