Skip to main content
Back to registry

python

siviter-xyz/dot-agent

Standards and best practices for Python development. Follow these guidelines when writing or modifying Python code.

Installs197
Install command
npx skills add https://github.com/siviter-xyz/dot-agent --skill python
Security audits
Gen Agent Trust HubPASS
SocketPASS
SnykPASS
About this skill
Standards and best practices for Python development. Follow these guidelines when writing or modifying Python code. Apply DRY, KISS, and SOLID consistently. Prefer functional methods where relevant; use classes for stateful behavior. Use composition with Protocol classes for interfaces rather than inheritance. Each module should have a single responsibility. Use dependency injection for class dependencies. When implementing Python code: - Naming : Descriptive yet concise names for variables, methods, and classes - Documentation : Docstrings for all classes, functions, enums, enum values - Type hints : Use consistently; avoid Any unless necessary - Imports : Avoid barrel exports in __init__.py ; prefer blank files - Use dict , list instead of typing.Dict , typing.List - Use str | None instead of Optional[str] - Include from __future__ import annotations at top of files with type hints - Prefer built-in types over typing module equivalents - Always inject dependencies via constructors or methods when using classes - One service class per module (interface and class models allowed in addition) - Use Protocol classes to define interfaces for dependency injection and testing - Each module focuses on one concern with clear boundaries - Extract reusable methods to avoid duplication - Design for reusability across contexts - Use an environment.py file with individual methods per...

Source description provided by the upstream skill listing. Community reviews and install context appear in the sections below.

Community Reviews

Latest reviews

Sign in to review

No community reviews yet. Be the first to review.

Browse this skill in context
FAQ
What does python do?

Standards and best practices for Python development. Follow these guidelines when writing or modifying Python code.

Is python good?

python does not have approved reviews yet, so SkillJury cannot publish a community verdict.

What agent does python work with?

python currently lists compatibility with codex, gemini-cli, opencode, cursor, github-copilot, claude-code.

What are alternatives to python?

Skills in the same category include telegram-bot-builder, flutter-app-size, sharp-edges, iterative-retrieval.

How do I install python?

npx skills add https://github.com/siviter-xyz/dot-agent --skill python

Related skills

More from siviter-xyz/dot-agent

Related skills

Alternatives in Software Engineering