code-delivery-reviewlisted
Install: claude install-skill lifei6671/code-delivery-review-skill
# Code Delivery Review
Treat implementation completion and delivery completion as different states. Apply this completion protocol from the start of an authorized coding task; it is not a general code-review tool.
A **delivery unit** begins with a coding task and ends when that task is delivered as one complete result. It may span conversation turns, user clarifications, pauses, delegated implementation, and context compaction. Split a request into multiple delivery units only when each unit can be implemented, verified, reviewed, and delivered independently.
```text
DeliveryComplete =
ImplementationComplete
AND RequiredVerificationSatisfied
AND DeliveryUnitChangeFrozen
AND ReviewPassed
AND ReviewCoverageComplete
AND ReviewedStateMatchesFinalState
AND NoBlockingFindings
```
`REVIEW_WAIVED_BY_USER` is a separate terminal status, not approval and not `DeliveryComplete` under this contract.
## Keep the boundary narrow
Review only the **delivery-owned** implementation and delivery-relevant artifacts for the current delivery unit. Delivery-owned content includes task-related changes produced by the implementing agent and changes that the user or another collaborator explicitly contributes to or incorporates into the same delivery unit. Preserve and exclude pre-existing user work and unrelated concurrent changes.
Do not repurpose this skill to review an arbitrary branch, commit, commit range, pull request, supplied patch, exported snapshot, or another actor's u