/api-changelog-versioning
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions, communicating breaking changes, or creating upgrade guides.
One skill from claude-skills.
shell
$ npx -y skills add secondsky/claude-skills --skill api-changelog-versioning --agent claude-codeInstalls just this skill. Get the whole plugin for auto-invocation.
How it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfClaude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/api-changelog-versioning
Context preview
The summary Claude sees to decide when to auto-load this skill.
Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions, communicating breaking changes, or creating upgrade guides.
Stats
Stars194
Forks29
LanguageTypeScript
LicenseMIT
Ships with claude-skills
SKILL.md
api-changelog-versioning.SKILL.md
--- name: api-changelog-versioning description: Creates comprehensive API changelogs documenting breaking changes, deprecations, and migration strategies for API consumers. Use when managing API versions, communicating breaking changes, or creating upgrade guides. license: MIT --- # API Changelog & Versioning Document API changes with clear migration paths and deprecation timelines. ## Changelog Structure ```markdown # API Changelog ## v3.0.0 (2025-01-15) - Breaking Changes ### Breaking Changes - Response format now follows JSON:API specification - Authentication switched from API tokens to JWT Bearer ### Migration Steps 1. Update base URL to `/api/v3` 2. Replace `Authorization: Token xxx` with `Authorization: Bearer xxx` 3. Update response parsing for new envelope format ## v2.5.0 (2024-12-01) - Features ### New Features - Webhook support for order events - Batch operations endpoint - Field filtering via `?fields=` parameter ### Improvements - 56% faster response times on /products - Enhanced error messages with field-specific suggestions
