ワンクリックで
license-integrity
Maintain AlbumentationsX license, CLA, provenance notices, and packaged legal artifacts consistently.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Maintain AlbumentationsX license, CLA, provenance notices, and packaged legal artifacts consistently.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Full checklist for adding a new transform to AlbumentationsX. Use when the user asks to add, implement, or create a new transform/augmentation.
Run the full shared Codex review checklist against a transform. Use when the user asks to review, audit, or check a transform for correctness, performance, or API consistency.
After completing code changes, runs tests and pre-commit, then iteratively fixes failures until all pass. Use when finishing a coding task, validating changes, or when the user asks to run tests or fix errors.
Run performance benchmarks for transform changes. Use when the user asks to benchmark, measure performance, compare speed, or when changes affect apply methods, functional layer, get_params, or core pipeline code.
Quality bar for docstrings in albumentations. Use when writing or updating docstrings in albumentations/, especially for transforms and public APIs.
Use the repo `_internal/` directory for anything that must not be committed — scratch files, temporary outputs, local demos, Codex artifacts, or one-off scripts. Use when creating temp files, debug dumps, or local-only tooling during a task.
| name | license-integrity |
| description | Maintain AlbumentationsX license, CLA, provenance notices, and packaged legal artifacts consistently. |
Use this skill for any change to LICENSE, CLA.md, license history,
third-party notices, package license metadata, contributor acceptance language,
or public repository license wording.
Read these files completely before editing:
docs/maintaining/license-provenance.mdLICENSELICENSING.mdTHIRD_PARTY_NOTICES.mdCLA.mdlegal/cla/archive/MANIFEST.mdAGPL-3.0-only.LICENSE byte-identical to the complete canonical GNU AGPL version 3
text; keep the repository expression and commercial-license path in
LICENSING.md.Run the focused checks first:
uv run python tools/verify_legal_integrity.py
uv run pytest -q tests/test_legal_integrity.py
artifact_dir="$(mktemp -d)"
uv build --out-dir "${artifact_dir}"
uv run python tools/verify_legal_integrity.py --artifacts "${artifact_dir}"/*.whl "${artifact_dir}"/*.tar.gz
uv run twine check "${artifact_dir}"/*
Then run the repository quality gate required by the surrounding change.