Automate GitHub release workflows including version management, CHANGELOG updates, PR creation, and GitHub Release publishing for multi-agent-ff15.
Installation
Installer avec Codex ou Claude Copiez ce prompt, collez-le dans Codex, Claude ou un autre assistant, puis laissez-le vérifier la page du skill et l'installer pour vous.
Automate GitHub release workflows including version management, CHANGELOG updates, PR creation, and GitHub Release publishing for multi-agent-ff15.
GitHub Release Automation
Automate the release process for multi-agent-ff15. The actual GitHub Release (tag + release notes) is created by GitHub Actions after the release branch is merged into main.
Overview
Version Management: Manage version in package.json
CHANGELOG Automation: Generate and update CHANGELOG.md with proper formatting
PR Workflow: Create a release branch, open a PR, merge into main
GitHub Actions: Trigger the "Release" workflow to create the tag and GitHub Release
Workflow Pattern
Phase 1: Local Preparation (on release/vX.Y.Z branch)
Create release branch from main:
git checkout main && git pull
git checkout -b release/vX.Y.Z
Note: create_release.py is superseded by GitHub Actions. Use the Actions workflow for all GitHub Release creation.
Mandatory Rules (MUST follow)
NEVER work on main directly — All version bumps and CHANGELOG updates go on a release/vX.Y.Z branch. Direct push to main is prohibited.
ALWAYS review CHANGELOG.md after script update — Inspect formatting, section headers, blank lines, and link references before committing.
Trigger GitHub Actions AFTER the PR is merged — The "Release" workflow reads from main, so it must be run only after the release branch is merged.
ALWAYS confirm the next version with the user if it was not explicitly specified — Never infer or auto-select the release version from package.json, tags, CHANGELOG, or branch state. If the user says "release it" without clearly naming the next version, stop and ask which version should be released before performing any release action.
Only use a version automatically when the user explicitly provided it — Examples: release 0.8.1, publish v1.2.0, or bump patch and release. Otherwise, confirmation is mandatory.
Requirements
Python 3
GitHub CLI (gh) installed and authenticated
package.json in the root (used for version tracking)
CHANGELOG.md with entries in the format ## [X.Y.Z] - YYYY-MM-DD