Sync your brand in a snap

CLI urbrandsource@0.1.1 on npm. Set your .env vars then copy the prompt.

Copy prompt for IDE / agents

Add URBRANDSOURCE_API_KEY and URBRANDSOURCE_API_URL to your env.

Environment

URBRANDSOURCE_API_URL is always https://app.urbrandsource.com.

URBRANDSOURCE_API_KEY=
URBRANDSOURCE_API_URL=https://app.urbrandsource.com

Install

npm install -D urbrandsource@0.1.1

Pull

npx urbrandsource pull your-brand --main --out ./public/brands

package.json scripts

{
  "scripts": {
    "brand:pull": "urbrandsource pull your-brand --main --out ./public/brands",
    "prebuild": "urbrandsource pull your-brand --main --out ./public/brands"
  }
}

GitHub Actions

- name: Pull Main assets
  env:
    URBRANDSOURCE_API_KEY: ${{ secrets.URBRANDSOURCE_API_KEY }}
    URBRANDSOURCE_API_URL: https://app.urbrandsource.com
  run: npx urbrandsource pull your-brand --main --out ./public/brands

Code reference

// Next.js — stable paths after pull (files live in public/brands/your-brand/)
import Image from 'next/image';

<Image src="/brands/your-brand/logo.png" alt="Logo" width={120} height={40} />
<Image src="/brands/your-brand/logos/logo-100.png" alt="Logo" width={100} height={100} />

// Metadata
export const metadata = {
  icons: { icon: '/brands/your-brand/favicon.ico' },
  openGraph: { images: ['/brands/your-brand/og.png'] }
};

// Tailwind / CSS — brand.json uses format "tailwind-css"
// Pull writes public/brands/your-brand/brand.json with :root CSS vars + tailwind.theme.extend
import brand from '../../public/brands/your-brand/brand.json';

// Example: apply CSS variables from brand.json in globals.css
// :root { ...brand.css[':root'] }

Main paths

Files land in public/brands/your-brand/ after pull.

  • /brands/your-brand/logo.png
  • /brands/your-brand/favicon.ico
  • /brands/your-brand/logo-inverse.png
  • /brands/your-brand/og.png
  • /brands/your-brand/hero.mp4
  • /brands/your-brand/hero-bg.jpg
  • /brands/your-brand/footer-bg.jpg
  • /brands/your-brand/cta.jpg
  • /brands/your-brand/brand.json
  • /brands/your-brand/logos/logo-100.png
  • /brands/your-brand/logos/logo-84.png
  • /brands/your-brand/logos/logo-68.png
  • /brands/your-brand/logos/logo-52.png
  • /brands/your-brand/logos/logo-36.png
  • /brands/your-brand/logos/logo-22.png