No signup required

Get your first scan in 2 minutes

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

$ npx ahoybuoy 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 ahoybuoy scan
2

2. Check for drift

Analyze your codebase for design drift signals:

$ npx ahoybuoy drift check
3

3. See your status

Get a summary of your design system adoption:

$ npx ahoybuoy status

Optional: Configure for your project

.buoy.yaml Optional configuration
# .buoy.yaml

# Your design system source
tokens:
  source: "./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?