Senior Python developer expertise for writing clean, efficient, and well-documented code.
Works with
Covers correctness, type safety, performance, and style across eight detailed rule categories with examples
Enforces type hints, dataclasses, proper error handling, and PEP 8 compliance as core practices
Includes a code review checklist spanning logic, types, edge cases, security, and testing
Provides a structured development process prioritizing design, type safety, and correctness before op
AI-first code editor with Composer
Before installing skills in Cursor, ensure your development environment meets these requirements:
node --versionpython-expertExecute the skills CLI command in your project's root directory to begin installation:
Fetches python-expert from shubhamsaboo/awesome-llm-apps and configures it for Cursor.
The CLI shows a list of agents. Use arrow keys and space to select Cursor:
Confirm successful installation by checking the skill directory location:
Restart Cursor to activate python-expert. Access via /python-expert in your agent's command palette.
We perform automated surface-level scans (Gen AI Scanner, Socket, Snyk) during installation. These checks detect common vulnerabilities but do not guarantee complete security. Always review skill source code and verify the publisher's reputation before production use.
Skills execute code in your environment. Always review source, verify the publisher, and test in isolation before production.
Submit your Claude Code skill and start earning
Automate repetitive workflows and reduce manual effort
Example
Generate reports, summarize documents, draft communications
Save 3-5 hours per week on routine tasks
Learn new skills, understand complex topics, get expert guidance
Example
Explain concepts, provide examples, suggest learning resources
Accelerate learning and skill development by 2x
Enhance output quality through reviews, suggestions, and refinements
Example
Review drafts, suggest improvements, catch errors
Improve work quality by 30-40% with less effort
19
total installs
19
this week
104.7K
GitHub stars
0
upvotes
Run in your terminal
19
installs
19
this week
104.7K
stars
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.
Use this skill when:
This skill contains detailed rules in the rules/ directory, organized by category and priority.
rules/ directory for deep divesCorrectness (CRITICAL)
Type Safety (HIGH)
Performance (HIGH)
Style (MEDIUM)
Before writing code:
Always include:
TypeVar when neededtyping moduleEnsure code is bug-free:
Optimize appropriately:
Follow best practices:
When reviewing code, check for:
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}'}
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:
Counter from collections for efficiencyTypeVar allows any typePrerequisites
Time Estimate
15-45 minutes depending on use case complexity
Steps
Common Pitfalls
✓ Do
✗ Don't
💡 Pro Tips
✓ Use when
Use when skill capabilities match your task, clear ROI on time saved, and you can validate outputs. Best for repetitive tasks, learning, and quality improvement.
✗ Avoid when
Avoid when task requires deep expertise you can't validate, involves sensitive decisions, or when learning process is more valuable than speed of completion.
wispbit-ai/skills
mindrally/skills
jeffallan/claude-skills
jeffallan/claude-skills
sickn33/antigravity-awesome-skills
erichowens/some_claude_skills
I recommend python-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
Solid pick for teams standardizing on skills: python-expert is focused, and the summary matches what you get after install.
python-expert reduced setup friction for our internal harness; good balance of opinion and flexibility.
Keeps context tight: python-expert is the kind of skill you can hand to a new teammate without a long onboarding doc.
python-expert fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.
We added python-expert from the explainx registry; install was straightforward and the SKILL.md answered most questions upfront.
Useful defaults in python-expert — fewer surprises than typical one-off scripts, and it plays nicely with `npx skills` flows.
Solid pick for teams standardizing on skills: python-expert is focused, and the summary matches what you get after install.
Registry listing for python-expert matched our evaluation — installs cleanly and behaves as described in the markdown.
I recommend python-expert for anyone iterating fast on agent tooling; clear intent and a small, reviewable surface area.
showing 1-10 of 75