This skill should be used when announcing a new release. It parses CHANGELOG.md, generates a summary, and creates a GitHub Release. Discord notification is handled automatically by CI on release publish.
From soleurnpx claudepluginhub jikig-ai/soleur --plugin soleurThis skill uses the workspace's default tool permissions.
Manual fallback only. The
version-bump-and-release.ymlGitHub Action now handles version bumping and GitHub Release creation automatically at merge time. This skill is only needed if the Action fails or for manual re-announcements of existing versions.
Purpose: Generate a release announcement from CHANGELOG.md and create a GitHub Release. Discord notification is handled by the release-announce GitHub Actions workflow, triggered automatically when the release is published.
Read the current version from plugins/soleur/.claude-plugin/plugin.json:
Read plugins/soleur/.claude-plugin/plugin.json and extract the version field value.
Extract the ## [<version>] section from plugins/soleur/CHANGELOG.md. Parse from the ## [<version>] heading to the next ## [ heading (exclusive). If no matching section exists, error with "Changelog section for v<version> not found" and stop. Replace <version> with the actual version from step 1.
Generate a detailed summary of the extracted changelog section:
Check if a release for this version already exists:
gh release view "v<version>" 2>/dev/null
Replace <version> with the actual version number (e.g., 2.32.1).
If the release already exists: warn "Release v<version> already exists, skipping" and stop.
Create the release:
gh release create "v<version>" --title "v<version>" --notes "<full summary>"
If the command fails: warn with the error message.
Report results:
DISCORD_WEBHOOK_URL repository secret)