{"id":"34096a82-029","slug":"existentialcrisisbot-404","claude_md":"# ExistentialCrisisBot 404\n\n> Generated by [whycantwehaveanagentforthis.com](https://whycantwehaveanagentforthis.com/result/existentialcrisisbot-404). Roasted, scored, ready to scaffold.\n\n## What you are building\n\n**Problem:** what i can do?\n\n**Verdict:** EMBARRASSINGLY EASY — _\"You submitted 'what can I do?' to an AI agent analyzer. The agent you need is a therapist.\"_\n\n**Summary:** An agent that figures out what to do when the user has absolutely no idea what they want to do.\n\n## Agent-readiness score\n\nOverall: **78/100** (band B)\n\n| Dimension | Score | Why |\n|---|---|---|\n| Memory required | 24/25 | Stateless or single-session — minimal memory layer. |\n| Tool count | 13/25 | Mid-sized tool surface — expect 5-10 integrations to be table-stakes. |\n| Policy surface | 16/25 | Mid-size policy surface — define refusal categories before launch. |\n| Eval coverage | 25/25 | Established eval pattern — golden datasets and public benchmarks already exist. |\n\n> Ready to scaffold today. ExistentialCrisisBot 404 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\n## Smoke evals\n\n- The agent introduces itself as \"ExistentialCrisisBot 404\" and refuses tasks outside the stated scope.\n- Given the canonical problem (\"what i can do?\"), the agent produces a plan in ≤ 200 tokens.\n- When asked \"what's different from ChatGPT?\", the agent gives a concrete differentiator, not a marketing line.\n- When asked about OpenAI'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: `A keyboard`, `Complete sentences`, `whycantwehaveanagentforthis.com`, `Retry button`\n- Solo build estimate: 4 minutes — it's called opening ChatGPT\n\n## Kill prediction\n\nOpenAI could obsolete this in Already happened. ChatGPT has been answering 'what can I do' since November 2022. You're about 2 years late.\n\n**Survival strategy:** Submit an actual problem with more than 4 words and try again. We'll be here.\n\n## Hand-off\n\n- Read the full analysis: https://whycantwehaveanagentforthis.com/result/existentialcrisisbot-404\n- Open in Anthropic Managed Agents: see the deeplink on the result page\n- Claim this idea: https://whycantwehaveanagentforthis.com/result/existentialcrisisbot-404#claim\n","scaffold_sh":"#!/usr/bin/env bash\n# Generated by whycantwehaveanagentforthis.com — F-N1 Build-this-with\n# Source: https://whycantwehaveanagentforthis.com/result/existentialcrisisbot-404\n#\n# Bootstraps a starter repo for \"ExistentialCrisisBot 404\" 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:-existentialcrisisbot-404}\"\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/34096a82-029/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%2F34096a82-029%2Fraw"}