final-release-review

Installation
SKILL.md

Final Release Review

Purpose

Use this skill when validating the latest release candidate commit (default tip of origin/main) for release. It guides you to fetch remote tags, pick the previous release tag, and thoroughly inspect the BASE_TAG...TARGET diff for breaking changes, introduced bugs/regressions, improvement opportunities, and release risks.

The review must be stable and actionable: avoid variance between runs by using explicit gate rules, and never produce a BLOCKED call without concrete evidence and clear unblock actions.

Quick start

  1. Ensure repository root: pwdpath-to-workspace/openai-agents-python.
  2. Sync tags and pick base (default v*):
    BASE_TAG="$(.agents/skills/final-release-review/scripts/find_latest_release_tag.sh origin 'v*')"
    
  3. Choose target commit (default tip of origin/main, ensure fresh): git fetch origin main --prune then TARGET="$(git rev-parse origin/main)".
  4. Snapshot scope:
    git diff --stat "${BASE_TAG}"..."${TARGET}"
    
Related skills

More from openai/openai-agents-python

Installs
98
GitHub Stars
26.2K
First Seen
Jan 24, 2026