--- name: Brand Kit Generator description: Generate a complete brand identity kit including logo, color palette, and social assets via the Nexus content job API --- # Brand Kit Generator Generate a cohesive brand identity kit from a company name and description. Produces logo SVG, color palette, typography recommendations, and social media image templates. ## Usage Submit a content job via `POST /api/companies/{companyId}/content-jobs`: ```json { "jobType": "brand-kit", "input": { "companyName": "Acme Corp", "description": "A modern SaaS platform for project management", "seedColor": "#2563eb" } } ``` **Fields:** - `companyName` (required): The company or brand name - `description` (required): Brief description of the company and its focus - `seedColor` (optional): Hex color to anchor the brand palette ## Output The job returns a `BrandKitBundle` with: - `logoSvg`: Primary logo as SVG - `palette`: Color tokens (primary, secondary, accent, neutrals) - `socialImages`: Array of platform-sized social image templates - `typography`: Recommended font pairings