python-style — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited python-style (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Project-wide Python conventions. Auto-apply when touching any .py file.
Ruff is the linter. Run after every modification to any Python file in any project.
ruff check <path>
ruff check --fix <path> # auto-fix safe issues
ruff format <path> # formatterDon't claim a Python edit complete until Ruff passes on the changed file.
macOS Homebrew-managed Python rejects pip install without an explicit override. Use:
pip install --break-system-packages <package>This is the team standard for macOS workstations. Do NOT recommend pipx or virtualenvs as a workaround unless the project explicitly uses them.
.env via python-dotenv. NEVER source .env.mb-mgmt/.env" pointer is stale — that file no longer exists at the documented path. Refer to the Credential Hygiene section in CLAUDE.md for current canonical token locations (ClickUp PAT in ~/daily-briefing/.env, Forge token embedded in ~/Sync/.git/config, etc.).from dotenv import load_dotenv
load_dotenv() # loads from the project's local .env
import os
api_key = os.environ["SOME_API_KEY"]~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.