用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/microsoft/dbt-fabricspark --skill generate-changelog命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | generate-changelog |
| description | Generate a succinct CHANGELOG.md entry from PR descriptions since the last version bump. |
Produce a concise, user-facing changelog entry for the current version by summarizing merged PR descriptions.
Check for the raw changelog — verify that .temp/VERSION_CHANGELOG_FULL.md exists in the repo root:
test -f .temp/VERSION_CHANGELOG_FULL.md
If it does not exist, stop and tell the user:
The raw PR changelog has not been generated yet. Run this first:
npm run get-version-diffsThen re-invoke this skill.
Read the raw changelog — open .temp/VERSION_CHANGELOG_FULL.md. Each entry has the format:
# <short sha>: <commit title>
<PR description body>
---
Filter out sentinel commits — skip any entry whose commit title matches the pattern ci: sentinel commit. These are CI verification commits with no user-facing changes.
Read the current version — get the version string from:
cat src/dbt/adapters/fabricspark/__version__.py
The file contains a single line like version = "1.9.6". Extract the version number (e.g., 1.9.6).
Summarize into a changelog entry — from the remaining (non-sentinel) PR descriptions, write a succinct changelog section. Follow these guidelines:
### Bug Fixes, ### New Features, ### Improvements)(#42))CHANGELOG.mdPrepend to CHANGELOG.md — insert the new section immediately below the # Changelog heading in CHANGELOG.md, above all existing version sections. The format is:
## v<version>
<your summarized content>
---
Keep the existing content intact below the new section.
Report completion — show the user the new section you added and confirm the file was updated.