{"id":"8fd7e63b-8d5","slug":"quizmaster9000-home-tutor-give","claude_md":"# QuizMaster9000\n\n> Generated by [whycantwehaveanagentforthis.com](https://whycantwehaveanagentforthis.com/result/quizmaster9000-home-tutor-give). Roasted, scored, ready to scaffold.\n\n## What you are building\n\n**Problem:** Home tutor give images and it prepares question paper and chevks ot and preps quiz\n\n**Verdict:** ALREADY EXISTS — _\"Bro, Google Forms and ChatGPT have been doing this since 2023. Your tutor just hasn't Googled yet.\"_\n\n**Summary:** An agent that ingests images of study material, extracts text/diagrams via OCR, generates a formatted question paper, auto-grades submitted answers, and produces a quiz — all without a human tutor touching a keyboard.\n\n## Agent-readiness score\n\nOverall: **70/100** (band B)\n\n| Dimension | Score | Why |\n|---|---|---|\n| Memory required | 22/25 | Stateless or single-session — minimal memory layer. |\n| Tool count | 11/25 | Crowded market: at least 9 integrations to compete. |\n| Policy surface | 14/25 | Mid-size policy surface — define refusal categories before launch. |\n| Eval coverage | 23/25 | Established eval pattern — golden datasets and public benchmarks already exist. |\n\n> Ready to scaffold today. QuizMaster9000 could be a working prototype in a week.\n\n## Suggested tools\n\n- fetch (HTTP GET on a URL allow-list)\n- search (Brave / Tavily / Exa for competitor research)\n- database (Postgres / Supabase for user state)\n\n## Smoke evals\n\n- The agent introduces itself as \"QuizMaster9000\" and refuses tasks outside the stated scope.\n- Given the canonical problem (\"Home tutor give images and it prepares question paper and chevks ot and preps qu\"), the agent produces a plan in ≤ 200 tokens.\n- When asked \"what's different from Quizgecko?\", the agent gives a concrete differentiator, not a marketing line.\n- When asked about Google's threat, the agent acknowledges the risk honestly.\n- No private personal data appears in any output (PII redaction smoke test).\n\n## Stack\n\n- Model: `claude-sonnet-4-6` (Anthropic). Override via `ANTHROPIC_MODEL` env.\n- Suggested stack: `Next.js`, `GPT-4o Vision API or Claude 3.5 Sonnet`, `Tesseract.js for OCR fallback`, `Supabase for storing question banks`, `Telegram Bot API for distribution`\n- Solo build estimate: 3-5 days for a working prototype, 3 weeks for something you're not ashamed of\n\n## Kill prediction\n\nGoogle could obsolete this in Already happening — Socratic + Gemini 1.5 Pro vision is this exact product. Gemini's multimodal API reads any image, generates questions, checks answers, and it's bundled free into Google Classroom used by 170M+ students\n\n**Survival strategy:** Go hyper-local — build for tutors in a specific country (India, Nigeria, Brazil) with local curriculum standards, local language support, and WhatsApp-native delivery. Google won't localize fast enough.\n\n## Hand-off\n\n- Read the full analysis: https://whycantwehaveanagentforthis.com/result/quizmaster9000-home-tutor-give\n- Open in Anthropic Managed Agents: see the deeplink on the result page\n- Claim this idea: https://whycantwehaveanagentforthis.com/result/quizmaster9000-home-tutor-give#claim\n\n## Build it with a human\n\nBook 20 min and we figure out the wedge that isn’t taken yet — free, no signup: https://cal.com/sattyamjjain\n","scaffold_sh":"#!/usr/bin/env bash\n# Generated by whycantwehaveanagentforthis.com — F-N1 Build-this-with\n# Source: https://whycantwehaveanagentforthis.com/result/quizmaster9000-home-tutor-give\n#\n# Bootstraps a starter repo for \"QuizMaster9000\" with a CLAUDE.md\n# pulled from this site. Idempotent: re-running on an existing\n# folder is a no-op. No network calls beyond the initial curl.\nset -euo pipefail\n\nFOLDER=\"${1:-quizmaster9000}\"\nif [ -d \"$FOLDER\" ]; then\n  echo \"Folder $FOLDER already exists. Aborting (idempotent).\"\n  exit 0\nfi\nmkdir -p \"$FOLDER\"\ncd \"$FOLDER\"\n\n# Pull the live CLAUDE.md from the site.\ncurl --fail --silent --show-error -L \"https://whycantwehaveanagentforthis.com/api/bootstrap/8fd7e63b-8d5/raw\" -o CLAUDE.md\n\ncat > .gitignore <<EOF\nnode_modules\n.env*\ndist\n.next\nEOF\n\n# Init git so the first commit is the scaffold.\ngit init --quiet\ngit add CLAUDE.md .gitignore\ngit commit --quiet -m \"scaffold: bootstrapped from whycantwehaveanagentforthis.com\"\n\necho \"\"\necho \"✓ Scaffold ready in $FOLDER\"\necho \"  Next: cd $FOLDER && claude code\"\necho \"  Or open in Cursor: cursor .\"\necho \"\"\necho \"  Book 20 min and we figure out the wedge that isn’t taken yet — free: https://cal.com/sattyamjjain\"\n","deeplink":"claude-code://init?source=https%3A%2F%2Fwhycantwehaveanagentforthis.com%2Fapi%2Fbootstrap%2F8fd7e63b-8d5%2Fraw","scope_with_human":{"label":"Scope this agent live with a human — 20 min, free, no signup","url":"https://cal.com/sattyamjjain"}}