소스 정보
- 저장소
- DataDog/datadog-agent
- 최근 소스 활동
- 2026년 7월 16일 18:42
- 감지된 SKILL.md 언어
- 영어
- 스타
- 3,724
- 포크
- 1,485
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/DataDog/datadog-agent --skill create-release-note명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | create-release-note |
| description | Create a reno release note for a PR or change |
| allowed-tools | Bash, Read, Write, Edit, Glob, Grep, AskUserQuestion |
| argument-hint | [topic] |
| model | sonnet |
Create a release note file using the reno format. Release notes are mandatory for all PRs unless labeled changelog/no-changelog.
Use AskUserQuestion to collect the following. If $ARGUMENTS provides the topic, skip that question.
Topic: A short kebab-case identifier for the change (e.g. fix-ntp-timeout, add-gpu-metrics). Used in the filename.
Section: Which section does this change belong to?
features — New functionality (e.g. "Add support for GPU metrics collection")enhancements — Small improvements to existing features (e.g. "Improve log rotation performance")fixes — Bug fixes (e.g. "Fix memory leak in forwarder")deprecations — Deprecation notices (e.g. "Deprecate log_enabled in favor of logs_enabled")upgrade — Breaking changes requiring user action (must include steps for users to identify if affected)security — Security fixes or improvementsissues — Known issues or limitationsother — Miscellaneous (rarely used)Content: A user-facing description of the change. This is read by customers, not developers. Ask the user to describe what changed and why.
Target: Which release notes directory?
releasenotes/notes/ — Main agent (default, most common)releasenotes-dca/notes/ — Cluster Agent (DCA)APM-related?: If the change affects cmd/trace-agent or pkg/trace, the content must be prefixed with APM : and the topic should be prefixed with apm-.
Generate the file using reno:
reno new <topic> --no-edit
Or for non-default directories:
reno --rel-notes-dir <directory> new <topic> --no-edit
This creates a file at <directory>/notes/<topic>-<hash>.yaml with a template.
Always create the file with
reno. The<hash>suffix is reno's unique note ID — it must be a real, unique 16-character hex string thatrenogenerates for you. Never hand-write a placeholder likea1b2c3d4e5f6a7b8or any sequential/guessed value: reno treats the suffix as the note's UID and failsrelease-note-checkwith a "UID collision" when two notes share one (this placeholder has brokenmainmore than once).If
renois not installed, install it rather than creating the file by hand:pip install reno(see the contributing guide). Only if you genuinely cannot install it, generate a real random suffix withopenssl rand -hex 8and name the file<topic>-<hash>.yaml— never a placeholder.
Then replace the template content with only the relevant section. Remove all unused sections (don't leave them commented out — reno template comments are noisy).
Final file format:
---
<section>:
- |
Description of the change written for end users.
Can span multiple lines.
Release note content must follow these rules:
ReStructuredText (RST) format, NOT Markdown:
`link text <https://example.com>`_ (NOT [text](url))**text**``code`` (double backticks, NOT single).. code-block:: <lang> directiveUser-facing language: Write for Datadog customers, not developers. Describe the impact, not the implementation.
Self-contained: Each note must be readable independently. Don't reference other release notes.
For APM changes: Prefix with APM : (e.g. APM : Fix trace sampling rate calculation).
Multiple items: Use separate list items in the same section:
fixes:
- |
Fix memory leak when collecting Docker container metrics.
- |
Fix panic in log agent when file is rotated during read.
Run the release note linter to validate:
dda inv linter.releasenote
This checks:
[text](url), headers #, or single-backtick codeIf linting fails, fix the issues and re-run.
| Section | When to use | Example |
|---|---|---|
features | Wholly new capabilities | "Add Windows support for the Process Agent" |
enhancements | Improvements too small to be features | "Add PDH data to Windows flare" |
fixes | Bug fixes | "Fix EC2 tags collection with multiple marketplaces" |
deprecations | Deprecation notices | "The log_enabled config option is deprecated, use logs_enabled" |
upgrade | Breaking changes needing user action | "The --config flag format has changed. Users must update..." |
security | Security fixes | "Enforce bearer token authentication for API endpoints" |
issues | Known issues | "Kubernetes 1.3 is not fully supported in this release" |
other | Misc (rarely used) | "Update internal CI tooling" |
changelog/no-changelog label)/create-release-note — Interactive: prompts for all details/create-release-note fix-ntp-timeout — Pre-fills the topicMonitor the current PR's GitLab pipeline to completion, then report success or investigate a failure. Use when the user asks to follow, babysit, watch, or wait on a PR/pipeline, or just after pushing to / creating a PR.
Classify a failed CI as either caused by an active incident, flakiness, or a true code regression. Use when a PR's pipeline is red and it isn't obvious whether the PR's own changes are at fault. Trigger phrases include: - "investigate this CI failure" - "please fix CI" - "why did this job fail" - "is there an incident affecting CI" - "should I retry this" This should also be invoked whenever the user asks you to investigate _or fix_ a failing CI, to ensure we don't spend hours trying to fix something broken upstream.
Write or extend Datadog Agent new-e2e tests, including fakeintake coverage and the GitLab wiring that runs them; derives scope from the current diff when no target is named. Not for running tests that already exist (run-e2e, run-windows-e2e), or for judging whether a behavior belongs in E2E at all (e2e-audit).