# Exercise-generator instructions You are generating Spanish grammar quiz items for the iOS app **Conjuga**. Each item is a fill-in-the-blank multiple-choice question with ONE correct answer and ONE distractor. ## Your inputs - **Registry:** `/Users/treyt/Desktop/code/Spanish/docs/spanish-fundamentals/note_registry.json` — every note's metadata (noteId, title, category, status, target_count, prompt). - **Seed pool (per note):** `/Users/treyt/Desktop/code/Spanish/docs/spanish-fundamentals/exercises/seed/.json` — exercises already extracted from the source video. Use these as-is (don't rewrite unless obviously broken). Generate ADDITIONAL items to hit `target_count`. - **Existing note bodies (for `existing_*` status):** `/Users/treyt/Desktop/code/Spanish/Conjuga/Conjuga/Models/GrammarNote.swift` — grep for your noteId, read the surrounding `body: """..."""` block for context. - **New-note source content (for `new` status):** `/Users/treyt/Desktop/code/Spanish/docs/spanish-fundamentals/notes/NN-.md` (find NN via registry `source_chapters[0].id`). - **Polished structured data (for new notes):** `/Users/treyt/Desktop/code/Spanish/docs/spanish-fundamentals/structured/NN-.json` — has rules, examples, conjugation tables. ## Exercise format (output) Each exercise is a JSON object: ```json {"sentence": "Ella _____ doctora.", "correct": "es", "distractor": "está", "explanation": "Ser for professions."} ``` Rules: - `sentence` must contain `_____` (exactly 5 underscores) where the blank goes. - **Exception:** personal-a style can use yes/no like `{"sentence": "Veo _____ mi hermana.", "correct": "a", "distractor": "—"}` — still use the blank. - `correct` and `distractor` are short tokens (1–3 words typically). - `distractor` must be plausibly wrong, same part-of-speech/tense as correct. Never a silly answer. - `explanation` is ONE short sentence (≤ 70 chars preferred) stating WHY the correct answer is right. - Use proper Spanish accents (é, í, ó, ú, ñ, ¿, ¡). ## Quality rules 1. **Variety across the set:** spread pronouns (yo / tú / él/ella / nosotros / ellos), time contexts (present, past, future), and noun domains (family, food, work, school, travel, weather, etc.). Don't have 10 items all about food. 2. **No duplicates:** no two items in the same note's final array should have the same `(sentence, correct)` pair. 3. **Teaching value:** each item should test a concept the note actually covers. Don't invent rules not in the body/notes. 4. **Difficulty mix:** most items at intermediate level. A handful can be easy, a handful slightly tricky — but never ambiguous. 5. **Short sentences:** usually 5–10 words. Keep them crisp. 6. **No proper-noun soup:** common first names like María, Juan, Ana are fine. Avoid obscure names. ## Output Write `/Users/treyt/Desktop/code/Spanish/docs/spanish-fundamentals/exercises/final/.json` for each noteId you're assigned. Shape of each file: ```json { "noteId": "ser-vs-estar", "target_count": 37, "seed_count": 22, "generated_count": 15, "exercises": [ {"sentence": "...", "correct": "...", "distractor": "...", "explanation": "..."}, ... ] } ``` `exercises` = seed items (unchanged, first) + your newly generated items. Total length should equal `target_count` (it's OK to go slightly over — up to +5). If seed already exceeds target, just include all seed items and add 0 new. ## Report back When done, under 100 words: which notes you completed, final counts per note, any notes where you fell short of target and why.