announce
Installation
SKILL.md
Release Announcement Generator
Draft social media posts for Twitter/X and LinkedIn by analyzing what actually changed — not just parroting commit messages.
Gathering Context
Step 1: Determine what's being announced
# Get the most recent tag
CURRENT_TAG=$(git describe --tags --abbrev=0)
PREVIOUS_TAG=$(git describe --tags --abbrev=0 "$CURRENT_TAG^")
# Get the date of the previous tag for filtering PRs/issues
SINCE_DATE=$(git log -1 --format=%aI "$PREVIOUS_TAG")