Agent Skills
› cobusgreyling/loop-engineering
› changelog-scan
changelog-scan
GitHub扫描自上次发布以来的合并项,提取PR标题、类型、标签及破坏性/安全信号。过滤无关提交,输出结构化数据供发布说明生成器使用,并附带统计摘要与后续行动建议。
触发场景
需要生成版本更新日志时
执行 changelog-drafter 循环流程时
安装
npx skills add cobusgreyling/loop-engineering --skill changelog-scan -g -y
SKILL.md
Frontmatter
{
"name": "changelog-scan",
"description": "Scan recent merges to main (and noteworthy direct commits) since a given window (last tag or date in state). Extract titles, labels, types, linked issues, and signals for breaking changes or security. Produces structured input for a release notes drafter. Use in changelog-drafter loops.\n",
"user_invocable": true
}
Changelog Scan Skill
Inputs the loop will provide
- Last release tag or previous run timestamp (from state or git)
- Current date / "now"
- Any explicit "since" override
Output Format (one block per significant item)
### PR #1234 — feat(auth): add magic link login (merged 2026-06-08)
- Type: feature
- Labels: enhancement
- Breaking: no
- Security: no
- Linked: #1220
- Summary (one sentence from PR or commit): Users can now log in via emailed magic links.
- Files touched (high level): auth/, emails/
Rules for what to include:
- All merged PRs to main in the window.
- Direct commits on main that look user-facing (conventional commit feat/fix/perf/security or have linked issues).
- Ignore pure dependency bumps, internal chores, and bot PRs unless they are security-related (those are handled by dependency-sweeper).
Additional Signals to Surface
- Any PR or commit message containing "BREAKING", "breaking change", or
!conventional commit. - Security-related keywords or labels (CVE, vuln, security).
- Items with "deprecate" or "remove" language.
Output Summary Section (always at end)
## Scan Summary
- Total items: N
- Features: N
- Fixes: N
- Breaking: N (list them)
- Security: N (list them)
- Recommended next action for loop: draft-release-notes | human review needed first | too many items — split window
Be precise and cite sources (PR numbers / shas). Do not invent details.
版本历史
- e55bb6d 当前 2026-07-05 11:06


