{
  "markdown": "# AgentTeam Email\n\n<p align=\"center\">\n  <a href=\"https://www.agentteam.email\">\n    <img\n      src=\"packages/frontend/public/ogimage.jpg\"\n      alt=\"AgentTeam Email product preview\"\n    />\n  </a>\n</p>\n\n<p align=\"center\">\n  Open-source email infrastructure for AI agents. Give every agent a dedicated\n  mailbox, review untrusted mail safely, and send outbound mail from connected\n  domains.\n</p>\n\n<p align=\"center\">\n  <a href=\"https://www.agentteam.email\"><strong>Website</strong></a>\n  ·\n  <a href=\"https://app.agentteam.email\"><strong>App</strong></a>\n  ·\n  <a href=\"https://agentteamemail.mintlify.com\"><strong>Docs</strong></a>\n  ·\n  <a href=\"https://agentteamemail.mintlify.com/get-started/quickstart\"><strong>Quickstart</strong></a>\n  ·\n  <a href=\"https://agentteamemail.mintlify.com/self-host/setup\"><strong>Self-hosting</strong></a>\n  ·\n  <a href=\"https://agentteamhq.github.io/agentteam-email/\"><strong>Storybook</strong></a>\n</p>\n\n<p align=\"center\">\n  <a href=\"LICENSE\"><img src=\"https://img.shields.io/badge/license-MIT-blue.svg\" alt=\"MIT license\" /></a>\n  <a href=\"https://agentteamemail.mintlify.com\"><img src=\"https://img.shields.io/badge/docs-Mintlify-111827.svg\" alt=\"Documentation\" /></a>\n  <a href=\"https://github.com/agentteamhq/agentteam-email/actions/workflows/build-test-deploy.yml\"><img src=\"https://github.com/agentteamhq/agentteam-email/actions/workflows/build-test-deploy.yml/badge.svg\" alt=\"Build, Test and Deploy workflow\" /></a>\n  <a href=\"https://agentteamhq.github.io/agentteam-email/\"><img src=\"https://img.shields.io/badge/storybook-live-ff4785.svg\" alt=\"Storybook\" /></a>\n  <a href=\"https://agentteamemail.mintlify.com/self-host/helm\"><img src=\"https://img.shields.io/badge/helm-OCI-0f1689.svg\" alt=\"Helm OCI chart\" /></a>\n</p>\n\n## Core Capabilities\n\n- Create mailboxes for people and agents, then control routing, groups, and\n  permissions from one admin surface.\n- Full web email client for everyday work mail, startup team inboxes, and\n  agent-operated accounts.\n- Seamless Cloudflare integration for sending and receiving through your domain.\n- Safe message review for agents, with untrusted mail opened in a dedicated\n  product surface.\n- Self-hosted deployment with Docker Compose or Helm.\n- A portable `at-email` CLI and agent skill for operating authorized mailboxes.\n\n## Why It Matters\n\n- **Give agents real inboxes without handing them your inbox:** agents can read,\n  draft, and send through scoped mailbox access instead of broad personal account\n  access.\n- **Start self-hosted and keep ownership:** run it yourself, adapt it to your\n  workflow, and contribute changes back under a permissive license.\n\n## Use Cases\n\n- **Shared inbox triage:** route support, hiring, press, keyword alerts, and\n  partner mail to agents that can summarize, classify, and surface what needs\n  attention.\n- **Human-reviewed sending:** let agents draft replies or outbound mail while\n  people approve, edit, or restrict what actually gets sent.\n- **Agent-owned operations:** give long-running agents their own addresses for\n  vendor accounts, research workflows, outreach, and follow-up.\n\n## How It Works\n\nAgentTeam Email is built for operators running mail for AI agents.\n\n- **Agent mailboxes:** each agent gets a real mailbox for receiving, reviewing,\n  and sending mail.\n- **Operator-first self-hosting:** run the web app and mail services on your own\n  infrastructure.\n- **Bucket-first receive path:** inbound mail lands in R2 before AgentTeam Email\n  processes it, so backlog or downtime affects processing instead of initial\n  receipt.\n\n```mermaid\n%%{init: {\"flowchart\": {\"curve\": \"basis\"}}}%%\nflowchart TB\n  mail[\"Inbound mail<br/><small>(Cloudflare)</small>\"] --> bucket[(R2 bucket)]\n  bucket --> app[AgentTeam Email]\n  app --> bucket\n```\n\nFor deeper detail, see [ARCHITECTURE.md](ARCHITECTURE.md) and\n[Mail Flow](https://agentteamemail.mintlify.com/how-it-works/mail-flow).\n\n## Get Started\n\nStart with the\n[Quickstart](https://agentteamemail.mintlify.com/get-started/quickstart) to\ngo from install to your first connected domain and mailbox.\n\nUseful setup docs:\n\n- [Self-host setup guide](https://agentteamemail.mintlify.com/self-host/setup)\n- [Docker Compose deployment](https://agentteamemail.mintlify.com/self-host/docker-compose)\n- [Helm deployment](https://agentteamemail.mintlify.com/self-host/helm)\n- [Public ingress](https://agentteamemail.mintlify.com/self-host/public-ingress)\n- [Deployment validation](https://agentteamemail.mintlify.com/self-host/validation)\n\n## Self-Hosting\n\nAgentTeam Email can run on one host with Docker Compose or on Kubernetes with\nHelm. The self-hosting docs cover environment setup, Cloudflare connection, R2\nstorage, ingress, and post-install checks.\n\n- [Deploy with Docker Compose](https://agentteamemail.mintlify.com/self-host/docker-compose)\n- [Deploy with Helm](https://agentteamemail.mintlify.com/self-host/helm)\n\n## CLI And Agent Skill\n\nThe `at-email` CLI lets agents and operators check mailbox status, review\nmessages, search mail, and send approved outbound email.\n\nCheck local availability:\n\n```bash\ncommand -v at-email\nat-email --version\n```\n\nOne-off npm usage:\n\n```bash\nnpx --yes @agentteamhq/email@latest --version\n```\n\nAgent setup paths:\n\n```bash\nat-email agent connect\nat-email agent trial\nat-email agent enroll TOKEN\n```\n\nThe bundled agent skill lives in [skills/at-email-cli](skills/at-email-cli).\nRead the\n[CLI and agent skill docs](https://agentteamemail.mintlify.com/usage/cli-and-agent-skill)\nfor the full workflow.\n\n## Development\n\nInstall repo-managed tools from the repository root:\n\n```bash\nmise install\npnpm install\n```\n\nFor the full local development workflow, read [SETUP.md](SETUP.md).\n\n## Repository Layout\n\n- `apps/web-server`: deployable web app and Node server.\n- `apps/mail-control-service`: mail runtime coordination service.\n- `apps/at-email-cli`: portable CLI distribution.\n- `packages/frontend`: authenticated product UI and Storybook surface.\n- `packages/backend`: backend APIs and integration logic.\n- `packages/cloudflare-email-worker`: Cloudflare Email Routing Worker source.\n- `charts/agentteam-email`: Helm chart for Kubernetes installs.\n- `docs`: Mintlify documentation source.\n- `skills/at-email-cli`: agent skill source for CLI mailbox operation.\n\n## Security\n\nPlease report vulnerabilities through GitHub Security Advisories, not public\nissues. See [SECURITY.md](SECURITY.md) for the private reporting path and\nsecurity-sensitive contribution rules.\n\n## Contributing\n\nSee [CONTRIBUTING.md](CONTRIBUTING.md) for local setup, validation, pull request\nguidance, and public issue expectations. Keep public issues and pull requests\nfree of secrets, credentials, tokens, private hostnames, and private operational\ndetails.\n\n## License\n\nMIT. See [LICENSE](LICENSE).\n",
  "bytes": 6778,
  "sha": "12451c7a44ea12f054e74a1ac936b26b1f103496bb279dab76b67034317ba2cf",
  "repo_slug": "agentteamhq/agentteam-email",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/skl_agentteamhq_agentteam_email_at_email_cli_534a4d8d/readme"
}