Python style
Skill search-atlas-group/amm-founding-circle/skills/python-style
Python code style and tooling rules — Ruff linter on every modification, --break-system-packages flag for Homebrew Python on macOS, python-dotenv for env loading (never source .env). Use proactively when editing any .py file or installing Python packages.From its SKILL.md
npx -y skills add search-atlas-group/amm-founding-circle --skill python-styleAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
2.2 KB, 447 tokens by cl100k_base, as published. Nobody here has run it
python-style
Project-wide Python conventions. Auto-apply when touching any .py file.
Linting
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> # formatter
Don't claim a Python edit complete until Ruff passes on the changed file.
Package installation (macOS Homebrew Python)
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.
Environment / secrets loading
- Load
.envviapython-dotenv. NEVERsource .env. - Tokens live in per-project
.envfiles, not a single global one. The historical "all inmb-mgmt/.env" pointer is stale — that file no longer exists at the documented path. Refer to theCredential Hygienesection in CLAUDE.md for current canonical token locations (ClickUp PAT in~/daily-briefing/.env, Forge token embedded in~/Sync/.git/config, etc.). - Never hardcode, never commit. See global Hard Rules in CLAUDE.md for the full secrets-handling policy.
from dotenv import load_dotenv
load_dotenv() # loads from the project's local .env
import os
api_key = os.environ["SOME_API_KEY"]
Coding discipline (carries over from global CLAUDE.md)
- Surface ambiguity before coding. Multiple interpretations → present them, don't pick silently.
- Goal-driven execution. "fix the bug" → "write a test that reproduces it, then make it pass."
- Clean up only YOUR orphans. Remove imports/vars/functions your changes made unused. Don't touch pre-existing dead code unless asked.
What ships with it
Read from the repository
Just SKILL.md. No reference files, no scripts.