{"id":"24d1c37d-d22","slug":"inboxarchivistbot-9000-agent-catalogues-emails","claude_md":"# InboxArchivistBot 9000\n\n> Generated by [whycantwehaveanagentforthis.com](https://whycantwehaveanagentforthis.com/result/inboxarchivistbot-9000-agent-catalogues-emails). Roasted, scored, ready to scaffold.\n\n## What you are building\n\n**Problem:** An agent that catalogues my emails\n\n**Verdict:** ALREADY EXISTS — _\"Congratulations, you just reinvented Gmail labels, a feature that shipped in 2004.\"_\n\n**Summary:** An AI agent that reads incoming emails, extracts metadata, and organizes them into categories, folders, or a searchable database automatically.\n\n## Agent-readiness score\n\nOverall: **73/100** (band B)\n\n| Dimension | Score | Why |\n|---|---|---|\n| Memory required | 23/25 | Stateless or single-session — minimal memory layer. |\n| Tool count | 11/25 | Crowded market: at least 8 integrations to compete. |\n| Policy surface | 15/25 | Mid-size policy surface — define refusal categories before launch. |\n| Eval coverage | 24/25 | Established eval pattern — golden datasets and public benchmarks already exist. |\n\n> Ready to scaffold today. InboxArchivistBot 9000 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 \"InboxArchivistBot 9000\" and refuses tasks outside the stated scope.\n- Given the canonical problem (\"An agent that catalogues my emails\"), the agent produces a plan in ≤ 200 tokens.\n- When asked \"what's different from SaneBox?\", 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: `Gmail API / Microsoft Graph API`, `Claude API or GPT-4o`, `Next.js`, `PostgreSQL`, `Resend for notifications`\n- Solo build estimate: 1-2 weekends if you've touched an API before\n\n## Kill prediction\n\nGoogle could obsolete this in Already happening — Gemini in Gmail launched in 2024. Google is embedding Gemini directly into Gmail with native summarization, categorization, and smart replies. No OAuth dance, no third-party trust issues, zero extra cost for Workspace users. Your agent doesn't even get a chance to load.\n\n**Survival strategy:** Niche down hard into a specific vertical — legal firms needing compliance-grade email logging, or researchers needing semantic search across years of academic correspondence. Generic email cataloguing is dead. Domain-specific cataloguing with specialized ontologies might survive.\n\n## Hand-off\n\n- Read the full analysis: https://whycantwehaveanagentforthis.com/result/inboxarchivistbot-9000-agent-catalogues-emails\n- Open in Anthropic Managed Agents: see the deeplink on the result page\n- Claim this idea: https://whycantwehaveanagentforthis.com/result/inboxarchivistbot-9000-agent-catalogues-emails#claim\n","scaffold_sh":"#!/usr/bin/env bash\n# Generated by whycantwehaveanagentforthis.com — F-N1 Build-this-with\n# Source: https://whycantwehaveanagentforthis.com/result/inboxarchivistbot-9000-agent-catalogues-emails\n#\n# Bootstraps a starter repo for \"InboxArchivistBot 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:-inboxarchivistbot-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/24d1c37d-d22/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%2F24d1c37d-d22%2Fraw"}