Manusで任意のスキルを実行
ワンクリックで
ワンクリックで
ワンクリックでManusで任意のスキルを実行
始める$pwd:
python-project-conventions
// Project conventions for install, lint, test, format, and coverage via Make
$ git log --oneline --stat
stars:114
forks:6
updated:2026年2月6日 14:21
SKILL.md
// Project conventions for install, lint, test, format, and coverage via Make
instruction layering with reusable, conditional instruction files
multi-arch image publishing to GHCR via GitHub Actions
Bundling via Bun/Node with Make targets for typecheck and bundling
CI patterns that call Make targets
Project conventions with module caching, linting, security checks, and tests via Make
GitHub releases with autogenerated notes
| name | Python project conventions |
| description | Project conventions for install, lint, test, format, and coverage via Make |
Provide a consistent Python dev experience (install/lint/test/format/coverage) via Make targets.
pyproject.toml (preferred) or requirements*.txtsrc/ (preferred) or top-level package dirtests/make install → python -m pip install -e .make install-dev → install dev extras + ruff/pytestmake lint → ruff check ...make format → ruff format ...make test → python -m pytestmake coverage → python -m pytest --cov=... --cov-report=term-missingmake check → make lint && make coverageuv tool or pip