Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Expert-level Python coding assistant with deep knowledge of best practices, design patterns, type hints, async/await, testing, and clean architecture. Use when writing production-grade Python code, debugging complex issues, or reviewing Python projects.
.claude/skills/marine-softdrink524-senior-python-developer/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-18 | ✗→✓ | ▲ Improved | 79% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 109% | 0% |
| case-06 | ✗→✓ | ▲ Improved | 99% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 173% | 0% |
| case-23 | ✗→✓ | ▲ Improved | 143% | 0% |
You are a senior Python developer with 10+ years of experience building production systems. You write clean, maintainable, and well-tested Python code.
snake_casePascalCaseUPPER_SNAKE_CASE_underscoreexcept:try/except/else/finally properlypython# Always structure modules as: # 1. Imports (stdlib → third-party → local) # 2. Constants # 3. Type definitions # 4. Helper functions # 5. Main classes/functions # 6. Entry point (if __name__ == "__main__")
.format() or %pathlib.Path over os.pathdataclasses or pydantic for data modelsasync/await for I/O-bound operationscontextlib for resource managementfunctools for caching and decorators:= when appropriatematch/case (3.10+) for pattern matchingpytest as the default frameworkpytest.mark.parametrize for multiple test casesunittest.mockWhen writing code:
pythonfrom typing import Optional from dataclasses import dataclass @dataclass class User: """Represents an application user.""" name: str email: str age: Optional[int] = None def is_adult(self) -> bool: """Check if user is 18 or older.""" return self.age is not None and self.age >= 18
python# No type hints, no docstring, bare except, magic numbers def check(u): try: if u['age'] > 17: return True except: pass return False
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-18 | fail→pass | 8,805 | 12,462 | +42% | 1 | 1 | 0% | 1,960 | 3,506 | +79% | 0 | 0 | — |
case-01 | fail→fail | 25,524 | 23,339 | -9% | 1 | 1 | 0% | 5,498 | 5,663 | +3% | 0 | 0 | — |
case-02 | pass→pass | 9,161 | 17,485 | +91% | 1 | 1 | 0% | 1,860 | 4,567 | +146% | 0 | 0 | — |
case-03 | pass→pass | 6,681 | 8,737 | +31% | 1 | 1 | 0% | 1,227 | 2,388 | +95% | 0 | 0 | — |
case-04 | pass→pass | 5,041 | 9,292 | +84% | 1 | 1 | 0% | 1,142 | 2,757 | +141% | 0 | 0 | — |
case-05 | fail→pass | 8,733 | 14,663 | +68% | 1 | 1 | 0% | 1,894 | 3,955 | +109% | 0 | 0 | — |
case-06 | fail→pass | 7,087 | 9,813 | +38% | 1 | 1 | 0% | 1,426 | 2,838 | +99% | 0 | 0 | — |
case-07 | fail→pass | 6,488 | 13,958 | +115% | 1 | 1 | 0% | 1,300 | 3,555 | +173% | 0 | 0 | — |
case-08 | fail→fail | 25,887 | 30,036 | +16% | 1 | 1 | 0% | 5,848 | 6,931 | +19% | 0 | 0 | — |
case-09 | fail→fail | 3,656 | 9,365 | +156% | 1 | 1 | 0% | 878 | 2,703 | +208% | 0 | 0 | — |
case-10 | fail→fail | 9,718 | 11,660 | +20% | 1 | 1 | 0% | 2,090 | 3,436 | +64% | 0 | 0 | — |
case-11 | fail→fail | 12,129 | 12,297 | +1% | 1 | 1 | 0% | 2,722 | 3,367 | +24% | 0 | 0 | — |
case-12 | fail→fail | 9,104 | 11,138 | +22% | 1 | 1 | 0% | 2,261 | 3,121 | +38% | 0 | 0 | — |
case-13 | fail→fail | 11,467 | 12,573 | +10% | 1 | 1 | 0% | 2,656 | 3,601 | +36% | 0 | 0 | — |
case-14 | fail→fail | 5,841 | 9,507 | +63% | 1 | 1 | 0% | 1,165 | 2,904 | +149% | 0 | 0 | — |
case-15 | fail→fail | 5,956 | 13,610 | +129% | 1 | 1 | 0% | 1,394 | 3,928 | +182% | 0 | 0 | — |
case-16 | fail→fail | 8,910 | 11,964 | +34% | 1 | 1 | 0% | 2,093 | 3,581 | +71% | 0 | 0 | — |
case-17 | pass→pass | 8,233 | 13,023 | +58% | 1 | 1 | 0% | 1,978 | 3,825 | +93% | 0 | 0 | — |
case-19 | fail→fail | 6,558 | 12,510 | +91% | 1 | 1 | 0% | 1,446 | 3,368 | +133% | 0 | 0 | — |
case-20 | pass→pass | 16,346 | 17,611 | +8% | 1 | 1 | 0% | 2,865 | 4,408 | +54% | 0 | 0 | — |
case-21 | fail→fail | 6,980 | 8,168 | +17% | 1 | 1 | 0% | 1,425 | 2,463 | +73% | 0 | 0 | — |
case-22 | fail→fail | 2,222 | 6,497 | +192% | 1 | 1 | 0% | 447 | 2,159 | +383% | 0 | 0 | — |
case-23 | fail→pass | 4,584 | 7,960 | +74% | 1 | 1 | 0% | 958 | 2,324 | +143% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +22 percentage points is the difference between those two pass rates over the 23 comparable cases.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.