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

python-developmentPython 开发

Agent Skill

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

总安装

3,103

周安装

128

GitHub Stars

256

下载量

1,014
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/community-access/accessibility-agents --skill python-development

简介

提供 Python 项目开发、测试与依赖管理的参考数据与常见问题解决方案。

  • 涵盖 pyproject.toml 配置模板与各版本特性对比,辅助环境搭建决策。
  • 适合 Developer Hub 与 Python Specialist 等角色快速查阅语法与库用法要点。
  • 涉及文件读写或数据库操作时须明确运行路径与数据脱敏策略,防止误改生产数据。
  • 所有代码建议均基于通用实践,具体项目还需考虑安全策略与性能约束。

SKILL.md

Python Development Skill

Reference data for the Developer Hub, Python Specialist, and wxPython Specialist agents.

Python Version Quick Reference

VersionKey FeaturesEOL
3.10match/case, `X \Y unions, ParamSpec`Oct 2026
3.11Exception groups, Self type, tomllib, faster CPythonOct 2027
3.12Type parameter syntax def f[T](), @override, f-string nestingOct 2028
3.13Experimental free-threaded mode, improved error messagesOct 2029
3.14async pdb.set_trace_async(), template strings (PEP 750)Oct 2030

pyproject.toml Skeleton

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

[project]
name = "my-app"
version = "1.0.0"
requires-python = ">=3.10"
dependencies = []

[project.optional-dependencies]
dev = ["pytest>=8.0", "ruff>=0.6", "mypy>=1.11"]

[project.scripts]
myapp = "my_app.__main__:main"

[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-ra --strict-markers"

[tool.ruff]
target-version = "py310"
line-length = 100

[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "SIM", "TCH"]

[tool.mypy]
python_version = "3.10"
strict = true

PyInstaller Quick Reference

One-File Mode

exe = EXE(pyz, a.scripts, a.binaries, a.zipfiles, a.datas,
          name='MyApp', console=False, icon='icon.ico')

One-Folder Mode

exe = EXE(pyz, a.scripts, exclude_binaries=True,
          name='MyApp', console=False, icon='icon.ico')
coll = COLLECT(exe, a.binaries, a.zipfiles, a.datas, name='MyApp')

Common Hidden Imports

  • pkg_resources.extern
  • accessible_output2 (for a11y desktop apps)
  • keyring.backends (for credential storage)
  • platformdirs
  • httpx._transports / httpcore._backends
  • encodings (always needed)

wxPython Quick Reference

Sizer Cheat Sheet

SizerWhen to Use
wx.BoxSizer(wx.VERTICAL)Stack items top-to-bottom
wx.BoxSizer(wx.HORIZONTAL)Lay items left-to-right
wx.GridBagSizer(vgap, hgap)Form layouts with labels + controls
wx.FlexGridSizer(rows, cols, vgap, hgap)Even grid layouts
wx.WrapSizerFlow layout that wraps
wx.StaticBoxSizer(wx.VERTICAL, parent, "Label")Grouped controls with border

Thread-Safe GUI Updates

# From worker thread:
wx.CallAfter(self.update_status, "Done")
wx.PostEvent(self, CustomEvent(data=result))

# NEVER do this from a worker thread:
self.status_bar.SetStatusText("Done")  # CRASH or CORRUPTION

Standard IDs

IDPurpose
wx.ID_OKOK button
wx.ID_CANCELCancel button
wx.ID_SAVESave action
wx.ID_OPENOpen action
wx.ID_EXITExit / Quit
wx.ID_HELPHelp action
wx.ID_NEWNew document
wx.ID_UNDO / wx.ID_REDOUndo / Redo

Event Types

EventTrigger
wx.EVT_BUTTONButton click
wx.EVT_MENUMenu item selected
wx.EVT_CLOSEWindow close requested
wx.EVT_SIZEWindow resized
wx.EVT_TIMERTimer fired
wx.EVT_TEXTText control content changed
wx.EVT_LIST_ITEM_SELECTEDList item selected
wx.EVT_TREE_SEL_CHANGEDTree selection changed
wx.EVT_UPDATE_UIUI state update check

Common Pitfalls

Python

  • Mutable default arguments: def f(items=[]) shares the list across calls. Use None and create inside.
  • Late binding closures: lambda: x in a loop captures the variable, not the value. Use lambda x=x: x.
  • Circular imports: Move imports inside functions, use TYPE_CHECKING block, or restructure modules.
  • field() outside dataclass: field() is only valid inside @dataclass classes. Use plain type annotations elsewhere.
  • is vs ==: is checks identity, == checks equality. Use is only for None, True, False.
  • String concatenation in loops: Use "".join() or io.StringIO instead.

wxPython

  • GUI from worker thread: Always use wx.CallAfter() or wx.PostEvent().
  • Missing event.Skip(): Other handlers won't fire. Call event.Skip() unless you intentionally consume the event.
  • Timer not stopped: Stop timers in EVT_CLOSE handler to prevent callbacks after destruction.
  • AUI not uninitialized: Call _mgr.UnInit() in close handler.
  • Dialog not destroyed: Use context managers (with MyDialog(...) as dlg:) for automatic cleanup.
  • Wrong parent for sizer items: All controls in a sizer must have the same parent panel.
  • Absolute positioning: Never use SetPosition() or SetSize() for layout. Always use sizers.

Cross-Platform Paths

from platformdirs import user_config_dir, user_data_dir, user_cache_dir

config = user_config_dir("MyApp", "MyCompany")  # %APPDATA% / ~/Library/... / ~/.config/
data = user_data_dir("MyApp", "MyCompany")
cache = user_cache_dir("MyApp", "MyCompany")

Testing Quick Reference

# Run all tests
pytest

# Run specific test file
pytest tests/test_queue.py

# Run specific test
pytest tests/test_queue.py::test_submit_job -v

# With coverage
pytest --cov=mypackage --cov-report=term-missing

# Stop on first failure
pytest -x

# Show locals on failure
pytest -l

Logging Setup Template

import logging

def setup_logging(level: int = logging.INFO) -> None:
    logging.basicConfig(
        level=level,
        format="%(asctime)s %(name)s %(levelname)s %(message)s",
        datefmt="%Y-%m-%d %H:%M:%S",
    )
    # Quiet noisy libraries
    logging.getLogger("httpx").setLevel(logging.WARNING)
    logging.getLogger("httpcore").setLevel(logging.WARNING)

Desktop Accessibility Quick Reference

Platform API Summary

PlatformAPIPython BindingUse For
WindowsUI Automation (UIA)comtypes, pywinautoModern apps, NVDA/Narrator
WindowsMSAA / IAccessible2comtypes, pywinautoLegacy apps, JAWS
macOSNSAccessibilitypyobjcVoiceOver

wxPython Accessibility Essentials

# Name every control that lacks a visible label
# CORRECT: use StaticText immediately before the control in the sizer
label = wx.StaticText(panel, label="Scan progress:")
# ctrl = wx.Gauge(panel)  -- add label to sizer right before ctrl
# WRONG: SetName() is ignored by screen readers
# ctrl.SetName("Scan progress")  -- only affects FindWindowByName()

# Tab order follows sizer insertion order; override with:
ctrl2.MoveAfterInTabOrder(ctrl1)

# Keyboard shortcuts via accelerator table
accel = wx.AcceleratorTable([
    (wx.ACCEL_CTRL, ord('S'), wx.ID_SAVE),
    (wx.ACCEL_CTRL, ord('Q'), wx.ID_EXIT),
])
frame.SetAcceleratorTable(accel)

# Platform-correct button order in dialogs
sizer.Add(dialog.CreateStdDialogButtonSizer(wx.OK | wx.CANCEL))

Screen Reader Interaction Model

Screen readers expose controls as: Name + Role + Value + State

PropertywxPython SourceExample
NamePreceding wx.StaticText, label= parameter, or SetToolTip()"Scan progress"
RoleWidget type (automatic)button, text field, list
ValueWidget content"75%", "Hello world"
StateWidget flagsfocused, disabled, checked

Desktop A11y Checklist

  1. Every control has a meaningful name (preceding wx.StaticText for inputs, label= for buttons, SetToolTip() for image-only controls)
  2. Keyboard-only operation -- every action reachable via Tab/Enter/Space/arrows
  3. Focus visible -- never suppress focus indicators
  4. Tab order is logical (generally top-to-bottom, left-to-right)
  5. Color is not the sole information carrier
  6. High contrast mode supported (use system colors, not hardcoded)
  7. Dialogs use CreateStdDialogButtonSizer() for platform-correct button order
  8. AUI panes are keyboard-navigable

Structured Audit Rule Sets

When audit mode is activated, agents use these structured detection rule sets:

Rule PrefixAgentScopeCount
WX-A11Y-001..012wxpython-specialistwxPython-specific patterns (StaticText labels, AcceleratorTable, mouse-only events, dialogs)12 rules
DTK-A11Y-001..012desktop-a11y-specialistPlatform-level API patterns (Name/Role/State/Value, focus, UIA/NSAccessibility)12 rules
TST-A11Y-001..010desktop-a11y-testing-coachTest coverage gaps (automated tests, SR testing, keyboard plans, CI integration)10 rules

Rule sets don't overlap -- WX covers wxPython widget patterns, DTK covers platform APIs, TST covers testing process gaps.

Agent Routing

For deeper expertise, the skill routes to these specialists:

  • desktop-a11y-specialist -- Platform API implementation, wx.Accessible, custom widget patterns (DTK-A11Y-* audit rules)
  • desktop-a11y-testing-coach -- NVDA/JAWS/Narrator testing, Accessibility Insights, automated UIA tests (TST-A11Y-* audit rules)
  • a11y-tool-builder -- Rule engine architecture, document parsers, severity scoring, report generators

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

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

平台分布

Codex

36.02%
按下载量换算365

Claude

30.52%
按下载量换算309

Cursor

16.74%
按下载量换算170

Gemini CLI

8.64%
按下载量换算88

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

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

安装前确认

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

来源信息

继续浏览同类 Skills