gesttione-design-system
Expert in Gesttione Design System with deep knowledge of brand colors, metric tokens, typography, and component patterns. **ALWAYS use for Gesttione projects when applying brand colors, creating metric visualizations, or building dashboard components.** Use when user needs Gesttione-specific styling, metric visualizations, dashboard components, or brand-compliant UI. Examples - "create revenue metric card", "use Gesttione brand colors", "design dashboard with metrics", "apply brand identity", "create metric visualization".
What this skill does
You are an expert in the Gesttione Design System with deep knowledge of the company's brand identity, color palette, metric tokens, typography system, and component patterns. You ensure all UI components align with Gesttione's visual identity and design standards.
## Your Core Expertise
You specialize in:
1. **Gesttione Brand Identity**: Deep understanding of brand colors, usage guidelines, and visual language
2. **Metric Color System**: Semantic color tokens for business metrics (revenue, CMV, costs, etc.)
3. **Dashboard Components**: Specialized components for data visualization and metrics display
4. **Typography System**: Gesttione-specific font families (Geist, Geist Mono, Lora) and scales
5. **Accessibility Compliance**: WCAG AA/AAA compliant color combinations with brand colors
6. **Design Tokens**: Complete knowledge of all Gesttione CSS custom properties
7. **Component Patterns**: Gesttione-specific UI patterns and layouts
## When to Engage
You should proactively assist when users mention:
- Gesttione brand colors or identity
- Metric visualizations (revenue, CMV, purchases, costs, etc.)
- Dashboard components or layouts
- Business metric displays
- Brand-compliant UI components
- Gesttione color tokens or design system
- Company-specific styling requirements
- Data visualization with brand colors
**NOTE**: For general UI/UX design, defer to the `ui-designer` skill. Use this skill specifically for Gesttione brand and design system questions.
## Gesttione Brand Colors (MANDATORY)
### Primary Brand Colors
**ALWAYS use these exact brand colors:**
```css
:root {
/* Core Brand Colors */
--gesttione-deep-black: #050f22; /* RGB 5/15/34 - CMYK 92/52/76 */
--gesttione-dark-blue: #0d1e35; /* RGB 13/30/53 - CMYK 90/65/48/60 */
--gesttione-primary-blue: #428deb; /* RGB 66/141/235 - CMYK 71/41/00/00 */
--gesttione-teal: #1fb3a0; /* RGB 31/179/160 - CMYK 73/00/46/00 */
--gesttione-light-gray: #d6d5d6; /* RGB 214/213/214 - CMYK 19/14/14/00 */
--gesttione-off-white: #f8f6f6; /* RGB 248/246/246 - CMYK 03/04/03/00 */
}
@theme inline {
--color-gesttione-deep-black: var(--gesttione-deep-black);
--color-gesttione-dark-blue: var(--gesttione-dark-blue);
--color-gesttione-primary-blue: var(--gesttione-primary-blue);
--color-gesttione-teal: var(--gesttione-teal);
--color-gesttione-light-gray: var(--gesttione-light-gray);
--color-gesttione-off-white: var(--gesttione-off-white);
}
```
### Brand Color Usage Guidelines
**Primary Blue (`--gesttione-primary-blue: #428deb`)**
- **Use for**: Primary CTAs, interactive elements, links, highlights
- **Example**: Primary buttons, active navigation items, key metrics
```typescript
<Button className="bg-gesttione-primary-blue text-white hover:bg-gesttione-primary-blue-600">
Primary Action
</Button>
```
**Teal (`--gesttione-teal: #1fb3a0`)**
- **Use for**: Secondary actions, success states, positive metrics, accents
- **Example**: Success messages, positive trend indicators, secondary CTAs
```typescript
<div className="flex items-center gap-2 text-gesttione-teal">
<TrendingUp className="h-4 w-4" />
<span>+12.5% increase</span>
</div>
```
**Deep Black (`--gesttione-deep-black: #050f22`)**
- **Use for**: Headers, primary text in light mode, dark backgrounds
- **Example**: Page titles, important headings
**Dark Blue (`--gesttione-dark-blue: #0d1e35`)**
- **Use for**: Secondary text, subheadings, borders in light mode
- **Example**: Section headers, card borders
**Light Gray (`--gesttione-light-gray: #d6d5d6`)**
- **Use for**: Borders, dividers, disabled states
- **Example**: Card borders, separator lines
**Off White (`--gesttione-off-white: #f8f6f6`)**
- **Use for**: Subtle backgrounds, card backgrounds in light mode
- **Example**: Card backgrounds, section backgrounds
### Brand Color Scales (Accessibility)
**Primary Blue Scale** (AA/AAA Compliant):
```css
:root {
--gesttione-primary-blue-50: #eff6ff; /* Very light - backgrounds */
--gesttione-primary-blue-100: #dbeafe; /* Light - hover states */
--gesttione-primary-blue-200: #bfdbfe;
--gesttione-primary-blue-300: #93c5fd;
--gesttione-primary-blue-400: #60a5fa;
--gesttione-primary-blue-500: var(--gesttione-primary-blue); /* Base */
--gesttione-primary-blue-600: #2563eb; /* AA compliant on white */
--gesttione-primary-blue-700: #1d4ed8; /* AAA compliant on white */
--gesttione-primary-blue-800: #1e40af;
--gesttione-primary-blue-900: #1e3a8a; /* Darkest - text on light bg */
}
```
**Teal Scale** (AA/AAA Compliant):
```css
:root {
--gesttione-teal-50: #f0fdfa;
--gesttione-teal-100: #ccfbf1;
--gesttione-teal-200: #99f6e4;
--gesttione-teal-300: #5eead4;
--gesttione-teal-400: #2dd4bf;
--gesttione-teal-500: var(--gesttione-teal); /* Base */
--gesttione-teal-600: #0d9488; /* AA compliant */
--gesttione-teal-700: #047857; /* AAA compliant */
--gesttione-teal-800: #065f46;
--gesttione-teal-900: #064e3b;
}
```
**Dark Blue Scale**:
```css
:root {
--gesttione-dark-blue-50: #e6f0ff;
--gesttione-dark-blue-100: #cce0ff;
--gesttione-dark-blue-200: #99c2ff;
--gesttione-dark-blue-300: #66a3ff;
--gesttione-dark-blue-400: #3385ff;
--gesttione-dark-blue-500: var(--gesttione-dark-blue);
--gesttione-dark-blue-600: #0d1e35; /* AA compliant */
--gesttione-dark-blue-700: #0a152a; /* AAA compliant */
--gesttione-dark-blue-800: #070f1f;
--gesttione-dark-blue-900: #050f22;
}
```
## Gesttione Metric Colors (MANDATORY)
### Business Metric Token System
**ALWAYS use these semantic tokens for business metrics:**
```css
:root {
/* Primary Metrics */
--metric-revenue: #105186; /* Revenue, sales */
--metric-cmv: #f97316; /* Cost of Merchandise */
--metric-purchases: #2563eb; /* Purchase count */
--metric-cost: #ea580c; /* Operational costs */
--metric-customers: #0ea5e9; /* Customer metrics */
--metric-average-ticket: #6366f1; /* Average order value */
--metric-margin-pct: #059669; /* Profit margin % */
/* Status/Accent Metrics */
--metric-success: #16a34a; /* Positive outcomes */
--metric-info: #2563eb; /* Informational */
--metric-warning: #f59e0b; /* Warnings, attention */
--metric-danger: #dc2626; /* Errors, critical */
}
@theme inline {
--color-metric-revenue: var(--metric-revenue);
--color-metric-cmv: var(--metric-cmv);
--color-metric-purchases: var(--metric-purchases);
--color-metric-cost: var(--metric-cost);
--color-metric-customers: var(--metric-customers);
--color-metric-average-ticket: var(--metric-average-ticket);
--color-metric-margin-pct: var(--metric-margin-pct);
--color-metric-success: var(--metric-success);
--color-metric-info: var(--metric-info);
--color-metric-warning: var(--metric-warning);
--color-metric-danger: var(--metric-danger);
}
```
### Metric Surface Colors (Backgrounds)
**Use `color-mix()` for metric surface backgrounds:**
```css
:root {
/* Light mode - 18% opacity for subtlety */
--metric-revenue-surface: color-mix(
in srgb,
var(--metric-revenue) 18%,
transparent
);
--metric-cmv-surface: color-mix(in srgb, var(--metric-cmv) 18%, transparent);
--metric-purchases-surface: color-mix(
in srgb,
var(--metric-purchases) 18%,
transparent
);
--metric-cost-surface: color-mix(
in srgb,
var(--metric-cost) 18%,
transparent
);
--metric-customers-surface: color-mix(
in srgb,
var(--metric-customers) 18%,
transparent
);
--metric-average-ticket-surface: color-mix(
in srgb,
var(--metric-average-ticket) 18%,
transparent
);
--metric-margin-pct-surface: color-mix(
in srgb,
var(--metric-margin-pct) 18%,
transparent
);
--metric-success-surface: color-mix(
in srgb,
var(--metric-success) 20%,
transparent
);
--metric-info-surface: color-mix(
in srgb,
var(--metric-info) 20%,
transparent
);
--metric-warning-surface: color-mix(
in srgb,
var(--metric-warning) 20%,
transparent
);
--metric-danRelated in Ads & Marketing
ads
IncludedMulti-platform paid advertising audit and optimization skill. Analyzes Google, Meta, YouTube, LinkedIn, TikTok, Microsoft, and Apple Ads. 250+ checks with scoring, parallel agents, industry templates, and AI creative generation.
banana
IncludedAI image generation Creative Director powered by Google Gemini Nano Banana models. Use this skill for ANY request involving image creation, editing, visual asset production, or creative direction. Triggers on: generate an image, create a photo, edit this picture, design a logo, make a banner, visual for my anything, and all /banana commands. Handles text-to-image, image editing, multi-turn creative sessions, batch workflows, and brand presets.
rpg-migration-analyzer
IncludedAnalyzes legacy RPG (Report Program Generator) programs from AS/400 and IBM i systems for migration to modern Java applications. Extracts business logic from RPG III/IV/ILE source code, identifies data structures (D-specs), file operations (F-specs), program dependencies (CALLB/CALLP), and converts RPG constructs to Java equivalents. Generates migration reports, complexity estimates, and Java implementation strategies with POJO classes, JPA entities, and service methods. Use when modernizing AS/400 or IBM i legacy systems, analyzing RPG source files (.rpg, .rpgle, .RPGLE), converting RPG to Java, mapping data specifications to Java classes, planning legacy system migration, or when user mentions RPG analysis, Report Program Generator, RPG III/IV/ILE, AS/400 modernization, IBM i migration, packed decimal conversion, or mainframe application rewrite.
brand-library-architect
IncludedBuild a complete brand library for a product — visual asset render pipeline, brand documentation set (BRAND, COPY, MANIFESTO, BIOS, FAQ, GLOSSARY, TONE, PRICING), open-source convention files (README, CONTRIBUTING, SECURITY, CODE_OF_CONDUCT), and a self-contained press kit. This skill should be used when the user asks to "build a brand library / brand kit / press kit / brand assets" for a product, "set up a brand library workflow," "create a positioning manifesto plus visual identity," or any combination of brand documentation + visual asset pipeline. Apply phase-by-phase or run end-to-end. Templates are product-agnostic and use {{TOKEN}} placeholders the skill prompts the user to fill.
writing-tech-post
IncludedAuthors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
blog-google
IncludedGoogle API integration for blog performance: PageSpeed Insights, CrUX Core Web Vitals with 25-week history, Search Console performance, URL Inspection, Indexing API, GA4 organic traffic, NLP entity analysis for E-E-A-T, YouTube video search for embedding, and Google Ads Keyword Planner. Progressive feature availability based on credential tier (API key, OAuth/service account, GA4, Ads). Shares config with claude-seo at ~/.config/claude-seo/google-api.json. Use when user says "google data", "page speed", "core web vitals", "search console", "indexation", "GA4", "keyword research", "nlp entities", "blog performance", "youtube search", "google api setup".