Analyzes the previous N commits for breaking changes across the CDS public API surface. Use this skill when you need to check if any recent changes will cause breaking changes in the CDS public API surface.
npx skills add https://github.com/coinbase/cds --skill git.detect-breaking-changes
Analyze the previous $ARGUMENTS commits for breaking changes across the CDS public API surface.
Only analyze changes within these packages:
packages/web/packages/mobile/packages/common/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.
git log --oneline -$ARGUMENTS -- <package-path> for each package to identify relevant commits.git diff HEAD~$ARGUMENTS..HEAD -- <package-path> and git show <sha> to inspect the actual changes.A previously exported symbol (component, function, hook, type, interface, constant, enum) has been deleted or is no longer exported.
Examples:
The call signature of a public function, hook, or component has changed in a way that would break existing consumers.
Examples:
A publicly exported type, interface, or enum has been modified in a way that would cause consumer TypeScript compilation to fail.
Examples:
A change to styles, spacing, sizing, or visual output that would shift the consumer's application layout or appearance without any API-level change.
Examples:
Applies to packages/web/ only. Changes to the rendered HTML element tree that could break consumer CSS selectors or DOM queries targeting internal component structure.
Examples:
div -> section)role or aria-* attributes removed or changedA change in runtime behavior that could break consumer expectations even though the API signature remains the same.
Examples:
Organize findings by package. Within each package, group by category. For each breaking change, include:
Use this structure:
packages/<package-name>/| Entity | Description | File | Commit |
| ------ | ----------- | ---- | ------ |
| ... | ... | ... | ... |
| Entity | Description | File | Commit |
| ------ | ----------- | ---- | ------ |
| ... | ... | ... | ... |
_(Continue for each category that has findings. Omit empty categories.)_
_(Repeat for each package that has breaking changes. Omit packages with no breaking changes.)_
After the per-package breakdown, provide a brief summary section:
package.json exports -> barrel files -> source modules.Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
Automatically creates user-facing changelogs from git commits by analyzing commit history, categorizing changes, and transforming technical commits into clear, customer-friendly release notes. Turns hours of manual changelog writing into minutes of automated generation.
Use when implementation is complete, all tests pass, and you need to decide how to integrate the work - guides completion of development work by presenting structured options for merge, PR, or cleanup
Guide for creating high-quality MCP (Model Context Protocol) servers that enable LLMs to interact with external services through well-designed tools. Use when building MCP servers to integrate external APIs or services, whether in Python (FastMCP) or Node/TypeScript (MCP SDK).
React Native and Expo best practices for building performant mobile apps. Use when building React Native components, optimizing list performance, implementing animations, or working with native modules. Triggers on tasks involving React Native, Expo, mobile performance, or native platform APIs.
React and Next.js performance optimization guidelines from Vercel Engineering. This skill should be used when writing, reviewing, or refactoring React/Next.js code to ensure optimal performance patterns. Triggers on tasks involving React components, Next.js pages, data fetching, bundle optimization, or performance improvements.
Next.js best practices - file conventions, RSC boundaries, data patterns, async APIs, metadata, error handling, route handlers, image/font optimization, bundling
Use when starting feature work that needs isolation from current workspace or before executing implementation plans - creates isolated git worktrees with smart directory selection and safety verification
Take coinbase/git.detect-breaking-changes from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.