Agent Skills: Python 3.11 Best Practices

Python 3.11+ performance optimization guidelines (formerly python-311). This skill should be used when writing, reviewing, or refactoring Python code to ensure optimal performance patterns. Triggers on tasks involving asyncio, data structures, memory management, concurrency, loops, strings, or Python idioms.

UncategorizedID: pproenca/dot-skills/python

Install this agent skill to your local

pnpm dlx add-skill https://github.com/pproenca/dot-skills/tree/HEAD/skills/.curated/python

Skill Files

Browse the full folder contents for python.

Download Skill

Loading file tree…

skills/.curated/python/SKILL.md

Skill Metadata

Name
python
Description
Python 3.11+ performance optimization guidelines (formerly python-311). This skill should be used when writing, reviewing, or refactoring Python code to ensure optimal performance patterns. Triggers on tasks involving asyncio, data structures, memory management, concurrency, loops, strings, or Python idioms.

Python 3.11 Best Practices

Comprehensive performance optimization guide for Python 3.11+ applications. Contains 42 rules across 8 categories, prioritized by impact to guide automated refactoring and code generation.

When to Apply

Reference these guidelines when:

  • Writing new Python async I/O code
  • Choosing data structures for collections
  • Optimizing memory usage in data-intensive applications
  • Implementing concurrent or parallel processing
  • Reviewing Python code for performance issues

Rule Categories by Priority

| Priority | Category | Impact | Prefix | |----------|----------|--------|--------| | 1 | I/O & Async Patterns | CRITICAL | io- | | 2 | Data Structure Selection | CRITICAL | ds- | | 3 | Memory Optimization | HIGH | mem- | | 4 | Concurrency & Parallelism | HIGH | conc- | | 5 | Loop & Iteration | MEDIUM | loop- | | 6 | String Operations | MEDIUM | str- | | 7 | Function & Call Overhead | LOW-MEDIUM | func- | | 8 | Python Idioms & Micro | LOW | py- |

Table of Contents

  1. I/O & Async PatternsCRITICAL

  2. Data Structure SelectionCRITICAL

  3. Memory OptimizationHIGH

  4. Concurrency & ParallelismHIGH

  5. Loop & IterationMEDIUM

  6. String OperationsMEDIUM

  7. Function & Call OverheadLOW-MEDIUM

  8. Python Idioms & MicroLOW

References

  1. Python 3.11 Release Notes
  2. PEP 8 Style Guide
  3. Python Wiki - Performance Tips
  4. Real Python - Async IO
  5. Real Python - LEGB Rule
  6. Real Python - String Concatenation
  7. Python Tutorial - Data Structures
  8. CPython Exception Handling
  9. DataCamp - Python Generators
  10. JetBrains - Performance Hacks