python ยท diff
git:20260626.03a7063 to git:20260915.f17c505
2 added, 2 removed. Audit A to A.
---
- description: Python coding standards (AgentX)
+ description: Python coding standards (Frontier)
globs: **/*.py,**/*.pyx
alwaysApply: false
---
- # Python (AgentX)
+ # Python (Frontier)
Canonical: `.github/instructions/python.instructions.md` and
`.github/skills/languages/python/SKILL.md` -- read for full standards.
- PEP 8; type hints on all signatures; Black 88-col; `ruff` lint/format.
- Google-style docstrings; pytest (+ pytest-asyncio); name tests
`test_function_scenario_expected`.
- Catch specific exceptions, never bare `except:`.
- Parameterize SQL via ORM or `cursor.execute(sql, params)` -- never f-strings.
- Secrets via env/Key Vault, never hardcoded.