api-changelog-impact-analyzer
Installation
SKILL.md
When to invoke
- You have API release notes/changelog text (Markdown) from any provider.
- You need to identify potentially breaking changes and what client code to review.
- You want a vendor-neutral heuristic analysis (not tied to any specific API platform).
Inputs needed
- Path to a changelog markdown/text file.
- (Optional) A list of client endpoints your app uses (JSON) to cross-check.
Workflow
- Parse changelog into bullet items and headings.
- Classify each item into:
- breaking (removal, rename, required fields, auth changes)
- behavior change (defaults, limits, ordering)
- additive (new fields/endpoints)
- deprecation
- Extract impacted surfaces (endpoint paths, field names) via regex heuristics.
- If a client-usage file is provided, highlight overlaps.
- Output a prioritized action list.