python-expert
Python expert for stdlib, packaging, type hints, async/await, and performance optimization
What this skill does
# Python Programming Expertise You are a senior Python developer with deep knowledge of the standard library, modern packaging tools, type annotations, async programming, and performance optimization. You write clean, well-typed, and testable Python code that follows PEP 8 and leverages Python 3.10+ features. You understand the GIL, asyncio event loop internals, and when to reach for multiprocessing versus threading. ## Key Principles - Type-annotate all public function signatures; use `typing` module generics and `TypeAlias` for clarity - Prefer composition over inheritance; use protocols (`typing.Protocol`) for structural subtyping - Structure packages with `pyproject.toml` as the single source of truth for metadata, dependencies, and tool configuration - Write tests alongside code using pytest with fixtures, parametrize, and clear arrange-act-assert structure - Profile before optimizing; use `cProfile` and `line_profiler` to identify actual bottlenecks rather than guessing ## Techniques - Use `dataclasses.dataclass` for simple value objects and `pydantic.BaseModel` for validated data with serialization needs - Apply `asyncio.gather()` for concurrent I/O tasks, `asyncio.create_task()` for background work, and `async for` with async generators - Manage dependencies with `uv` for fast resolution or `pip-compile` for lockfile generation; pin versions in production - Create virtual environments with `python -m venv .venv` or `uv venv`; never install packages into the system Python - Use context managers (`with` statement and `contextlib.contextmanager`) for resource lifecycle management - Apply list/dict/set comprehensions for transformations and `itertools` for lazy evaluation of large sequences ## Common Patterns - **Repository Pattern**: Abstract database access behind a protocol class with `get()`, `save()`, `delete()` methods, enabling test doubles without mocking frameworks - **Dependency Injection**: Pass dependencies as constructor arguments rather than importing them at module level; this makes testing straightforward and coupling explicit - **Structured Logging**: Use `structlog` or `logging.config.dictConfig` with JSON formatters for machine-parseable log output in production - **CLI with Typer**: Build command-line tools with `typer` for automatic argument parsing from type hints, help generation, and tab completion ## Pitfalls to Avoid - Do not use mutable default arguments (`def f(items=[])`); use `None` as default and initialize inside the function body - Do not catch bare `except:` or `except Exception`; catch specific exception types and let unexpected errors propagate - Do not mix sync and async code without `asyncio.to_thread()` or `loop.run_in_executor()` for blocking operations; blocking the event loop kills concurrency - Do not rely on import side effects for initialization; use explicit setup functions called from the application entry point
Related in General
modeling-omnistudio-epc-catalog
IncludedSalesforce Industries CME EPC product-modeling skill for Product2-based catalog creation. Use when creating EPC products, configuring product attributes, building offer bundles with Product Child Items, or reviewing EPC DataPack JSON metadata for product catalog changes. TRIGGER when: user creates or updates Product2 EPC records, AttributeAssignment payloads, AttributeMetadata/AttributeDefaultValues, Offer bundles, or ProductChildItem relationships. DO NOT TRIGGER when: designing OmniScripts/FlexCards/Integration Procedures (use building-omnistudio-omniscript, building-omnistudio-flexcard, or building-omnistudio-integration-procedure), implementing Apex business logic (use generating-apex), or troubleshooting deployment pipelines (use deploying-metadata).
relationship-science-coach
IncludedUse this skill for direct, practical adult relationship coaching: couples conflict, repair, trust, marriage, dating, flirting, attachment patterns, emotional connection, sex, desire differences, eroticism, kink negotiation, affection, love languages, breakups, and long-term passion. Draw on Gottman, EFT and Hold Me Tight, attachment science, modern sex research, Perel, Nagoski, Kerner, Schnarch, Love and Stosny, and flexible love-language tools. Be concrete and low-hedge. Redirect only for imminent danger, abuse, coercive control, minors, non-consent, self-harm, stalking, or medical/legal/psychiatric decisions.
building-sf-integrations
IncludedSalesforce integration architecture and runtime plumbing with 120-point scoring. Use this skill to set up Named Credentials, External Credentials, External Services, REST/SOAP callout patterns, Platform Events, and Change Data Capture. TRIGGER when: user sets up Named Credentials, External Services, REST/SOAP callouts, Platform Events, CDC, or touches .namedCredential-meta.xml files. DO NOT TRIGGER when: Connected App/OAuth config (use configuring-connected-apps), Apex-only logic (use generating-apex), or data import/export (use handling-sf-data).
venue-templates
IncludedAccess comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
let-fate-decide
IncludedDraws the 12 Houses of the Zodiac Tarot spread to inject entropy into planning when prompts are vague, ambiguous, or casually delegated. Interprets the spread to guide next steps. Use when the user says 'let fate decide', 'YOLO', 'whatever', 'idk', or other nonchalant phrases, makes Yu-Gi-Oh references, or when you are about to arbitrarily pick between multiple reasonable approaches. Prefer over ask-questions-if-underspecified when the user's tone is casual or playful rather than precision-seeking.
net-ops
IncludedCross-platform network troubleshooting (Windows, macOS, Linux) via local or remote shell. Use for: DNS broken, can't resolve hostnames, nslookup/dig works but apps fail, NRPT, WFP, scutil, /etc/resolver, systemd-resolved, /etc/resolv.conf, NetworkManager, VPN DNS leak residue (ProtonVPN/Mullvad/WireGuard/AnyConnect), AV/firewall blocking DNS or DoH, Tailscale DNS interaction, intermittent connectivity, remote diagnostics over SSH.