Tenzir Python coding standards and tooling setup. Use when editing .py files, running ruff/mypy/pytest, encountering pyproject.toml/uv.lock, or setting up a new Python project.
Applies Tenzir's Python standards using uv, Ruff, Mypy, and pytest when editing .py files or setting up Python projects. Enforces the quality gate chain and modern Python 3.12+ conventions.
/plugin marketplace add tenzir/claude-plugins/plugin install formatter@tenzirThis skill inherits all available tools. When active, it can use any tool Claude has access to.
coverage.mddev-dependencies.mdmypy.mdproject-structure.mdpyproject.mdpytest.mdruff.mdupgrading-dependencies.mdCoding standards for Python projects at Tenzir.
All projects use:
Run before committing or releasing:
uv run ruff check \
&& uv run ruff format --check \
&& uv run mypy \
&& uv run pytest \
&& uv build
The chain fails fast on the first error.
Target Python 3.12+. Use modern syntax and stdlib features freely—no backwards-compatibility with older versions.
Any; fix warnings rather than ignoring them| Element | Convention | Example |
|---|---|---|
| Modules | snake_case | my_module.py |
| Functions | snake_case | calculate_total() |
| Variables | snake_case | user_count |
| Classes | PascalCase | DataProcessor |
| Constants | CONSTANT_CASE | MAX_RETRIES |
--output-file, not --output_fileconfig.pyOnly read the specific file you need when setting up a new project or modifying that tool's configuration:
This skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.