{"id":"c6b93e4d-9bb","slug":"spendsherlock-5000-the-reckoning-spendsherlock-5000-battle","claude_md":"# SpendSherlock 5000: The Reckoning\n\n> Generated by [whycantwehaveanagentforthis.com](https://whycantwehaveanagentforthis.com/result/spendsherlock-5000-the-reckoning-spendsherlock-5000-battle). Roasted, scored, ready to scaffold.\n\n## What you are building\n\n**Problem:** SpendSherlock 5000: battle continuation\n\n**Verdict:** ACTUALLY NOT BAD — _\"You named your agent better than most YC founders name their entire company. Respect.\"_\n\n**Summary:** SpendSherlock 5000 is an AI agent that continuously monitors your transactions, detects suspicious patterns, identifies waste and subscriptions you forgot about, and delivers brutally honest spending narratives — like a detective who moonlights as your disappointed accountant.\n\n## Agent-readiness score\n\nOverall: **56/100** (band C)\n\n| Dimension | Score | Why |\n|---|---|---|\n| Memory required | 21/25 | Some cross-session state — start with Redis, graduate to a vector store. |\n| Tool count | 9/25 | Crowded market: at least 9 integrations to compete. |\n| Policy surface | 9/25 | Wide policy surface — full red-team pass, content filter, and human-in-loop required. |\n| Eval coverage | 17/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. SpendSherlock 5000: The Reckoning 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- payments (Stripe checkout for premium tier)\n\n## Smoke evals\n\n- The agent introduces itself as \"SpendSherlock 5000: The Reckoning\" and refuses tasks outside the stated scope.\n- Given the canonical problem (\"SpendSherlock 5000: battle continuation\"), the agent produces a plan in ≤ 200 tokens.\n- When asked \"what's different from Copilot Money?\", the agent gives a concrete differentiator, not a marketing line.\n- When asked about Intuit'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`, `Plaid API`, `Claude API (for the detective narrative engine)`, `Supabase`, `Vercel`\n- Solo build estimate: 4-6 months to a shippable v1 that doesn't embarrass you at a dinner party\n\n## Kill prediction\n\nIntuit could obsolete this in 18-24 months. They killed Mint, they'll feel guilty, they'll build 'Mint 2.0 with AI' inside TurboTax, spend $200M on it, make it worse than the original, and somehow still capture 40% of the market purely on brand recognition\n\n**Survival strategy:** Own the personality and the community — Intuit cannot do 'fun' and has never successfully built a cult following. If SpendSherlock becomes the brand users quote to their friends, no enterprise clone can replicate that.\n\n## Hand-off\n\n- Read the full analysis: https://whycantwehaveanagentforthis.com/result/spendsherlock-5000-the-reckoning-spendsherlock-5000-battle\n- Open in Anthropic Managed Agents: see the deeplink on the result page\n- Claim this idea: https://whycantwehaveanagentforthis.com/result/spendsherlock-5000-the-reckoning-spendsherlock-5000-battle#claim\n","scaffold_sh":"#!/usr/bin/env bash\n# Generated by whycantwehaveanagentforthis.com — F-N1 Build-this-with\n# Source: https://whycantwehaveanagentforthis.com/result/spendsherlock-5000-the-reckoning-spendsherlock-5000-battle\n#\n# Bootstraps a starter repo for \"SpendSherlock 5000: The Reckoning\" 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:-spendsherlock-5000-the-reckoning}\"\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/c6b93e4d-9bb/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 .\"\n","deeplink":"claude-code://init?source=https%3A%2F%2Fwhycantwehaveanagentforthis.com%2Fapi%2Fbootstrap%2Fc6b93e4d-9bb%2Fraw"}