用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/Doezer/Questarr --skill release-notes命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Investigate a Questarr GitHub issue by pulling the linked log entry from the private Doezer/Questarr-logs repo and cross-referencing it against the codebase
Report which CVEs were fixed in each Questarr release by diffing package-lock.json across version tags and checking OSV.dev
基于 SOC 职业分类
正在显示 SKILL.md
| name | release-notes |
| description | Generate formatted release notes from git commits since the last tag and prepend them to CHANGELOG.md |
| disable-model-invocation | false |
Run git log $(git describe --tags --abbrev=0)..HEAD --oneline --no-merges to get commits since the last tag.
Determine the new version from the current release/* branch name (e.g. release/1.3.0 → 1.3.0).
Get today's date in YYYY-MM-DD format.
Group commits by type using these categories (skip merge commits and anything without meaningful user impact):
feat: commitsfix: commitschore:, refactor:, perf:, update:, deps: commitsFormat the output as a markdown changelog section:
## [VERSION] - DATE
### Added
- ...
### Fixed
- ...
### Changed
- ...
Omit sections that have no entries. Write bullet points in plain English (no commit hashes), and mention PR numbers where present.
Read docs/CHANGELOG.md, then prepend the new section immediately after the # Changelog header line (before the first existing ## [...] section), and write the file back.
Display the generated section to the user.