AgentSkillsCN

python

Python 3.11+ 性能优化指南(旧称“python-311”)。在编写、审查或重构 Python 代码时,应使用此技能,以确保实现最优性能模式。适用于涉及 asyncio、数据结构、内存管理、并发编程、循环、字符串,或 Python 语言惯用法的任务。

SKILL.md
--- frontmatter
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

PriorityCategoryImpactPrefix
1I/O & Async PatternsCRITICALio-
2Data Structure SelectionCRITICALds-
3Memory OptimizationHIGHmem-
4Concurrency & ParallelismHIGHconc-
5Loop & IterationMEDIUMloop-
6String OperationsMEDIUMstr-
7Function & Call OverheadLOW-MEDIUMfunc-
8Python Idioms & MicroLOWpy-

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