src/maverick/skills/maverick_python_peps/SKILL.md
Python Enhancement Proposals (PEPs) and style guidelines
npx skillsauth add get2knowio/maverick maverick-python-pepsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Python Enhancement Proposals reference and style guidelines.
lowercase, lower_with_underlowercase (no underscores)PascalCasesnake_caseSCREAMING_SNAKE_CASE_leading_underscore# Standard library
import os
import sys
from pathlib import Path
# Third-party
import requests
from pydantic import BaseModel
# Local
from myapp.models import User
from myapp.utils import helper
def function(arg1: str, arg2: int) -> bool:
"""One-line summary.
Detailed description if needed.
Args:
arg1: Description of arg1.
arg2: Description of arg2.
Returns:
Description of return value.
Raises:
ValueError: When validation fails.
"""
development
Rust unsafe code, FFI, and safety invariants
development
Rust testing patterns (unit, integration, property-based)
development
Rust performance optimization and zero-cost abstractions
development
Rust ownership, borrowing, and lifetimes