What problem does it solve? Parsing structured text like quizzes, forms, and invoices often leads teams to send everything to an LLM, which is slow and expensive, or to rely on brittle regex alone. This Skill provides a decision framework and hybrid pipeline that handles 95-98% of cases with deterministic regex and reserves cheap LLM calls only for low-confidence edge cases. ## Core Features & Use Cases - Decision Framework: A clear flowchart for choosing regex, LLM, or a hybrid approach based on how consistent the text format is. - Hybrid Pipeline Pattern: Regex parser, text cleaner, confidence scorer, and LLM validator working together with a 0.95 confidence threshold. - Confidence Scoring: Programmatic flags for issues like missing answers, few choices, or short text so only flagged items consume LLM tokens. - Use Case: Parsing 410 quiz questions where regex succeeds on 98% of items and only about 5 cheap Haiku-class LLM calls are needed, cutting costs by roughly 95% versus an all-LLM approach. ## Quick Start Ask the AI to build a hybrid parser that extracts structured items from your document with regex first and validates only low-confidence results with an LLM.