بنقرة واحدة
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?