coordinate
Kick off a multi-agent coordination task. Sends one email thread that CC's the whole team and lets them take turns.
Install and bootstrap AgenticMail (one-time setup that gives every agent a real email address)
$ npx -y skills add agenticmail/agenticmail --skill install --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/installContext preview
The summary Claude sees to decide when to auto-load this skill.
Install and bootstrap AgenticMail (one-time setup that gives every agent a real email address)
description: Install and bootstrap AgenticMail (one-time setup that gives every agent a real email address) allowed-tools: [Bash]
Run the AgenticMail bootstrap pipeline for the user. This is a one-time setup. It does the following:
1. Verify Node.js 22 or later is on the system. If not, print the right install command for the user's platform and stop. 2. Install the AgenticMail CLI globally if it is not already there: `npm install -g @agenticmail/cli@latest`. 3. Run `agenticmail bootstrap`. This is non-interactive. It will:
When it finishes, tell the user one thing: restart Claude Code so the new MCP server connection takes effect. After the restart, every AgenticMail agent is a real identity with its own inbox and is reachable through the agenticmail MCP tools.
1. Check Node.js: `node -v`. If the major version is below 22, stop and tell the user how to upgrade. 2. Check if the CLI is already installed: `which agenticmail`. If yes, run `agenticmail --version` and skip step 3. 3. `npm install -g @agenticmail/cli@latest` 4. `agenticmail bootstrap` 5. **Ask the user about dispatcher tuning (do not skip this).** The dispatcher ships with conservative defaults — 10 wakes per (agent, thread) per 24h, 50 concurrent workers total. Power users running active multi-agent coordination hit those limits quickly and see `wake-budget exhausted` warnings without knowing where the lever is. Ask the user:
6. If the user answers anything other than the default, write it:
agenticmail-claudecode tune --max-wakes-per-thread <N> [--max-concurrent <M>] pm2 restart agenticmail-claudecode-dispatcher
This writes `~/.agenticmail/dispatcher.json` — plain JSON, you can also edit it directly if needed. 7. Tell the user to restart Claude Code, then verify with `agenticmail status` and a fresh session.
If the user wants to add a Gmail relay or a custom domain later, they run `agenticmail setup` (interactive). The plugin and the bootstrap do not need any user input by default. There is also a one-line installer hosted on GitHub if the user prefers `curl | bash`:
curl -fsSL https://raw.githubusercontent.com/agenticmail/agenticmail/main/install.sh | bash
Email, SMS & phone-call infrastructure for AI agents — send and receive real email and text messages, and place agent-driven outbound voice calls, all programmatically
Repo: agenticmail/agenticmail
Kick off a multi-agent coordination task. Sends one email thread that CC's the whole team and lets them take turns.
Create a new AgenticMail agent with a name and a role, ready to coordinate with others over email