Token导航 LogoToken导航TokenDH.com
开发规范需要联网github未标认证来源可访问许可证需确认审计通过

python-best-practicesPython 最佳实践

Agent Skill

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

总安装

2,301

周安装

94

GitHub Stars

公开资料未说明

下载量

744
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/nathan-gage/python-skills --skill python-best-practices

简介

辅助 Python 项目开发、测试、依赖管理和常见框架工作流,提升开发效率与规范性。

  • 适合阅读 Python 代码、定位测试问题、生成脚本或分析数据处理逻辑,支持主流宿主环境。
  • 使用时需确认虚拟环境、依赖版本和测试入口,避免误改生产数据或破坏运行环境。
  • 涉及脚本执行、文件读写或数据库访问时,应明确运行目录和输入输出范围,优先进行安全验证。
  • python-best-practices 属于开发规范类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Python Best Practices

Guidelines for writing and reviewing Python. 70 rules across 8 categories, prioritized by impact.

A rule match is a signal, not a verdict. Most rules are design preferences for new code, not bugs to fix across the repo — check the rule's impact level before flagging in review or refactoring stable code.

When to Apply

  • Writing new Python modules, functions, classes, or data models
  • Reviewing code for correctness or type safety
  • Refactoring patterns in code that's being edited anyway

Avoid applying these rules as a blanket sweep across stable code — the churn rarely pays off.

Impact Levels

  • CRITICAL — prevents a real bug class (data corruption, swallowed cancellations, insecure defaults). Fix when found.
  • HIGH — meaningful correctness or maintainability win. Worth fixing in most contexts.
  • MEDIUM — good practice; clarity or drift prevention. Apply to new code; don't churn stable code.
  • LOW-MEDIUM / LOW — style or micro-optimizations. Apply opportunistically.

Python Version Baseline

Rules assume Python 3.11+. Rules depending on higher versions call it out inline:

  • warnings.deprecated() — 3.13+
  • zoneinfo — 3.9+
  • Union types in isinstance() — 3.10+
  • assert_never — 3.11+ (backport via typing_extensions)

Rules tagged applicability:pydantic are Pydantic-specific.

Rule Categories by Priority

PriorityCategoryImpactPrefix
1Data ModelingHIGHdata-
2Error HandlingMEDIUM-HIGHerror-
3Type SafetyMEDIUM-HIGHtypes-
4API DesignMEDIUMapi-
5Code SimplificationLOW-MEDIUMsimplify-
6PerformanceLOW-MEDIUMperf-
7NamingLOW-MEDIUMnaming-
8Imports & StructureLOWimports-

Section impact is a typical-case label; individual rules range one level above or below — check the rule file.

Quick Reference

Data Modeling (data-)

  • data-mutable-defaults — Never def f(items=[]); use None + body construction or default_factory
  • data-derive-dont-store — Compute booleans from state; don't cache flags that mirror each other
  • data-mutation-contract — Mutate OR return; not both
  • data-aware-datetimes — Timezone-aware datetime.now(timezone.utc); utcnow() is deprecated
  • data-discriminated-unions — Tag variants instead of optional-field bags
  • data-explicit-variants — Concrete classes per mode beat is_thread / is_edit flags
  • data-phased-composition — Group co-present optionals into one nested optional
  • data-encapsulate-mutable-state — Trap mutable state in the narrowest clear scope
  • data-sentinel-when-none-is-valid — Private sentinel when None is a meaningful value
  • data-newtype-for-idsNewType('UserId', str) so IDs aren't interchangeable
  • data-delete-dead-variants — Remove union arms that aren't constructed

Error Handling (error-)

  • error-specific-exceptions — Catch specific types; never bare except: or except BaseException: (breaks Ctrl-C and async cancellation); except Exception: is cancellation-safe on 3.8+
  • error-context-managerswith / async with for files, locks, sessions
  • error-assert-debug-onlyassert vanishes under -O; not for runtime contracts
  • error-validate-at-boundaries — Fail fast at system edges before expensive work
  • error-trust-validated-state — Trust immutable, locally-constructed state
  • error-consolidate-try-except — Merge blocks with the same catch and handling
  • error-assert-never-exhaustivenesstyping.assert_never for exhaustiveness
  • error-raise-from-for-chainsraise NewErr(...) from original to preserve causality
  • error-inherit-base-exceptions — New exceptions inherit existing bases for compatibility
  • error-log-exception-contextlogger.exception(...) inside except; keep the traceback in the log
  • error-repr-in-messagesf"tool {name!r}" for identifiers in error text

Type Safety (types-)

  • types-fix-errors-not-ignore — Fix type errors; # type: ignore is a last resort
  • types-avoid-any — Protocols, TypeVars, unions over Any
  • types-typeddict-over-dict-anyTypedDict / dataclass when structure is known
  • types-literal-for-fixed-setsLiteral["a", "b"] for fixed strings
  • types-fix-types-not-cast — Fix the definition; cast() only when runtime genuinely narrows
  • types-isinstance-for-narrowingisinstance() over hasattr / type(x).__name__
  • types-narrow-to-runtime-reality — Annotations match what control flow actually allows
  • types-trust-the-checker — Drop runtime checks the types already enforce
  • types-remove-redundant-optional — Drop | None when values are guaranteed present
  • types-type-checking-importsif TYPE_CHECKING: for optional or heavy imports

API Design (api-)

  • api-required-before-optional — Required fields before optional (Python enforces this)
  • api-keyword-only-params* marker for optional/config params
  • api-no-boolean-flag-paramsLiteral / Enum over True, False soup
  • api-immutable-transforms — Return new collections; don't mutate inputs
  • api-model-cohesion — Flat models; no duplicate or single-key-wrapped fields
  • api-underscore-for-private_prefix for internals; exclude from __all__
  • api-deprecated-aliaseswarnings.deprecated() (3.13+) for renamed APIs
  • api-no-private-access — Don't reach into _prefixed names from outside the module
  • api-instance-vs-module-fn — Pick the namespace that matches ownership

Code Simplification (simplify-)

  • simplify-early-return — Return early; don't nest the happy path
  • simplify-extract-after-duplication — Second copy is the decision point; third is the safe default
  • simplify-cached-property@cached_property on immutable instances; not thread-safe
  • simplify-comprehensions — Comprehensions over for + .append()
  • simplify-any-all-builtinsany() / all() over manual flag + break
  • simplify-fallback-orx or default when falsy values aren't semantic
  • simplify-flatten-nested-ifif cond1 and cond2: when no intervening code
  • simplify-inline-single-use-vars — Drop intermediates used once
  • simplify-remove-dead-code — Delete commented-out code; git preserves history

Performance (perf-)

  • perf-set-for-membershipset for repeated in checks
  • perf-dict-index-over-nested-loops — Build a dict for lookups
  • perf-lru-cache-pure-fnsfunctools.lru_cache / functools.cache on pure functions
  • perf-generator-over-list — Stream with generators when memory or latency matters
  • perf-combine-iterations — Fuse filter + map into one pass
  • perf-compile-regex-module-level — Compile static regex at module scope; matters in tight loops
  • perf-type-adapter-constant — Module-scope TypeAdapter *(applicability: pydantic)*
  • perf-isinstance-tuple-syntax — Tuple form is marginally faster; profiled hot paths only

Naming (naming-)

  • naming-rename-on-behavior-change — Rename when behavior changes; stale names mislead
  • naming-consistent-terminology — Same concept, same word across code/docs/errors
  • naming-specific-over-generictoolset_id; not bare id
  • naming-drop-redundant-prefixesToolConfig.description; not ToolConfig.tool_description
  • naming-upper-case-constantsMAX_RETRIES; _ prefix for internal
  • naming-no-type-suffixes — No _dict / _list suffixes; types annotate types

Imports & Structure (imports-)

  • imports-no-side-effects — Modules must be cheap to import — no network/model/env reads at import
  • imports-top-of-file — Imports at the top; documented exceptions for circular / optional / deferred
  • imports-optional-dependenciestry / except ImportError with install hints
  • imports-scope-helpers-to-usage — Define helpers near where they're used
  • imports-remove-unused — Delete unused imports
  • imports-no-duplicates — One import per name

How to Use

Read individual rule files for detail:

rules/data-mutable-defaults.md
rules/error-specific-exceptions.md

Each rule has:

  • Impact level in frontmatter
  • Brief explanation
  • Incorrect example
  • Correct example
  • Optional note on edge cases

For the full compiled guide with all rules expanded: AGENTS.md.

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

32.37%
按下载量换算241

Claude

30.05%
按下载量换算224

Cursor

18.26%
按下载量换算136

Gemini CLI

9.71%
按下载量换算72

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills