Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问clear审计通过

pythonPython 开发

Agent Skill

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流。它适合让 Agent 阅读 Python 代码、定位测试问题、整理运行命令、生成脚本或分析数据处理逻辑。使用时需要确认项目虚拟环境、依赖版本和测试入口;涉及执行脚本、读写文件、访问数据库或调用外部 API 时,应先明确运行目录和输入输出范围,避免误改生产数据。

总安装

4,218

周安装

174

GitHub Stars

131

下载量

1,378
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:python(Python 开发)
来源仓库:https://github.com/pproenca/dot-skills
仓库路径:skills/python
安装命令:
npx skills add https://github.com/pproenca/dot-skills --skill python
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/pproenca/dot-skills --skill python

简介

用于辅助 Python 项目开发、测试、依赖管理和常见框架工作流,适合阅读 Python 代码或整理运行命令。

  • 适用于 Python 开发相关的代码分析和数据处理逻辑定位,需确认虚拟环境和依赖版本。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装,需确认权限范围和维护状态。
  • 安装前建议检查是否会触发联网、命令执行或文件读写,确保操作边界清晰。
  • python 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

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

- 1.1 Defer await Until Value Needed — CRITICAL (2-5× faster for dependent operations) - 1.2 Use aiofiles for Async File Operations — CRITICAL (prevents event loop blocking) - 1.3 Use asyncio.gather() for Concurrent I/O — CRITICAL (2-10× throughput improvement) - 1.4 Use Connection Pooling for Database Access — CRITICAL (100-200ms saved per connection) - 1.5 Use Semaphores to Limit Concurrent Operations — CRITICAL (prevents resource exhaustion) - 1.6 Use uvloop for Faster Event Loop — CRITICAL (2-4× faster async I/O)

  1. Data Structure SelectionCRITICAL

- 2.1 Use bisect for O(log n) Sorted List Operations — CRITICAL (O(n) to O(log n) search) - 2.2 Use defaultdict to Avoid Key Existence Checks — CRITICAL (eliminates redundant lookups) - 2.3 Use deque for O(1) Queue Operations — CRITICAL (O(n) to O(1) for popleft) - 2.4 Use Dict for O(1) Key-Value Lookup — CRITICAL (O(n) to O(1) lookup) - 2.5 Use frozenset for Hashable Set Keys — CRITICAL (enables set-of-sets patterns) - 2.6 Use Set for O(1) Membership Testing — CRITICAL (O(n) to O(1) lookup)

  1. Memory OptimizationHIGH

- 3.1 Intern Repeated Strings to Save Memory — HIGH (reduces duplicate string storage) - 3.2 Use slots for Memory-Efficient Classes — HIGH (20-50% memory reduction per instance) - 3.3 Use array.array for Homogeneous Numeric Data — HIGH (4-8× memory reduction for numbers) - 3.4 Use Generators for Large Sequences — HIGH (100-1000× memory reduction) - 3.5 Use weakref for Caches to Prevent Memory Leaks — HIGH (prevents unbounded cache growth)

  1. Concurrency & ParallelismHIGH

- 4.1 Use asyncio for I/O-Bound Concurrency — HIGH (300% throughput improvement for I/O) - 4.2 Use multiprocessing for CPU-Bound Parallelism — HIGH (4-8× speedup on multi-core systems) - 4.3 Use Queue for Thread-Safe Communication — HIGH (prevents race conditions) - 4.4 Use TaskGroup for Structured Concurrency — HIGH (prevents resource leaks on failure) - 4.5 Use ThreadPoolExecutor for Blocking Calls in Async — HIGH (prevents event loop blocking)

  1. Loop & IterationMEDIUM

- 5.1 Hoist Loop-Invariant Computations — MEDIUM (avoids N× redundant work) - 5.2 Use any() and all() for Boolean Aggregation — MEDIUM (O(n) to O(1) best case) - 5.3 Use dict.items() for Key-Value Iteration — MEDIUM (single lookup vs double lookup) - 5.4 Use enumerate() for Index-Value Iteration — MEDIUM (cleaner code, avoids index errors) - 5.5 Use itertools for Efficient Iteration Patterns — MEDIUM (2-3× faster iteration patterns) - 5.6 Use List Comprehensions Over Explicit Loops — MEDIUM (2-3× faster iteration)

  1. String OperationsMEDIUM

- 6.1 Use f-strings for Simple String Formatting — MEDIUM (20-30% faster than.format()) - 6.2 Use join() for Multiple String Concatenation — MEDIUM (4× faster for 5+ strings) - 6.3 Use str.startswith() with Tuple for Multiple Prefixes — MEDIUM (single call vs multiple comparisons) - 6.4 Use str.translate() for Character-Level Replacements — MEDIUM (10× faster than chained replace())

  1. Function & Call OverheadLOW-MEDIUM

- 7.1 Reduce Function Calls in Tight Loops — LOW-MEDIUM (100ms savings per 1M iterations) - 7.2 Use functools.partial for Pre-Filled Arguments — LOW-MEDIUM (50% faster debugging via introspection) - 7.3 Use Keyword-Only Arguments for API Clarity — LOW-MEDIUM (prevents positional argument errors) - 7.4 Use lru_cache for Expensive Function Memoization — LOW-MEDIUM (avoids repeated computation)

  1. Python Idioms & MicroLOW

- 8.1 Leverage Zero-Cost Exception Handling — LOW (zero overhead in happy path (Python 3.11+)) - 8.2 Prefer Local Variables Over Global Lookups — LOW (faster name resolution) - 8.3 Use dataclass for Data-Holding Classes — LOW (reduces boilerplate by 80%) - 8.4 Use Lazy Imports for Faster Startup — LOW (10-15% faster startup) - 8.5 Use match Statement for Structural Pattern Matching — LOW (reduces branch complexity) - 8.6 Use Walrus Operator for Assignment in Expressions — LOW (eliminates redundant computations)

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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

29.12%
按下载量换算401

Gemini CLI

19.98%
按下载量换算275

Antigravity

18.92%
按下载量换算261

Codex

12.74%
按下载量换算176

OpenCode

7.36%
按下载量换算101

Cursor

3.38%
按下载量换算47

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills