git.detect-breaking-changes
Installation
SKILL.md
Your task
Analyze the previous $ARGUMENTS commits for breaking changes across the CDS public API surface.
Scope
Only analyze changes within these packages:
packages/web/packages/mobile/packages/common/
Determining the public API surface
Each package is fully ESM. Inspect each package's package.json "exports" map to determine the public entry points. Every symbol (component, function, hook, constant, type, interface, enum) that is reachable through these export paths is part of the public API and subject to breaking change analysis.
Follow the export chain: package.json exports -> entry index.ts barrel file -> re-exported modules. Any symbol that a consumer could import via the package's published entry points is in scope.