원클릭으로
coding-conventions
Provides coding style rules for Python and PowerShell. Apply when writing, editing, reviewing, or debugging code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Provides coding style rules for Python and PowerShell. Apply when writing, editing, reviewing, or debugging code.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Apply when conducting deep research on technologies, APIs, frameworks, or other software development topics requiring systematic investigation
Apply when doing planning for long-running tasks in sessions on top level
Apply when committing code, writing commit messages, or configuring .gitignore
Apply when working with GitHub repositories, issues, PRs, or authentication
Apply when interacting with Google services (Gmail, Calendar, Drive, Tasks) via gogcli CLI
Automates browser interactions via Microsoft Playwright MCP server (@playwright/mcp). Use when navigating websites, filling forms, taking screenshots, scraping web data, testing web UI, or automating any browser-based task. Covers persistent sessions, extension mode for existing browser tabs, and 40+ browser automation tools.
| name | coding-conventions |
| description | Provides coding style rules for Python and PowerShell. Apply when writing, editing, reviewing, or debugging code. |
Code quality standard: All code MUST follow:
MECT_CODING_RULES.md - Precision, brevity, consistency, naming design, documentation (MECT + APAPALAN for code)Read before writing or reviewing any code.
MECT_CODING_RULES.md - Code quality (precision, brevity, consistency, naming, documentation) PYTHON-RULES.md - Python (formatting, imports, naming, comments) JSON-RULES.md - JSON (field naming, 2-space indent) WORKFLOW-RULES.md - Workflow documents (structure, token optimization)
LOGGING-RULES.md - General logging rules, philosophy, type overview (read first) LOGGING-RULES-APP-LEVEL.md - System/debug logging for technical staff (LOG-AP rules) LOGGING-RULES-SCRIPT-LEVEL.md - Script output for QA and automation verification (LOG-SC rules) LOGGING-RULES-USER-FACING.md - End-user visible output via console or SSE (LOG-UF rules)
reindent.py - Convert Python indentation to target spaces
python reindent.py folder/ --to 2 --recursive
python reindent.py folder/ --to 2 --recursive --dry-run
python reindent.py script.py --to 2