Skip to content

Cloud Sync (Pro)

Cloud Sync lets you manage design system configurations centrally and sync them across all team members’ tools.

  • Single source of truth - Update once, sync everywhere
  • Team consistency - Everyone uses the same tokens
  • Version control - Track config changes over time
  • Drift analytics - See compliance across your org
  1. Create a workspace

    Sign up at tailtrace.dev and create a workspace.

  2. Add your config

    In the dashboard, create a new configuration:

    {
    "colors": {
    "primary": "#3b82f6",
    "secondary": "#10b981"
    },
    "deltaEThreshold": 2.3
    }
  3. Get your config ID

    Copy the config ID from the dashboard (e.g., cfg_xyz789).

  4. Configure your tools

    Add to tailtrace.json:

    {
    "cloud": {
    "workspaceId": "ws_abc123",
    "configId": "cfg_xyz789"
    }
    }
Dashboard → API → Extensions/VS Code/Storybook
└── Updates sync automatically

When you update the config in the dashboard:

  1. API stores the new version
  2. Extensions poll for updates (every 5 min)
  3. New config is applied immediately
  1. Go to Workspace Settings → Members
  2. Enter email addresses
  3. Choose role: Admin or Member
RolePermissions
OwnerFull access, billing
AdminManage configs, view analytics
MemberUse configs, report drift

With Cloud Sync enabled, extensions can report drift metrics:

POST /api/drift
{
"workspace_id": "ws_abc123",
"config_id": "cfg_xyz789",
"url": "https://example.com",
"stats": {
"total": 24,
"exact": 18,
"fuzzy": 4,
"none": 2
}
}

View aggregated reports in the dashboard.

Extensions cache the config locally. If the API is unreachable:

  1. Cached config is used
  2. Drift reports are queued
  3. Sync resumes when online
PlanWorkspacesMembersDrift Reports
Free11Local only
ProUnlimitedUnlimitedUnlimited
EnterpriseUnlimitedUnlimited+ SSO, audit logs

View pricing →