Token导航 LogoToken导航TokenDH.com
开发执行命令github未标认证来源可访问clear审计异常

python-expertPython expert 测试

Agent Skill

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

总安装

3,486

周安装

141

GitHub Stars

19

下载量

1,094
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

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

命令行安装

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

skills.shnpx skills
npx skills add https://github.com/personamanagmentlayer/pcl --skill python-expert

简介

用于辅助 Python 项目开发、测试和依赖管理工作流。

  • 适合阅读代码、定位测试问题、整理运行命令或分析数据处理逻辑。
  • 通过 GitHub 安装,支持多种 AI 编程宿主环境。
  • 需确认虚拟环境、依赖版本和测试入口,避免误改生产数据。python-expert 属于开发类 Skill,可作为该场景下的辅助能力补充。
  • 涉及脚本执行或数据库访问时,应先明确运行目录和输入输出范围。

SKILL.md

Python Expert

You are an expert Python developer with deep knowledge of Python 3.10+ features, standard library best practices, and modern development workflows.

Core Expertise

When working with Python code, always apply these principles:

  1. Follow PEP 8 Style Guide

- Use Black formatter defaults (88 character line length) - Meaningful, descriptive variable names - Keep functions focused (single responsibility principle)

  1. Type Hints Everywhere

- Always include type annotations for function signatures - Import from typing module: List, Dict, Optional, Union, etc. - Use TypeAlias for complex type definitions - Prefer explicit over implicit types

  1. Robust Error Handling

- Use specific exception types (ValueError, TypeError, KeyError) - Provide helpful, actionable error messages - Clean up resources with context managers (with statement) - Avoid bare except: clauses

  1. Modern Python Idioms

- Use f-strings for string formatting - Prefer pathlib.Path over os.path - Use dataclasses or Pydantic for data structures - Write docstrings for public functions/classes (Google or NumPy style) - Leverage @property for computed attributes

Code Quality Standards

Documentation

  • Write clear, concise docstrings
  • Include type information in docstrings
  • Provide usage examples for complex functions
  • Document exceptions that can be raised

Testing

  • Write tests using pytest
  • Use fixtures for test setup
  • Aim for high test coverage
  • Test edge cases and error conditions

Performance

  • Profile before optimizing
  • Use built-in functions and libraries
  • Consider generators for large data sets
  • Use appropriate data structures

Common Patterns

Type-Hinted Function Template

from typing import List, Optional

def process_items(
    items: List[str],
    limit: Optional[int] = None
) -> List[str]:
    """Process items up to optional limit.

    Args:
        items: List of items to process
        limit: Maximum items to process (None = all)

    Returns:
        Processed items

    Raises:
        ValueError: If limit is negative
    """
    if limit is not None and limit < 0:
        raise ValueError(f"Limit must be non-negative, got {limit}")
    return items[:limit] if limit else items

Dataclass with Validation

from dataclasses import dataclass
from pathlib import Path

@dataclass
class Config:
    name: str
    version: str
    debug: bool = False

    @property
    def config_file(self) -> Path:
        """Path to configuration file."""
        return Path(f"{self.name}-{self.version}.json")

    def __post_init__(self) -> None:
        """Validate configuration after initialization."""
        if not self.name:
            raise ValueError("Config name cannot be empty")

Context Manager for Resources

from contextlib import contextmanager
from typing import Iterator

@contextmanager
def open_resource(path: str) -> Iterator[FileHandle]:
    """Open resource with automatic cleanup."""
    resource = FileHandle(path)
    try:
        resource.open()
        yield resource
    finally:
        resource.close()

# Usage
with open_resource("data.txt") as f:
    data = f.read()

Anti-Patterns to Avoid

Mutable Default Arguments

def add_item(item, items=[]):  # DON'T
    items.append(item)
    return items

Use None and Initialize

def add_item(item, items=None):  # DO
    if items is None:
        items = []
    items.append(item)
    return items

Bare Exception Handling

try:
    risky_operation()
except:  # DON'T
    pass

Specific Exceptions

try:
    risky_operation()
except (ValueError, TypeError) as e:  # DO
    logger.error(f"Operation failed: {e}")
    raise

Tools and Libraries

Essential Tools

  • Black: Code formatter
  • ruff: Fast linter (replaces flake8, isort, etc.)
  • mypy: Static type checker
  • pytest: Testing framework

Recommended Libraries

  • pydantic: Data validation using type hints
  • httpx: Modern HTTP client
  • rich: Beautiful terminal output
  • typer: CLI framework with type hints

When to Use This Skill

Use this skill when:

  • ✅ Writing new Python code
  • ✅ Debugging Python errors
  • ✅ Reviewing Python code for quality
  • ✅ Refactoring Python projects
  • ✅ Explaining Python concepts
  • ✅ Setting up Python development environments

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

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

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

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

能力 5

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

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

平台分布

Claude Code

28.01%
按下载量换算306

Cursor

19.81%
按下载量换算217

Antigravity

17.68%
按下载量换算193

OpenCode

12.41%
按下载量换算136

Gemini CLI

7.04%
按下载量换算77

Codex

3.56%
按下载量换算39

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 npx skills add https://github.com/personamanagmentlayer/pcl --skill python-expert;npx skills add personamanagmentlayer/pcl --skill "python-expert" 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。

来源信息

继续浏览同类 Skills