plugins/release-notes/SKILL.md
Generate consistent, well-structured release notes from git history. Triggered on release tags following semver patterns (v*.*.*) to produce categorized changelog with breaking changes, features, fixes, and contributor attribution.
npx skillsauth add openhands/extensions release-notesInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automates the generation of standardized release notes for OpenHands repositories using an OpenHands agent. The agent reviews the release range, judges significance, groups related PRs, and produces concise markdown for GitHub releases or changelogs.
### 🔎 Small Fixes/Internal Changes section grouped by author when needed so every PR and author in the release range is still listed somewhere in the final markdownCopy the workflow file to your repository:
mkdir -p .github/workflows
curl -o .github/workflows/release-notes.yml \
https://raw.githubusercontent.com/OpenHands/extensions/main/plugins/release-notes/workflows/release-notes.yml
PowerShell equivalent:
New-Item -ItemType Directory -Force .github\workflows | Out-Null
Invoke-WebRequest `
-Uri https://raw.githubusercontent.com/OpenHands/extensions/main/plugins/release-notes/workflows/release-notes.yml `
-OutFile .github\workflows\release-notes.yml
Configure required secrets (see the README for details).
Use the /release-notes trigger in an OpenHands conversation to generate release notes for the current repository.
Generated release notes follow this structure:
## [v1.2.0] - 2026-03-06
### ⚠️ Breaking Changes
- Remove deprecated `--legacy` CLI flag (#456) @maintainer
### ✨ New Features
- Add support for Claude Sonnet 4.6 model (#445) @contributor1
### 🐛 Bug Fixes
- Fix WebSocket reconnection on network interruption (#451) @contributor3
### 📚 Documentation
- Update installation guide (#442) @contributor2
### 👥 New Contributors
- @contributor3 made their first contribution in #451
**Full Changelog**: https://github.com/org/repo/compare/v1.1.0...v1.2.0
Changes are categorized based on:
feat:, fix:, docs:, chore:, BREAKING:breaking-change, bug, enhancement, documentation| Category | Commit Prefixes | PR Labels |
|----------|-----------------|-----------|
| Breaking Changes | BREAKING:, !: suffix | breaking-change, breaking |
| Features | feat:, feature: | enhancement, feature |
| Bug Fixes | fix:, bugfix: | bug, bugfix |
| Documentation | docs: | documentation, docs |
| Internal | chore:, ci:, refactor:, test: | internal, chore, ci |
See the README for full configuration options and workflow setup instructions.
tools
Iterate on a GitHub pull request — drive it through CI, code review, and QA until it is merge-ready. Poll verification layers with `gh` CLI, diagnose and fix CI failures, address review feedback, retry flaky checks, push fixes, and repeat. The agent is the orchestration loop.
development
Guides technical explanations toward flowing, direct, conversational prose. This skill should be used for engineering chat, design discussion, architecture analysis, code-review explanations, and technical recommendations that should be concise without becoming fragmented or vague.
tools
This skill should be used when the user asks to "set up a Jira automation to create pull requests", "poll Jira for create-pr issues", "automatically create GitHub PRs from Jira tickets", "deploy a Jira issue-to-PR automation", "create a Jira to GitHub PR workflow", or mentions automating GitHub PR creation from a Jira label. Deploys a cron-based OpenHands automation that watches a Jira Cloud project for issues labeled with a configurable label (default: "create-pr") and spawns an agent conversation to create a GitHub pull request for each new issue found. The target GitHub repository is read from the body of the Jira ticket - no repo parameter is required at deploy time.
tools
This skill should be used when the user asks to "create an automation", "schedule a task", "set up a cron job", "webhook integration", "event-triggered automation", or mentions automations, scheduled tasks, cron scheduling, or webhook events in OpenHands Cloud.