No signup required

Get your first scan in 2 minutes

One command. Full visibility into your design drift. Free and open source.

$ npx @buoy-design/cli scan
buoy-cli
$
Scanning codebase...
Found 127 components
Found 34 design tokens
Scan complete! Run buoy drift check to analyze

Three commands to full visibility

1

1. Run your first scan

No install required. Just run this command in your project:

$ npx @buoy-design/cli scan
2

2. Check for drift

Analyze your codebase for design drift signals:

$ npx @buoy-design/cli drift check
3

3. See your status

Get a summary of your design system adoption:

$ npx @buoy-design/cli status

Optional: Configure for your project

buoy.config.mjs Optional configuration
export default {
  // Your design system source
  tokens: './src/tokens',

  // Components to scan
  include: ['src/components/**/*.tsx'],

  // Patterns to ignore
  ignore: ['**/*.test.tsx', '**/stories/**'],

  // Severity thresholds for CI
  thresholds: {
    critical: 0,  // Fail on any critical
    warning: 10,  // Allow up to 10 warnings
  }
}

What's next?