Add ort-release-notes skill to draft release notes - #31614
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Adds a new ort-release-notes agent skill and supporting preset/path configuration to streamline drafting consistent ONNX Runtime release notes (full ORT or scoped component releases), plus lightweight documentation pointers.
Changes:
- Introduces the
.agents/skills/ort-release-notesskill documentation and preset configuration (presets.json). - Adds a WebGPU Plugin EP path-scope file (
plugin-ep-webgpu/paths.txt) and documents it in the WebGPU plugin EP README. - Adds a small docs entry point describing where the workflow/presets live (
docs/ReleaseNotesWorkflow.md).
Reviewed changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 2 comments.
Show a summary per file
| File | Description |
|---|---|
plugin-ep-webgpu/README.md |
Documents the new WebGPU EP paths.txt scope file for release-note generation. |
plugin-ep-webgpu/paths.txt |
Adds a path filter list intended for scoped contributor/release-note metadata generation. |
docs/ReleaseNotesWorkflow.md |
Adds a docs entry point that directs maintainers to the skill and presets. |
.agents/skills/ort-release-notes/SKILL.md |
Defines the release-notes drafting workflow and PowerShell command patterns. |
.agents/skills/ort-release-notes/presets.json |
Adds preset definitions (full ORT + WebGPU plugin EP) and output defaults. |
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 6 out of 6 changed files in this pull request and generated no new comments.
Suppressed comments (1)
tools/python/compile_contributors.py:371
--paths-filereading only catchesOSError, but a non-UTF-8 (or otherwise undecodable) file will raiseUnicodeDecodeErrorand crash the script with a traceback. Since this is user-facing CLI input, it should be surfaced as a clean argparse error like other file-read failures.
if args.paths_file:
try:
selected_paths.extend(read_pathspecs_file(args.paths_file))
except OSError as e:
parser.error(f"Could not read --paths-file '{args.paths_file}': {e}")
tianleiwu
approved these changes
Aug 5, 2026
tianleiwu
left a comment
Contributor
There was a problem hiding this comment.
LGTM.
I can update the still to support cuda plugin ep later.
Add an ort-release-notes skill with preset configuration, scoped path support, and a concise workflow for metadata generation and draft output. Include a lightweight docs entry point, WebGPU scoped paths file, and README note for scoped release-note generation. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 3611670d-4e92-4183-8e0e-b2cb659ab624
Add a --paths-file option to compile_contributors.py so scoped release-note presets can pass root-anchored git pathspecs without shell parsing. Document the workflow update and anchor the WebGPU scoped paths at repository root. Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
edgchen1
force-pushed
the
edgchen1/release_notes_skill
branch
from
August 5, 2026 18:55
66f5cea to
24537c9
Compare
edgchen1
enabled auto-merge (squash)
August 5, 2026 22:20
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Add an
ort-release-notesskill with preset configuration, scoped path support, and a concise workflow for metadata generation and draft output.Also include a lightweight docs entry point and WebGPU EP scoped paths file.
Motivation and Context
Make it easier for AI to generate release note drafts.