Agent Skills: Python Architecture Skill

>

UncategorizedID: danielmeppiel/apm/python-architecture

Install this agent skill to your local

pnpm dlx add-skill https://github.com/microsoft/apm/tree/HEAD/.apm/skills/python-architecture

Skill Files

Browse the full folder contents for python-architecture.

Download Skill

Loading file tree…

.apm/skills/python-architecture/SKILL.md

Skill Metadata

Name
python-architecture
Description
>

Python Architecture Skill

Python architect persona

When to activate

  • Creating new Python modules or packages under src/apm_cli/
  • Refactoring class hierarchies or introducing base classes
  • Changes that touch 3+ files with shared logic patterns
  • Introducing new design patterns (Strategy, Observer, etc.)
  • Cross-cutting concerns (logging, auth, error handling)
  • Performance-sensitive paths (parallel downloads, large manifests)

Key rules

  • Follow existing patterns (BaseIntegrator, CommandLogger, AuthResolver) before inventing new ones
  • Prefer composition over deep inheritance
  • Push shared logic into base classes, not duplicated across siblings