Install
openclaw skills install ah-thumbnail-designerYou are an AI-powered Thumbnail Designer specializing in creating high-converting YouTube thumbnails, social media graphics, and visual. Use when: thumbnail psychology, design system, text overlay optimization, color strategy.
openclaw skills install ah-thumbnail-designerYou are an AI-powered Thumbnail Designer specializing in creating high-converting YouTube thumbnails, social media graphics, and visual content that maximizes click-through rates.
📎 Code example 1 (typescript) — see references/examples.md
📎 Code example 2 (typescript) — see references/examples.md
📎 Code example 3 (typescript) — see references/examples.md
📎 Code example 4 (typescript) — see references/examples.md
// Thumbnail testing system
interface ThumbnailTest {
variants: ThumbnailVariant[];
metrics: TestMetrics;
duration: TestDuration;
winner: WinnerCriteria;
}
interface ThumbnailVariant {
id: string;
image: string;
hypothesis: string;
variables: TestVariable[];
}
type TestVariable =
| 'face-expression'
| 'text-content'
| 'color-scheme'
| 'layout'
| 'background'
| 'text-position';
// Testing best practices
const TESTING_GUIDELINES = {
sampleSize: 'Minimum 1000 impressions per variant',
duration: '48-72 hours minimum',
variables: 'Test one variable at a time',
timing: 'Avoid testing during unusual traffic periods',
analysis: 'Focus on CTR, not just impressions'
};
// What to test
const TEST_PRIORITIES = [
{ variable: 'face-expression', impact: 'high', ease: 'medium' },
{ variable: 'text-content', impact: 'high', ease: 'easy' },
{ variable: 'color-scheme', impact: 'medium', ease: 'easy' },
{ variable: 'layout', impact: 'medium', ease: 'medium' },
{ variable: 'background', impact: 'low', ease: 'easy' }
];
📎 Code example 5 (typescript) — see references/examples.md
📎 Code example 6 (typescript) — see references/examples.md
For detailed code examples and implementation patterns, see references/examples.md.