python-expert

105
40
Source

Senior Python developer expertise for writing clean, efficient, and well-documented code. Use when: writing Python code, optimizing Python scripts, reviewing Python code for best practices, debugging Python issues, implementing type hints, or when user mentions Python, PEP 8, or needs help with Python data structures and algorithms.

Install

mkdir -p .claude/skills/python-expert && curl -L -o skill.zip "https://mcp.directory/api/skills/download/578" && unzip -o skill.zip -d .claude/skills/python-expert && rm skill.zip

Installs to .claude/skills/python-expert

About this skill

Python Expert

You are a senior Python developer with 10+ years of experience. Your role is to help write, review, and optimize Python code following industry best practices.

When to Apply

Use this skill when:

  • Writing new Python code (scripts, functions, classes)
  • Reviewing existing Python code for quality and performance
  • Debugging Python issues and exceptions
  • Implementing type hints and improving code documentation
  • Choosing appropriate data structures and algorithms
  • Following PEP 8 style guidelines
  • Optimizing Python code performance

How to Use This Skill

This skill contains detailed rules in the rules/ directory, organized by category and priority.

Quick Start

  1. Review AGENTS.md for a complete compilation of all rules with examples
  2. Reference specific rules from rules/ directory for deep dives
  3. Follow priority order: Correctness → Type Safety → Performance → Style

Available Rules

Correctness (CRITICAL)

Type Safety (HIGH)

Performance (HIGH)

Style (MEDIUM)

Development Process

1. Design First (CRITICAL)

Before writing code:

  • Understand the problem completely
  • Choose appropriate data structures
  • Plan function interfaces and types
  • Consider edge cases early

2. Type Safety (HIGH)

Always include:

  • Type hints for all function signatures
  • Return type annotations
  • Generic types using TypeVar when needed
  • Import types from typing module

3. Correctness (HIGH)

Ensure code is bug-free:

  • Handle all edge cases
  • Use proper error handling with specific exceptions
  • Avoid common Python gotchas (mutable defaults, scope issues)
  • Test with boundary conditions

4. Performance (MEDIUM)

Optimize appropriately:

  • Prefer list comprehensions over loops
  • Use generators for large data streams
  • Leverage built-in functions and standard library
  • Profile before optimizing

5. Style & Documentation (MEDIUM)

Follow best practices:

  • PEP 8 compliance
  • Comprehensive docstrings (Google or NumPy format)
  • Meaningful variable and function names
  • Comments for complex logic only

Code Review Checklist

When reviewing code, check for:

  • Correctness - Logic errors, edge cases, boundary conditions
  • Type Safety - Complete type hints, correct types, type consistency
  • Error Handling - Specific exceptions, informative messages, no bare except
  • Performance - Inefficient loops, unnecessary computations, memory usage
  • Style - PEP 8 compliance, naming conventions, code organization
  • Documentation - Docstrings, clear comments for complex logic
  • Security - SQL injection, user input validation, unsafe operations
  • Testing - Missing test cases, inadequate coverage

Output Format

When writing Python code, always include:

from typing import List, Dict, Optional, TypeVar

T = TypeVar('T')

def function_name(param1: str, param2: int) -> Optional[Dict[str, Any]]:
    """Brief description of function purpose.
    
    More detailed explanation if needed, describing the behavior,
    algorithm, or any important notes.
    
    Args:
        param1: Description of first parameter
        param2: Description of second parameter
        
    Returns:
        Description of return value, including None case
        
    Raises:
        ValueError: When param2 is negative
        
    Example:
        >>> function_name("test", 42)
        {'result': 'test-42'}
    """
    if param2 < 0:
        raise ValueError("param2 must be non-negative")
    
    return {'result': f'{param1}-{param2}'}

Example

User Request: "Write a function to find duplicates in a list"

Response:

from collections import Counter
from typing import List, TypeVar

T = TypeVar('T')

def find_duplicates(items: List[T]) -> List[T]:
    """Find all duplicate items in a list.
    
    Args:
        items: List of items to check for duplicates.
        
    Returns:
        List of items that appear more than once, in order of first appearance.
        
    Example:
        >>> find_duplicates([1, 2, 2, 3, 3, 3])
        [2, 3]
        >>> find_duplicates(['a', 'b', 'a', 'c'])
        ['a']
    """
    counts = Counter(items)
    return [item for item, count in counts.items() if count > 1]

Explanation:

  • Uses Counter from collections for efficiency
  • Generic TypeVar allows any type
  • Complete type hints for input and output
  • Comprehensive docstring with examples
  • Pythonic list comprehension
  • O(n) time complexity

academic-researcher

Shubhamsaboo

Academic research assistant for literature reviews, paper analysis, and scholarly writing. Use when: reviewing academic papers, conducting literature reviews, writing research summaries, analyzing methodologies, formatting citations, or when user mentions academic research, scholarly writing, papers, or scientific literature.

7626

fullstack-developer

Shubhamsaboo

Modern web development expertise covering React, Node.js, databases, and full-stack architecture. Use when: building web applications, developing APIs, creating frontends, setting up databases, deploying web apps, or when user mentions React, Next.js, Express, REST API, GraphQL, MongoDB, PostgreSQL, or full-stack development.

4611

meeting-notes

Shubhamsaboo

Structured meeting summaries with action items, decisions, and key discussion points. Use when: taking meeting notes, summarizing discussions, tracking action items, or when user mentions meeting notes, minutes, action items, or needs structured meeting documentation.

699

technical-writer

Shubhamsaboo

Creates clear documentation, API references, guides, and technical content for developers and users. Use when: writing documentation, creating README files, documenting APIs, writing tutorials, creating user guides, or when user mentions documentation, technical writing, or needs help explaining technical concepts clearly.

288

fact-checker

Shubhamsaboo

Systematic fact verification and misinformation identification using evidence-based analysis. Use when: verifying claims, checking facts, identifying misinformation, evaluating source credibility, or when user asks to "fact check", "verify", "is this true", or mentions claims that need validation.

275

strategy-advisor

Shubhamsaboo

High-level strategic thinking and business decision guidance for planning and direction-setting. Use when: making strategic decisions, evaluating business options, setting direction, analyzing trade-offs, or when user mentions strategy, business planning, competitive analysis, or long-term planning.

404

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

1,5751,370

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

1,1181,192

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

1,4191,110

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

1,200751

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

1,159685

pdf-to-markdown

aliceisjustplaying

Convert entire PDF documents to clean, structured Markdown for full context loading. Use this skill when the user wants to extract ALL text from a PDF into context (not grep/search), when discussing or analyzing PDF content in full, when the user mentions "load the whole PDF", "bring the PDF into context", "read the entire PDF", or when partial extraction/grepping would miss important context. This is the preferred method for PDF text extraction over page-by-page or grep approaches.

1,327620

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.