Agent skill
python-modern-tooling
Use when choosing the right modern Python tooling workflow for a project or script (uv setup, quality tools, CLI, logging, packaging) or when unsure which Python tooling skill applies.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/python-modern-tooling
SKILL.md
Python Modern Tooling
Overview
Route requests to the narrowest skill that matches the task. Core principle: keep the umbrella lean and delegate details.
Quick Reference
| Need | Use this skill |
|---|---|
| Init project, add deps, run commands | python-uv-project-setup |
| Lint/format/type-check/test/CI | python-quality-tooling |
| Build a CLI with Typer | python-cli-typer |
| Choose/configure logging or loguru | python-logging |
| Build/publish packages with uv | python-packaging-uv |
Routing Rules
- If the task mentions install, dependency, run, or missing package: use
python-uv-project-setup. - If the task mentions ruff, ty, pytest, coverage, or CI: use
python-quality-tooling. - If the task mentions CLI, commands, Typer: use
python-cli-typer. - If the task mentions logging, loguru, handlers, formatters: use
python-logging. - If the task mentions packaging, build, publish, dist: use
python-packaging-uv.
Example
User: "Missing fastapi and tests fail. How should I install it?"
Route to: python-uv-project-setup (dependency management and run rules).
Common Mistakes
- Providing detailed commands here instead of routing to the focused skill.
- Mixing multiple workflows in one response.
Red Flags
- Suggesting
pip installor directpython/pytestexecution here.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?