{"id":"1bbf13d4-511","slug":"snapbot-expressivo-9000-agent-automate-snapchat","claude_md":"# SnapBot Expressivo 9000\n\n> Generated by [whycantwehaveanagentforthis.com](https://whycantwehaveanagentforthis.com/result/snapbot-expressivo-9000-agent-automate-snapchat). Roasted, scored, ready to scaffold.\n\n## What you are building\n\n**Problem:** An agent to automate Snapchat with expressions\n\n**Verdict:** ALREADY EXISTS — _\"Congratulations, you've reinvented the wheel — except the wheel is made of Terms of Service violations.\"_\n\n**Summary:** An AI agent that automates Snapchat interactions — sending snaps, reacting with expressions/emojis, and managing streaks — without a human touching the app.\n\n## Agent-readiness score\n\nOverall: **59/100** (band C)\n\n| Dimension | Score | Why |\n|---|---|---|\n| Memory required | 22/25 | Some cross-session state — start with Redis, graduate to a vector store. |\n| Tool count | 9/25 | Crowded market: at least 8 integrations to compete. |\n| Policy surface | 17/25 | Mid-size policy surface — define refusal categories before launch. |\n| Eval coverage | 11/25 | Eval scaffolding doable — write 50 paired examples and grade with an LLM-as-judge. |\n\n> Worth building, but plan for the long-tail. SnapBot Expressivo 9000 needs runway, not just speed.\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- vector-store (embedding-based retrieval)\n\n## Smoke evals\n\n- The agent introduces itself as \"SnapBot Expressivo 9000\" and refuses tasks outside the stated scope.\n- Given the canonical problem (\"An agent to automate Snapchat with expressions\"), the agent produces a plan in ≤ 200 tokens.\n- When asked \"what's different from SnapAutomate (defunct)?\", the agent gives a concrete differentiator, not a marketing line.\n- When asked about Snapchat (Snap Inc.)'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: `Appium`, `Android Emulator / Genymotion`, `Python`, `OpenAI Vision API for expression detection`, `Residential Proxy Network (Bright Data)`\n- Solo build estimate: 2-4 weeks to build, 2 days before first ban, 6 weeks of crying and patching\n\n## Kill prediction\n\nSnapchat (Snap Inc.) could obsolete this in Already happening — and will happen again within 2 weeks of launch. Device fingerprinting, behavioral ML anomaly detection, certificate pinning updates, and a strongly-worded legal letter if you get traction\n\n**Survival strategy:** Partner with a Snapchat-approved developer, build only on the official Business API, and pivot to expression/content generation rather than account automation\n\n## Hand-off\n\n- Read the full analysis: https://whycantwehaveanagentforthis.com/result/snapbot-expressivo-9000-agent-automate-snapchat\n- Open in Anthropic Managed Agents: see the deeplink on the result page\n- Claim this idea: https://whycantwehaveanagentforthis.com/result/snapbot-expressivo-9000-agent-automate-snapchat#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/snapbot-expressivo-9000-agent-automate-snapchat\n#\n# Bootstraps a starter repo for \"SnapBot Expressivo 9000\" 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:-snapbot-expressivo-9000}\"\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/1bbf13d4-511/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%2F1bbf13d4-511%2Fraw","scope_with_human":{"label":"Scope this agent live with a human — 20 min, free, no signup","url":"https://cal.com/sattyamjjain"}}