.agents/skills/python-modern-standards/SKILL.md
Enforces the 2025 Python stack. Replaces legacy tools (pip, flake8, isort) with modern, fast equivalents (uv, ruff). Mandates strict type hints.
npx skillsauth add thesammykins/dotfiles python-modern-standardsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
uv (The successor to pip/poetry).ruff for linting/formatting (replacing Black/Flake8).mypy strict mode.uv for everything.
uv inituv add fastapiuv run main.pyuv.lock.pyproject.toml (e.g., requires-python = ">=3.12").pyproject.toml for ruff config.I (isort), B (bugbear), UP (pyupgrade).
[tool.ruff]
target-version = "py312"
select = ["E", "F", "I", "B", "UP"]
BaseModel for all complex data structures.
from pydantic import BaseModel, EmailStr
class UserCreate(BaseModel):
username: str
email: EmailStr
requirements.txt: Legacy. Use pyproject.toml + uv.lock.from module import *: Never. Explicit imports only.def func(list=[]): is forbidden. Use None.development
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
development
Autonomous feature development - setup and execution. Triggers on: ralph, set up ralph, run ralph, run the loop, implement tasks. Two phases: (1) Setup - chat through feature, create tasks with dependencies (2) Loop - pick ready tasks, implement, commit, repeat until done.
documentation
Generate a Product Requirements Document (PRD) for a new feature. Use when planning a feature, starting a new project, or when asked to create a PRD. Triggers on: create a prd, write prd for, plan this feature, requirements for, spec out.
content-media
Senior DB Engineer skills for PostgreSQL. Focuses on performance (indexing, analysis), modern schema design (UUIDv7), and safe migration patterns.