What problem does it solve?
This Skill helps teams design stable, forward-compatible public APIs for C# libraries by applying extend-only design principles. It guides API compatibility, wire compatibility, and versioning to minimize breaking changes in NuGet packages and distributed systems.
Core Features & Use Cases
- Extend-only design to prevent breaking changes while enabling new functionality
- API compatibility guidance across releases (API/Source, Binary, and Wire)
- Versioning strategies and deprecation patterns for smooth migrations
- Wire-compatibility planning for distributed components and serialized data
- PR review prompts to enforce non-breaking changes and migration paths
- Use Case: adding a new feature via overloads or new types without removing existing APIs
Quick Start
Ask: Outline a non-breaking API change for a hypothetical C# library, including how to add new overloads and deprecate old members.