python-programming
Installation
SKILL.md
Python Programming
Operating Rules
- Inspect project metadata, dependency manager, test framework, and style before editing.
- Prefer clear data flow, explicit exceptions, typed public boundaries, and narrow dependencies.
- Do not rewrite large modules when a targeted patch will solve the issue.
- Preserve user-visible behavior unless the task explicitly asks for a behavior change.
Workflow
- Identify runtime version, package layout, entry points, and tests.
- Reproduce or reason about the issue with the smallest relevant command.
- Implement the change using idiomatic Python and existing project conventions.
- Add or update focused tests with deterministic fixtures and no hidden network dependency.
- Run formatting/type/test commands that exist in the repo and report any skipped verification.