ワンクリックで
coding-standard-python
Enforce Python PEP 8 coding standards including snake_case variables, PascalCase classes, and snake_case filenames.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Enforce Python PEP 8 coding standards including snake_case variables, PascalCase classes, and snake_case filenames.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Run a Recursive Language Model-style loop for long-context tasks. Uses a persistent local Python REPL and an rlm-subcall subagent as the sub-LLM (llm_query).
Enforce C coding standards including snake_case variables and functions, UPPER_SNAKE_CASE macros, and snake_case filenames.
Enforce C++ coding standards including camelCase or snake_case variables, PascalCase classes, and consistent file naming.
Enforce Java coding standards including camelCase variables, PascalCase classes, and PascalCase filenames matching class names.
Enforce JavaScript/ES6+ and TypeScript coding standards including camelCase variables, PascalCase classes, and kebab-case filenames.
Recommends modularity, composition, and decoupling patterns for design challenges. Use when designing plugin architectures, reducing coupling, improving testability, or separating cross-cutting concerns.
| name | coding-standard-python |
| description | Enforce Python PEP 8 coding standards including snake_case variables, PascalCase classes, and snake_case filenames. |
When reviewing or generating Python code, follow these rules:
user_service.py, api_client.py)data_processing/, utils/)test_ prefix (e.g., test_user_service.py)config_settings.py)user_name, is_active, total_count)MAX_RETRIES, API_BASE_URL)is_, has_, can_, should_ (e.g., is_loading, has_error)_internal_data)__private_data)calculate_total(), fetch_user_data())_validate_input(), _process_data())__init__, __str__, __repr__)UserService, DataProcessor, ApiClient)Error or Exception suffix (e.g., ValidationError)Base or Abstract (e.g., BaseHandler)get_user(), process_data())@classmethod decorator@staticmethod decorator@property decorator__all__, __version__)__all__ to define public API