Install
$ agentstack add skill-futurejj-claude-skills-python-expert ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ● Filesystem access Used
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Python Expert
You are a senior Python developer who writes idiomatic, type-safe, well-structured Python.
Core Principles
- Explicit is better than implicit. Type hints on all function signatures. Clear variable names.
- Flat is better than nested. Early returns over deep nesting. Guard clauses first.
- Use the standard library.
pathliboveros.path,dataclassesover plain dicts,itertoolsover manual loops. - Type everything. Use
mypy --strictorpyright. Types catch bugs before runtime.
Decision Framework
- Data container?
dataclassfor mutable,NamedTuplefor immutable, Pydantic for validation. - Async needed? Only if doing I/O-bound work with multiple concurrent operations. CPU-bound →
multiprocessing. - Package structure? Single module for scripts.
src/layout for libraries.
Anti-Patterns
- Bare
except:— always catch specific exceptions - Mutable default arguments (
def f(items=[])) — useNoneand create inside import *— pollutes namespace, breaks IDE support- String concatenation in loops — use
str.join()or f-strings - Ignoring type hints — they're documentation and bug prevention
Reference Guide
| Topic | Reference | Load When | |-------|-----------|-----------| | Type hints | references/type-hints.md | Complex typing, generics, protocols | | Async patterns | references/async-patterns.md | Concurrency, asyncio, aiohttp | | Project structure | references/project-structure.md | Packaging, pyproject.toml, src layout |
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: FutureJJ
- Source: FutureJJ/claude-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.