원클릭으로
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.