Content Validation Skill
Validate AI-generated content against the TAYA philosophy (They Ask, You Answer) rules.
What It Does
- •Scan content for banned marketing phrases (superlatives, corporate speak, generic filler)
- •Check for robotic AI patterns
- •If violations are found, call Gemini to rewrite the offending sections
- •Return cleaned content ready for Shopify
Payload Format
typescript
{
description: string; // Product description text
pros: string[]; // List of pros
cons: string[]; // List of cons
faqs: Array<{ question: string; answer: string }>;
expertOpinion?: string; // Optional expert review
}
Output
- •
wasFixed: boolean — whether corrections were applied - •
violationCount: number — how many violations were found - •
violations: array — details of each violation - •
cleanedContent: object — the corrected content
Triggers
- •pipeline: Called automatically by the
product-enrichmentskill - •manual: Can be triggered from the Admin Dashboard