release-notes
$
npx mdskill add cloudflare/agents/release-notesTurn implementation details into user-facing release notes.
SKILL.md
.github/skills/release-notesView on GitHub ↗
---
name: release-notes
description: Draft short release notes from a list of changes. Use when the user asks for changelogs, release notes, or a concise product update.
---
# Release Notes
Turn implementation details into user-facing release notes.
## Process
1. Identify the user-facing outcome.
2. Group related implementation details into one bullet.
3. Avoid internal file names unless the user asks for engineering notes.
4. Keep the tone factual and concise.
When the user provides a rough list of changes, run
`scripts/format-release-notes.ts` with `{ "changes": [...] }` to create a first
draft, then polish the wording for the user's audience. The TypeScript script
is function-style (`export default run(input, ctx)`) and demonstrates reading
`references/style-guide.md` from `ctx.files`.
## Output format
Use this structure:
```md
## Summary
- One to three bullets describing what changed.
## Notes
- Optional caveats, migration details, or follow-up work.
```
If the input is too vague, ask for the target audience and the release scope.
More from cloudflare/agents
- code-reviewReview code changes for correctness, clarity, and risk. Use when the user asks for a review, a second opinion on a diff, or feedback on code they wrote.
- debug-planCreate a systematic debugging plan for a bug report. Use when the user asks how to investigate a failure, regression, or unexpected behavior.
- escalationDecide when and how to escalate a customer conversation to a human agent. Use when a request is high-risk, the customer is frustrated, or the issue is outside what you can resolve.
- pirate-voiceRewrite or answer in a playful pirate voice. Use when the user asks for pirate tone, nautical phrasing, or says to talk like a pirate.
- test-planProduce a focused test plan for a change. Use when the user asks how to test a feature, what cases to cover, or for a QA checklist before shipping.
- workspace-digestSummarize the files saved in this assistant's shared workspace. Use when the user asks what is in their workspace, for a file inventory, or a digest of saved work.