python-guidelines

When dealing with python code, these guidelines must always be followed.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "python-guidelines" with this command: npx skills add stefanmermans/agent-config/stefanmermans-agent-config-python-guidelines

Python Guidelines

Logging

When calling a logger by for example calling logger.infog(...) or logger.debug(...) etc.. always use lazy string formatting when interpolating variables for performance.

Bad example. Must avoid:

logging.error(f"Python version: {sys.version}")

Good example, use Lazy formatting

logging.error("Python version: %s", sys.version)

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Automation

laravel-guidelines

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

general-coding-guidelines

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

react-guidelines

No summary provided by upstream source.

Repository SourceNeeds Review