一键导入
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 页面并帮你完成安装。
基于 SOC 职业分类
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.
| 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?