Skip to main content

generate-release-notes

Generate OpenVINO GenAI release notes from commits since the latest release. Use when: preparing release notes, summarizing a release branch, or comparing the latest release tag with the current release branch.

跳到安装

来源信息

仓库
openvinotoolkit/openvino.genai
最近来源活动
2026年9月4日 14:48
检测到的 SKILL.md 语言
英语
星标
588
分支
450

安装方式

默认使用会先检查来源的 Prompt;你也可以切换为直接命令,或下载本地副本。

检查来源文件

决定是否安装前,请先阅读 SKILL.md,以及 SkillsMP 当前展示的配套文件。

文件资源管理器
2 个文件

正在显示 SKILL.md

SKILL.md
来源说明 · 只读预览
name
generate-release-notes
description
Generate OpenVINO GenAI release notes from commits since the latest release. Use when: preparing release notes, summarizing a release branch, or comparing the latest release tag with the current release branch.
# Generate Release Notes Generates release notes for `openvinotoolkit/openvino.genai` from commits added after the latest release tag and writes them to a Markdown file. ## Procedure ### Step 1: List Release Commits Run the bundled script from the repository root: ```bash bash .github/skills/generate-release-notes/list_release_commits.sh ``` ### Step 2: Check Out the Release Branch Read the `Current release branch` reported by the script and remove the `upstream/` prefix to get the local release branch name. For example, use `releases/2026/4` for `upstream/releases/2026/4`. Check out the local release branch: ```bash git checkout <release-branch> ``` If checkout fails for any reason, stop immediately without creating or modifying the release notes. Ask the user to check out the release branch cleanly, then rerun this skill. ### Step 3: Generate Release Notes If a commit subject does not provide enough information, inspect the currently checked-out release branch's source code, public APIs, tests, bindings, samples, or documentation to prepare an accurate description. Group commits into categories: - Features - LLM Bench, WWB Tools - JS Bindings - Other Changes - Docs Updates - Discontinued - Deprecated Create a Markdown file named `release_notes_YYYY.N.md` with the following template: ```markdown # OpenVINO™ GenAI Release Notes YYYY.N ## Features ## LLM Bench, WWB Tools ## JS Bindings ## Other Changes ## Docs Updates ## Discontinued ## Deprecated ```
在 GitHub 查看