Composable skills for senior-level Python development — one responsibility per skill, explicit handoff contracts, deterministic tooling.
GitHub Example walkthrough Install guide
mkdir -p .agents/skills
cp -r python-*/ .agents/skills/
`.agents/skills/` is the vendor-neutral location shared by opencode, Codex CLI,
Trae, and most SKILL.md-based agents. Per-host paths for Claude Code and
Kilo Code are in the INSTALL.md.
Each request routes to the smallest specialist skill chain and hands off through explicit contracts.
| Skill | Responsibility |
|---|---|
python-agent-orchestrator | Routes work across the suite, defines handoff contracts |
python-senior-architect | Architecture analysis, design, ADRs, migration strategy |
python-coder | Bounded implementation from a plan or clear request |
python-reviewer | Code and PR review for correctness and regressions |
python-testing | Test strategy, fixtures, regression and contract coverage |
python-security | Auth, secrets, injection, SSRF, dependencies, isolation |
python-performance | Profiling, database and async bottlenecks, caching |
python-production | Deployment, observability, rollback, incidents |
python-dependency-analyzer | Import graphs, cycles, layer violations, dependency health |
python-architecture-scanner | Enforces layer contracts and forbidden-import CI gates |
python-data-architect | Persistence, data models, migrations, warehouses, pipelines |
python-async-architect | Event loops, workers, queues, backpressure, messaging |
SKILL.md entry points, depth in references/, output contracts in templates/.| Host | Install |
|---|---|
| opencode | .agents/skills/, .opencode/skills/, or ~/.config/opencode/skills/ |
| Claude Code | .claude/skills/ or plugin marketplace (/plugin marketplace add bzdvdn/python-developer-ai-skill) |
| Codex CLI | .codex/skills/ or codex plugin marketplace add bzdvdn/python-developer-ai-skill |
| Kilo Code | .kilo/skills/ |
| Trae | .trae/skills/ |