一键导入
changelog
Use when generating or updating a CHANGELOG.md file, writing release notes, or summarizing changes between versions based on git commits or PR history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when generating or updating a CHANGELOG.md file, writing release notes, or summarizing changes between versions based on git commits or PR history.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Configure Aspire AppHost to emit explicit app config via environment variables; keep app code free of Aspire clients and service discovery.
Write integration tests using .NET Aspire's testing facilities with xUnit. Covers test fixtures, distributed application setup, endpoint discovery, and patterns for testing ASP.NET Core apps with real dependencies.
Test email sending locally using Mailpit with .NET Aspire. Captures all outgoing emails without sending them. View rendered HTML, inspect headers, and verify delivery in integration tests.
Provides guidance for implementing OpenTelemetry instrumentation in .NET codebases, covering tracing (Activities/Spans), metrics, naming conventions, error handling, performance, and API design best practices.
GitHub Copilot Agent Skills catalog from awesome-copilot repository. Trigger: When user wants to browse, search, or use Agent Skills from the awesome-copilot collection.
Use when reviewing code changes, pull requests, or diffs. Provides a structured review framework covering correctness, security, performance, readability, and test coverage.
| name | changelog |
| description | Use when generating or updating a CHANGELOG.md file, writing release notes, or summarizing changes between versions based on git commits or PR history. |
Follow keepachangelog.com conventions:
# Changelog
All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.2.0] - 2025-03-15
### Added
- New feature X for users who need Y
### Changed
- Behavior of Z now does W instead of V
### Deprecated
- `oldMethod()` — use `newMethod()` instead, will be removed in v2.0
### Removed
- Dropped support for Node 16
### Fixed
- Cart total incorrectly calculated when coupon applied (#123)
### Security
- Updated `express` to patch CVE-2024-XXXX
## [1.1.0] - 2025-02-01
...
[Unreleased]: https://github.com/owner/repo/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/owner/repo/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/owner/repo/compare/v1.0.0...v1.1.0
| Section | What goes here |
|---|---|
Added | New features |
Changed | Changes to existing functionality |
Deprecated | Soon-to-be removed features |
Removed | Removed features |
Fixed | Bug fixes |
Security | Security vulnerability fixes |
(#123) or (closes #123)config.timeout to config.timeoutMs — update your config files"When given a range of commits, map Conventional Commits types to changelog sections:
| Commit type | Changelog section |
|---|---|
feat | Added |
fix | Fixed |
perf | Changed |
refactor | Changed (only if user-visible) |
docs | (skip unless user-facing docs) |
style, test, ci, chore | (skip) |
BREAKING CHANGE | Changed + note at top of version |
BREAKING CHANGE → bump MAJOR (1.x.x → 2.0.0)feat → bump MINOR (x.1.x → x.2.0)fix, perf → bump PATCH (x.x.1 → x.x.2)docs, chore, style → no version bumpAlways maintain an [Unreleased] section at the top for changes not yet in a release. When releasing, rename it to the new version with a date.