releasenote
Helps developers create standardized release notes fragments for the dd-trace-py project.
Install
mkdir -p .claude/skills/releasenote && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3572" && unzip -o skill.zip -d .claude/skills/releasenote && rm skill.zipInstalls to .claude/skills/releasenote
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
Decide whether a release note is needed, and if so create or update a Reno fragment, following dd-trace-py's conventions (docs/releasenotes.rst).Key capabilities
- →Determine if a release note is required for a code change
- →Generate a Reno fragment skeleton
- →Edit the generated YAML to include relevant sections
- →Verify facts against the code
- →Write customer-visible symptoms for fixes
How it works
This skill analyzes code changes and project conventions to determine if a release note is needed, then generates and helps edit a Reno fragment.
Inputs & outputs
When to use releasenote
- →Creating release notes for bug fixes
- →Documenting breaking changes
- →Managing release fragments
- →Updating project changelogs
About this skill
Decide if a note is needed
Required: breaking API change, new feature, bug fix, deprecation, dependency upgrade — if it's customer-impacting. Not required: CI chores, internal-only/not-yet-released API changes, test-only changes.
If customer impact is unclear, ask the user what the customer impact is. Never guess —
unless the PR/issue/ticket you were given already states it. If no note is needed, say so and
suggest the changelog/no-changelog PR label instead.
Audience
The note is for a customer upgrading dd-trace-py — never for a dd-trace-py contributor. It is not a PR summary. Internal rationale, implementation detail, and CI/test notes go in the PR description, not here.
Before writing
- If the category (
features/fixes/upgrade/deprecations/issues/api/security/other) isn't given, ask. - Check for an existing fragment on the same topic, scoped to your current branch's own
unmerged changes:
git diff --name-only <base>...HEAD -- releasenotes/notes/, where<base>is the branch you're merging into (usuallyorigin/main; use the actual base if this branch forked off a release branch instead). Only reuse a fragment from that diff — one already on the base branch may already be released; create a new fragment instead of editing a shipped one. - Read the PR/commit diff for ground truth, but translate it — don't copy engineering language.
Write the note
Generate the skeleton: riot run reno new <slug> (slug: lowercase, hyphenated, e.g.
fix-aioredis-catch-canceled-error). Edit the generated YAML, keeping only the section(s)
that apply — one Reno fragment per change.
Format: <scope>: <sentence(s)>. Scope is the component name (see
:ref:release_notes_scope in docs/releasenotes.rst — tracing, profiling, ASM,
dynamic instrumentation, CI visibility, or the integration name). Use internal when the
change genuinely isn't tied to one product (e.g. core threading/fork-safety affecting several
products) — that's a legitimate scope, not a placeholder for when you didn't pick one.
Fix — state the customer-visible symptom, not the root cause, in present tense:
Fixes an issue where <symptom> occurs when <condition>.
Feature/behavior change — if it's configurable or changes a default, state the exact env var / config option / argument and what it does. Don't skip this when a toggle exists.
Never include: internal function/class names, internal tag prefixes (_dd.*),
RFC/JIRA/ticket numbers, CI job names, draft leftovers (TODO, XXX, unfinished sentences),
or "why we built it this way" rationale.
Length: 1-2 sentences. Longer only to show a code example for a new public API.
Verify facts against the code, not the PR title — defaults and numbers drift.
Examples
Good (fix):
fixes:
- |
profiling: Fixes inconsistent handling of ``DD_PROFILING_MAX_FRAMES`` by clamping it
before stack collection so samples stay within the backend's 600-location limit.
Good (feature, toggle):
features:
- |
AI Guard: Adds per-integration kill switches ``DD_AI_GUARD_ANTHROPIC_ENABLED`` and
``DD_AI_GUARD_LANGCHAIN_ENABLED`` (default ``true``). Set to ``false`` to disable AI
Guard for that provider/framework.
Bad → good rewrite (internal scope is fine here — not product-specific; the fix is the wording):
# Bad: internal mechanism, no customer symptom
fixes:
- |
internal: Fixed a GC reference-cycle leak in PeriodicThread.
# Good
fixes:
- |
internal: Fixes a memory leak that causes memory usage to grow over time in
long-running processes using background periodic tasks.
When not to use it
- →When documenting CI chores
- →When documenting internal-only API changes
- →When documenting test-only changes
Limitations
- →The note is for a customer upgrading dd-trace-py, not a contributor
- →Internal rationale, implementation detail, and CI/test notes go in the PR description, not here
- →Never include internal function/class names, internal tag prefixes, RFC/JIRA/ticket numbers, CI job names, draft leftovers, or 'why we built it this way' rationale
How it compares
This skill automates the process of creating and formatting release notes according to specific project conventions, unlike manually drafting notes which can lead to inconsistencies.
Compared to similar skills
releasenote side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| releasenote (this skill) | 1 | 27d | No flags | Beginner |
| pr-draft-summary | 3 | 4mo | No flags | Beginner |
| codex-cli-bridge | 9 | 9mo | Review | Intermediate |
| mflux-release | 1 | 5mo | No flags | Beginner |
Try saying
Example prompts that trigger this skill in your AI assistant.
More by DataDog
View all by DataDog →You might also like
pr-draft-summary
openai
Create a PR title and draft description after substantive code changes are finished. Trigger when wrapping up a moderate-or-larger change (runtime code, tests, build config, docs with behavior impact) and you need the PR-ready summary block with change summary plus PR draft text.
codex-cli-bridge
alirezarezvani
Bridge between Claude Code and OpenAI Codex CLI - generates AGENTS.md from CLAUDE.md, provides Codex CLI execution helpers, and enables seamless interoperability between both tools
mflux-release
filipstrand
Prepare a release in mflux (version bump, changelog, uv lock) without tagging/publishing.
code-changelog
bear2u
AI가 만든 모든 코드 변경사항을 reviews 폴더에 기록하고 간단한 HTML 뷰어로 웹 브라우저에서 실시간 확인할 수 있습니다. 매 수정마다 문서가 생성되고 Python 서버로 즉시 확인 가능합니다.
docstring
pytorch
Write docstrings for PyTorch functions and methods following PyTorch conventions. Use when writing or updating docstrings in PyTorch code.
report-research
numerai
Write a complete Numerai experiment report in experiment.md (abstract, methods, results tables, decisions, next steps) and generate/link the standard show_experiment plot(s). Use after running any Numerai research experiments, or when a user asks for a “full report”, “write up”, “experiment.md update”, or “generate the standard plot”.