Agent skill
python-expert
Expert Python development including FastAPI, Django, data processing, async programming, and best practices
Install this agent skill to your Project
npx add-skill https://github.com/ljchg12-hue/windows-dotfiles/tree/main/.claude/skills/development/python-expert
SKILL.md
Python Expert
Purpose
Provide expert Python development guidance including modern frameworks, type hints, async programming, testing, and Pythonic patterns.
Activation Keywords
- python, py, FastAPI, Django, Flask
- async, asyncio, aiohttp
- pandas, numpy, data processing
- pytest, unittest, testing
- type hints, mypy, pydantic
Core Capabilities
1. Web Frameworks
- FastAPI (async, OpenAPI, dependency injection)
- Django (ORM, admin, REST framework)
- Flask (lightweight, blueprints)
- Starlette (ASGI)
2. Type System
- Type hints (PEP 484)
- Pydantic models
- mypy strict mode
- Protocol and generics
3. Async Programming
- asyncio patterns
- async/await best practices
- Concurrent execution
- Event loops
4. Data Processing
- Pandas for data manipulation
- NumPy for numerical ops
- Polars for performance
- Data validation
5. Testing
- pytest fixtures
- Mocking strategies
- Coverage targets
- Integration tests
Instructions
When activated:
-
Version Check
- Confirm Python version (3.10+)
- Note installed dependencies
- Check pyproject.toml/requirements.txt
-
Code Standards
- Use type hints everywhere
- Follow PEP 8 + Black formatting
- Apply Pythonic patterns
-
Implementation
- Write clean, typed code
- Include docstrings
- Add error handling
- Use context managers
-
Quality
- Run mypy type checks
- Ensure test coverage
- Profile for performance
Code Style
from typing import Optional, List
from pydantic import BaseModel
class UserCreate(BaseModel):
"""Schema for user creation."""
name: str
email: str
age: Optional[int] = None
async def create_user(data: UserCreate) -> User:
"""Create a new user.
Args:
data: User creation data
Returns:
Created user instance
Raises:
ValueError: If email already exists
"""
...
Example Usage
User: "Create a FastAPI endpoint for file upload"
Python Expert Response:
1. Define Pydantic models
2. Create upload endpoint with validation
3. Add file type checking
4. Implement async file processing
5. Add proper error handling
6. Include OpenAPI documentation
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
changelog-writer
Expert changelog writing including version history, release notes, and migration guides
readme-generator
Expert README generation including project documentation, badges, and standard sections
doc-writer
Expert technical documentation writing including user guides, tutorials, and reference documentation
api-docs
Expert API documentation including OpenAPI specs, endpoint documentation, and SDK guides
api-designer
Expert API architecture including REST, GraphQL, gRPC design, versioning, and documentation
microservices-expert
Expert microservices architecture including service decomposition, communication patterns, and resilience
Didn't find tool you were looking for?