원클릭으로
coding-standards
Project coding standards, focused on the use of pathlib, Google docstrings, and strict typing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Project coding standards, focused on the use of pathlib, Google docstrings, and strict typing.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
This skill allows the agent to manage its own semantic memory, extracting lessons, patterns, and user preferences to improve long-term effectiveness.
Standards for handling drillhole data, section interpolation, and 3-level validation.
Standards for testing in a Dockerized environment and use of Mocks for QGIS.
Expert guide for QGIS 4.x migration and agnostic API usage
Standards for the custom SecInterp interface, focused on programmatic creation and premium aesthetics.
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
SOC 직업 분류 기준
| name | coding-standards |
| description | Project coding standards, focused on the use of pathlib, Google docstrings, and strict typing. |
| trigger | when writing Python code, performing refactors, or defining file paths. |
Defines the technical rules to ensure modern, maintainable, and consistent Python code throughout the SecInterp plugin.
pathlib, Google Docstrings, and Type Hints is mandatory.os.path with pathlib.Path objects.black . and ruff check . to confirm compliance.qgis-analyzer analyze i18n for new strings and security for sensitive code./ to join paths with Path.base_dir / "data" / "file.txt"."""Module-level docstring (MANDATORY per PEP 257)."""
def function(arg1: int) -> str:
"""Short summary.
Args:
arg1: Argument description.
Returns:
Return value description.
"""
pathlib used for all paths?ruff and black checks?