Agent skill
prepare-release
Prepare a new release for the C# MCP SDK. Assesses Semantic Versioning level (PATCH/MINOR/MAJOR), bumps the version, runs ApiCompat and ApiDiff, reviews documentation, updates changelogs, drafts release notes, and creates a pull request with all release artifacts. Use when asked to prepare a release, start a release, create a release PR, or assess what the next release should be.
Install this agent skill to your Project
npx add-skill https://github.com/modelcontextprotocol/csharp-sdk/tree/main/.github/skills/prepare-release
SKILL.md
Prepare Release
Prepare a new release for the modelcontextprotocol/csharp-sdk repository. This skill assesses the appropriate Semantic Versioning 2.0.0 level based on queued changes, bumps the version, runs API compatibility and diff tools, reviews documentation, drafts release notes, and creates a pull request containing all release artifacts.
Safety: This skill creates a local branch and PR. It must never create a GitHub release. Release creation is handled by the publish-release skill after this PR is merged.
User confirmation required: This skill NEVER pushes a branch or creates a pull request without explicit user confirmation. The user must review and approve all details before any remote operations occur.
Process
Work through each step sequentially. Present findings at each step and get user confirmation before proceeding. Skip any step that has no applicable items.
Step 1: Determine Target and Gather PRs
The user may provide:
- A git ref (commit SHA, branch, or tag) — use as the target commit
- No context — show the last 5 commits on
main(noting HEAD) and offer the option to enter a branch or tag name instead
Once the target is established:
- Determine the previous release tag from
gh release list(most recent published release — exclude drafts with--exclude-drafts). - Get the full list of PRs merged between the previous release tag and the target commit.
- Read
src/Directory.Build.propsat the target commit. Extract<VersionPrefix>as the candidate version.
Step 2: Categorize and Attribute
Sort every PR into one of four categories. See references/categorization.md for detailed guidance.
| Category | Content |
|---|---|
| What's Changed | Features, bug fixes, improvements, breaking changes |
| Documentation Updates | PRs whose sole purpose is documentation |
| Test Improvements | Adding, fixing, or unskipping tests; flaky test repairs |
| Repository Infrastructure Updates | CI/CD, dependency bumps, version bumps, build system |
Entry format — * Description #PR by @author with co-authors when present:
* Description #PR by @author
* Description #PR by @author (co-authored by @user1 @Copilot)
Attribution rules:
- Harvest
Co-authored-bytrailers from all commits in each PR (not just the merge commit) to identify co-authors. Do this for every PR regardless of primary author. - For Copilot-authored PRs, additionally check the
copilot_work_startedtimeline event to identify the triggering user. That person becomes the primary author;@Copilotbecomes a co-author. - Omit the co-author parenthetical when there are none
- Sort entries within each section by merge date (chronological)
Step 3: Breaking Change Audit
Invoke the breaking-changes skill with the commit range from the previous release tag to the target commit. Examine every PR, assess impact, reconcile labels (offering to add/remove labels and comment on PRs), and get user confirmation.
Use the results (confirmed breaking changes with impact ordering and detail bullets) in the remaining steps.
Step 4: Assess Release Version
Using the categorized PRs from Step 2 and confirmed breaking changes from Step 3, assess the appropriate Semantic Versioning 2.0.0 release level. Follow the SemVer assessment guide (owned by the bump-version skill) for the full assessment criteria.
- Classify the release level:
- MAJOR — if any confirmed breaking changes are present (API or behavioral), excluding changes to
[Experimental]APIs - MINOR — if no breaking changes but new public APIs, features, or obsoletion warnings are introduced
- PATCH — otherwise
- MAJOR — if any confirmed breaking changes are present (API or behavioral), excluding changes to
- Compute the recommended version from the previous release tag:
- Increment the appropriate component (MAJOR resets MINOR.PATCH to 0; MINOR resets PATCH to 0)
- Compare against the candidate version from
src/Directory.Build.props. Flag any discrepancy:- Under-versioned: The candidate is lower than the recommended level. This is a concern that should be resolved.
- Over-versioned: The candidate is higher than strictly required. This is acceptable under SemVer but worth noting.
- Present the assessment with a summary table showing the previous release, change classification, recommended level, recommended version, and any discrepancy with the candidate. Include a brief rationale citing the most significant PRs.
- Get user confirmation of the release version before proceeding.
Step 5: Create Release Branch and Bump Version
After the version is confirmed:
- Create a local branch named
release-{version}from the target commit (e.g.,release-1.1.0). - Update
src/Directory.Build.props:- Set
<VersionPrefix>to the confirmed version - Update
<PackageValidationBaselineVersion>if the MAJOR version has changed (set to the previous release version)
- Set
- Build the solution to verify the version change compiles:
dotnet build
This step creates local changes only — nothing is committed or pushed yet.
Step 6: Run API Compatibility Check
Run API compatibility validation against the baseline version. Follow references/apicompat-apidiff.md for the full procedure.
- Run
dotnet packto trigger package validation againstPackageValidationBaselineVersion - Capture the ApiCompat output (compatibility issues, warnings, suppressions)
- If there are unexpected compatibility breaks:
- Cross-reference with the breaking change audit from Step 3
- Present any unaccounted breaks to the user
- If breaks are intentional, add appropriate entries to
CompatibilitySuppressions.xmlin the affected project directory
- Record the ApiCompat results for inclusion in the PR description
Step 7: Generate API Diff Report
Generate a human-readable diff of the public API surface between the previous release and the new version. Follow references/apicompat-apidiff.md for the full procedure, including how to install the Microsoft.DotNet.ApiDiff.Tool from the .NET transport feed.
- Install
Microsoft.DotNet.ApiDiff.Toolfrom the transport feed if not already installed (requires--prereleaseand--add-sourcepointing tohttps://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet{MAJOR}-transport/nuget/v3/index.json) - Download the baseline packages and build the current version in Release configuration
- Run
dotnet apidiffcomparing baseline vs. current assemblies for each SDK package - Format the diff as markdown for inclusion in the PR description
If the ApiDiff tool cannot be installed or fails to produce output, STOP and inform the user. Present the error and ask how to proceed. Do not fall back to a manual summary — the user must decide whether to troubleshoot, skip the API diff, or abort.
Step 8: Review and Update Documentation
Review repository documentation for changes needed to compensate for or adapt to this release:
- NuGet package READMEs — Validate that code samples in
README.mdandsrc/PACKAGE.mdcompile against the current SDK. Follow references/readme-snippets.md for the validation procedure. Propose fixes for any API mismatches. - Conceptual documentation — Review
docs/for content affected by the changes in this release. Update references to changed APIs, new features, or removed functionality. - Versioning documentation — If the release introduces new versioning-relevant policies (new experimental APIs, obsoletion changes), verify
docs/versioning.mdreflects them. - Changelogs — If the repository contains changelog files (e.g.,
CHANGELOG.md), update them with the release information. If no changelogs exist, skip this sub-step and note it in the summary.
Stage all documentation changes for inclusion in the release commit.
Step 9: Draft Release Notes
Compose the release notes that will appear in the PR description and serve as the foundation for the publish-release skill. This is a draft — the final release notes will be refreshed when the GitHub release is created.
- Preamble — Draft a short paragraph summarizing the release theme. Present it to the user for review and editing. The preamble is required.
- Breaking Changes — sorted most → least impactful (from Step 3 results). Include the versioning docs link.
- What's Changed — chronological; includes breaking change PRs
- Documentation Updates — chronological
- Test Improvements — chronological
- Repository Infrastructure Updates — chronological
- Acknowledgements:
- New contributors (first contribution in this release)
- Issue reporters (cite resolving PRs)
- PR reviewers (single bullet, sorted by review count, no count shown)
- Full Changelog link
Omit empty sections. Present each section for user review before proceeding.
Step 10: Commit Changes
Commit all changes to the release-{version} branch:
- Stage all modified files (version bump, compatibility suppressions, documentation updates, changelog updates)
- Commit with message:
Prepare release v{version} - Do not push yet
Step 11: Present Release Summary
Present all of the following details to the user for review. The user must confirm every aspect before proceeding to Step 12.
- Version number with brief rationale for why this SemVer level was selected
- Branch name (e.g.,
release-1.1.0) - Remote the branch would be pushed to (show the configured remote, typically
origin) - Files changed — list every file modified in the commit with a one-line summary of what changed in each:
src/Directory.Build.props — Version bumped from 1.0.0 to 1.1.0 src/ModelContextProtocol.Core/CompatibilitySuppressions.xml — Added 2 new suppressions README.md — Updated code sample for new API docs/experimental.md — Added new experimental API reference - Draft release notes — the complete release notes from Step 9
- API Compatibility results — the ApiCompat output from Step 6
- API Diff report — the API diff from Step 7
- Proposed PR title (e.g.,
Release v1.1.0) - Proposed PR description — the assembled content combining release notes, ApiCompat, and ApiDiff
After presenting all details, explicitly ask the user:
Would you like to push the branch and create the pull request?
Do not proceed without explicit "yes" confirmation.
Step 12: Push Branch and Create Pull Request
Only after explicit user confirmation in Step 11:
- Push the
release-{version}branch to the remote - Create a pull request:
- Title:
Release v{version} - Base: default branch (typically
main) - Head:
release-{version} - Description: The assembled PR description (see PR Description Template below)
- Labels: Apply appropriate labels (e.g.,
release)
- Title:
- Present the PR URL to the user
Important: No draft GitHub release is created at this point. The publish-release skill handles release creation after this PR is merged.
Edge Cases
- PR spans categories: categorize by primary intent
- Copilot timeline missing: fall back to
Co-authored-bytrailers to determine whether@Copilotshould be a co-author; if still unclear, use@Copilotas primary author - No breaking changes: omit the Breaking Changes section from release notes entirely
- Single breaking change: use the same numbered format as multiple
- No user-facing changes: if all PRs are documentation, tests, or infrastructure, flag that a release may not be warranted and ask the user whether to proceed
- Version discrepancy: if the candidate version from
Directory.Build.propsdoesn't match the SemVer assessment, present the discrepancy and let the user decide the final version - No previous release: if this is the first release, there is no previous tag; gather all PRs merged to the target
- ApiCompat tooling unavailable: fall back to
dotnet packoutput; note in the PR description that full ApiCompat was run via package validation only - API diff tool installation fails: do not fall back to a manual summary; pause and present the installation error to the user, offering options to troubleshoot, skip the API diff section, or abort the release preparation
- No changelogs in repo: skip changelog updates; note in the summary
- Branch already exists: if
release-{version}already exists locally or remotely, ask the user whether to reuse it, delete and recreate, or choose a different name - PackageValidationBaselineVersion update: when bumping MAJOR version, update the baseline to the previous release version; when bumping MINOR or PATCH, keep the existing baseline
- CompatibilitySuppressions.xml: when intentional breaks are found, add suppression entries and include the file in the commit; existing suppressions should be preserved
- User declines PR creation: if the user declines at Step 11, leave the local branch intact so they can review, modify, or push manually
PR Description Template
The PR description combines release notes, ApiCompat, and ApiDiff into a single document. Omit empty sections.
# Release v{version}
[Preamble — summarize the release theme]
## Release Notes
### Breaking Changes
Refer to the [C# SDK Versioning](https://csharp.sdk.modelcontextprotocol.io/versioning.html) documentation for details on versioning and breaking change policies.
1. **Description #PR**
* Detail of the break
* Migration guidance
### What's Changed
* Description #PR by @author (co-authored by @user1 @Copilot)
### Documentation Updates
* Description #PR by @author
### Test Improvements
* Description #PR by @author
### Repository Infrastructure Updates
* Description #PR by @author
### Acknowledgements
* @user made their first contribution in #PR
* @user1 @user2 @user3 reviewed pull requests
**Full Changelog**: https://github.com/modelcontextprotocol/csharp-sdk/compare/previous-tag...release-{version}
---
## API Compatibility Report
[ApiCompat output — pass/fail status per package and any issues or suppressions]
## API Diff Report
### ModelContextProtocol.Core
[API diff — additions, removals, changes]
### ModelContextProtocol
[API diff — additions, removals, changes]
### ModelContextProtocol.AspNetCore
[API diff — additions, removals, changes]
Release Notes Template
The release notes section within the PR description uses the same format as the final GitHub release notes (used by the publish-release skill). This ensures consistency between the PR and the published release.
Omit empty sections. The preamble is always required — it is not inside a section heading.
[Preamble — REQUIRED. Summarize the release theme.]
## Breaking Changes
Refer to the [C# SDK Versioning](https://csharp.sdk.modelcontextprotocol.io/versioning.html) documentation for details on versioning and breaking change policies.
1. **Description #PR**
* Detail of the break
* Migration guidance
## What's Changed
* Description #PR by @author (co-authored by @user1 @Copilot)
## Documentation Updates
* Description #PR by @author (co-authored by @user1 @Copilot)
## Test Improvements
* Description #PR by @author (co-authored by @user1 @Copilot)
## Repository Infrastructure Updates
* Description #PR by @author (co-authored by @user1 @Copilot)
## Acknowledgements
* @user made their first contribution in #PR
* @user submitted issue #1234 (resolved by #5678)
* @user1 @user2 @user3 reviewed pull requests
**Full Changelog**: https://github.com/modelcontextprotocol/csharp-sdk/compare/previous-tag...new-tag
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
publish-release
Publish a GitHub release for the C# MCP SDK after a prepare-release PR has been merged. Refreshes release notes to include any PRs merged since preparation, warns about version or breaking change impacts from late-arriving PRs, and creates a draft GitHub release. Use when asked to publish a release, finalize a release, create release notes, or complete a release after the prepare-release PR has been merged.
bump-version
Assess and bump the SDK version using Semantic Versioning 2.0.0. Evaluates queued changes to recommend PATCH/MINOR/MAJOR, updates src/Directory.Build.props, and creates a pull request. Owns the SemVer assessment logic shared by prepare-release and publish-release. Use when asked to bump the version, assess the version, or determine what the next version should be.
issue-triage
Generate an issue triage report for the C# MCP SDK. Fetches all open issues, evaluates SLA compliance against SDK tier requirements, reviews issue discussions for status and next steps, cross-references related issues in other MCP SDK repos, and produces a BLUF markdown report. Use when asked to triage issues, audit SLA compliance, review open issues, or generate an issue report.
breaking-changes
Audit pull requests for breaking changes in the C# MCP SDK. Examines PR descriptions, review comments, and diffs to identify API and behavioral breaking changes, then reconciles labels with user confirmation. Use when asked to audit breaking changes, check for breaking changes, or review a set of PRs for breaking impact.
convert-web-app
This skill should be used when the user asks to "add MCP App support to my web app", "turn my web app into a hybrid MCP App", "make my web page work as an MCP App too", "wrap my existing UI as an MCP App", "convert iframe embed to MCP App", "turn my SPA into an MCP App", or needs to add MCP App support to an existing web application while keeping it working standalone. Provides guidance for analyzing existing web apps and creating a hybrid web + MCP App with server-side tool and resource registration.
add-app-to-server
This skill should be used when the user asks to "add an app to my MCP server", "add UI to my MCP server", "add a view to my MCP tool", "enrich MCP tools with UI", "add interactive UI to existing server", "add MCP Apps to my server", or needs to add interactive UI capabilities to an existing MCP server that already has tools. Provides guidance for analyzing existing tools and adding MCP Apps UI resources.
Didn't find tool you were looking for?