ai_qc/backend/profiles/static_general.json
nickviljoen 70c2563521 Create digital-focused general check modules and update Static General profile
Created 4 new "_general" QC check modules optimized for digital static assets:
- visual_hierarchy_general: Digital hierarchy assessment (removed POS/physical viewing distances)
- product_visibility_general: Digital product presentation (removed POS terminology)
- logo_visibility_general: Digital logo prominence (removed 3m/1m viewing distance requirements)
- call_to_action_general: Digital CTA effectiveness (added clickability and mobile considerations)

Updated Static General profile (static_general.json):
- Now includes 10 AI vision-focused checks
- Even weighting: 1.0 per check for 100-point scale
- Total weight: 10.0 for proper scoring calculation
- All checks assigned to Gemini LLM
- Updated description to clarify focus on AI vision capabilities

Profile focuses exclusively on checks that only AI vision models can perform,
excluding physical file properties that Twist system handles (file size, format,
resolution, naming, aspect ratio, bleed, crop marks, etc.).

10 checks in Static General profile:
1. text_readability_general
2. background_contrast_general
3. language_consistency
4. visual_hierarchy_general (NEW)
5. element_alignment
6. product_visibility_general (NEW)
7. logo_visibility_general (NEW)
8. call_to_action_general (NEW)
9. accessibility
10. inclusive

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2026-02-02 11:55:23 +02:00

66 lines
2.7 KiB
JSON

{
"name": "Static General",
"description": "Comprehensive AI vision quality control profile for digital static marketing assets. Focuses on checks that only AI vision models can perform, excluding physical file properties. Evaluates visual design, readability, accessibility, brand presence, and inclusive representation.",
"checks": {
"text_readability_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Ensures all marketing text is readable with proper size, contrast, spacing, and no overlapping elements for digital screens"
},
"background_contrast_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Verifies that key elements (logo, product, text) have sufficient contrast with background for digital viewing"
},
"language_consistency": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Detects mixed languages in marketing text to ensure market-appropriate single-language content"
},
"visual_hierarchy_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Evaluates clear visual hierarchy and eye flow for digital assets (logo, main visual, headline, message, CTA)"
},
"element_alignment": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Verifies proper horizontal and vertical alignment of all design elements following professional design standards"
},
"product_visibility_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Assesses product clarity, visibility, accuracy, and presentation quality optimized for digital viewing"
},
"logo_visibility_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Checks if brand logo is prominent and recognizable across digital devices with adequate size and contrast"
},
"call_to_action_general": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Analyzes CTA effectiveness for digital engagement (imperative verb, ≤10 words, clear action, clickable design)"
},
"accessibility": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Comprehensive WCAG accessibility evaluation across 7 dimensions (text legibility, contrast, layout, interactivity, content, cognitive load, universal design)"
},
"inclusive": {
"enabled": true,
"weight": 1.0,
"llm": "Gemini",
"description": "Evaluates inclusive representation using Unstereotype 3Ps Framework (Presence, Perspective, Personality)"
}
}
}