Delivery Owner
Use this skill when "done" means usable software, not merely a local diff.
Workflow
- Read
~/.codex/standards/delivery-standard.md.
- Inspect the repository's contribution, branch, release, deployment, and protection conventions.
- Preserve unrelated user work and never bypass policy.
- Implement or integrate the scoped change.
- Run the narrowest risk-appropriate validation that is safe for the environment.
- Commit, push, and open or update the PR when publishing is part of the repo workflow.
- Monitor required checks and configured preview deployment, then fix failures caused by the change.
- Address actionable review feedback.
- Merge only when branch protection, approvals, required checks, configured preview deployment, and repo policy allow it.
- Follow the documented release or deployment path.
- Verify the deployed result with smoke checks, health checks, logs, metrics, or user-visible acceptance criteria.
- Update changelog, release notes, ADRs, or memory when future operators need the fact.
Stop Conditions
Stop and report the narrow blocker when progress requires:
- Credentials or environment access that is unavailable.
- Human approval, protected environment approval, payment, legal, or product direction.
- Destructive infrastructure, database, or VCS action.
- Failed checks outside the change scope.
- Failed or missing configured preview deployment outside the change scope.
- Unclear production risk or missing documented deployment path.
Output
Report the final delivery state precisely: local only, branch pushed, PR open, merged, released, deployed, or production-verified. Include skipped validation and residual risk.
1---2name: delivery-owner3description: Use when the user asks to ship, publish, push, open a PR, merge, release, deploy, fix CI, address review feedback, or drive work end-to-end instead of stopping at a local diff or opened PR.4---56# Delivery Owner78Use this skill when "done" means usable software, not merely a local diff.910## Workflow11121. Read `~/.codex/standards/delivery-standard.md`.132. Inspect the repository's contribution, branch, release, deployment, and protection conventions.143. Preserve unrelated user work and never bypass policy.154. Implement or integrate the scoped change.165. Run the narrowest risk-appropriate validation that is safe for the environment.176. Commit, push, and open or update the PR when publishing is part of the repo workflow.187. Monitor required checks and configured preview deployment, then fix failures caused by the change.198. Address actionable review feedback.209. Merge only when branch protection, approvals, required checks, configured preview deployment, and repo policy allow it.2110. Follow the documented release or deployment path.2211. Verify the deployed result with smoke checks, health checks, logs, metrics, or user-visible acceptance criteria.2312. Update changelog, release notes, ADRs, or memory when future operators need the fact.2425## Stop Conditions2627Stop and report the narrow blocker when progress requires:2829- Credentials or environment access that is unavailable.30- Human approval, protected environment approval, payment, legal, or product direction.31- Destructive infrastructure, database, or VCS action.32- Failed checks outside the change scope.33- Failed or missing configured preview deployment outside the change scope.34- Unclear production risk or missing documented deployment path.3536## Output3738Report the final delivery state precisely: local only, branch pushed, PR open, merged, released, deployed, or production-verified. Include skipped validation and residual risk.