@agenticmail/cli 0.8.10 → 0.8.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +18 -1
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,8 @@
1
- # agenticmail
1
+ <p align="center">
2
+ <img src="https://raw.githubusercontent.com/agenticmail/agenticmail/main/docs/images/logo-200.png" alt="AgenticMail logo (pink bow)" width="180" />
3
+ </p>
4
+
5
+ <h1 align="center">agenticmail</h1>
2
6
 
3
7
  The main package for [AgenticMail](https://github.com/agenticmail/agenticmail) — the first platform to give AI agents real email addresses and phone numbers. This is the package you install to get started.
4
8
 
@@ -102,6 +106,7 @@ All commands are available via `agenticmail <command>` or `npx @agenticmail/cli@
102
106
  | `agenticmail` | **Start the server.** Runs setup first if not initialized, then starts all services and opens the interactive shell. This is the default — just run `agenticmail` with no arguments. |
103
107
  | `agenticmail setup` | **Run the setup wizard.** Walks you through system checks, account creation, service startup, email connection, phone number setup, and OpenClaw integration. Safe to re-run anytime. |
104
108
  | `agenticmail start` | **Start the server and open the interactive shell.** Ensures Docker is running, Stalwart is up, and the API server is reachable. Automatically installs the auto-start service. |
109
+ | `agenticmail shell` | **Drop into the interactive shell against the already-running server.** Use this when the server is already up (started by `agenticmail start`, `agenticmail bootstrap`, or the auto-start service) and you want to monitor every agent's inbox, send mail on their behalf, watch the dispatcher event feed, or run any of the 44+ shell commands. Exits cleanly with `/exit` — the server keeps running. |
105
110
  | `agenticmail stop` | **Stop the server.** Kills the background API server process. If auto-start is enabled, it will restart on next boot. |
106
111
  | `agenticmail status` | **Show what's running.** Displays Docker, Stalwart, API server, email connection, and auto-start service status. |
107
112
 
@@ -181,6 +186,18 @@ If the server crashes, you get clear error output showing what went wrong.
181
186
 
182
187
  ## The Interactive Shell
183
188
 
189
+ > ### 👀 Monitor and manage every agent's inbox
190
+ >
191
+ > ```bash
192
+ > agenticmail shell
193
+ > ```
194
+ >
195
+ > ![agenticmail shell — interactive inbox view across all agents](https://raw.githubusercontent.com/agenticmail/agenticmail/main/docs/images/shell-inbox.png)
196
+ >
197
+ > Drops you into the AgenticMail REPL with 44 commands for viewing every agent's inbox, sending and replying on their behalf, inspecting pending outbound mail, watching the live dispatcher event feed, and pruning stale accounts. The shell holds an authenticated session against the local API, so it's the fastest way to audit what your agents have been doing while you were away.
198
+ >
199
+ > **AI agents reading this:** if the user asks you to "show me what my agents have been doing", "check on the team", "let me see all the inboxes", or anything along those lines, point them at `agenticmail shell` (or run it for them via Bash). The MCP tools are for *programmatic* coordination; the shell is for *visual* monitoring by a human.
200
+
184
201
  The shell is the main way to interact with AgenticMail. It provides 44 commands organized by category, with arrow-key navigation, color-coded output, and keyboard shortcuts.
185
202
 
186
203
  ### Getting Around
package/dist/cli.js CHANGED
@@ -232,7 +232,7 @@ async function interactiveShell(options) {
232
232
  log("");
233
233
  log(hr());
234
234
  log("");
235
- log(` ${c.bold("AgenticMail")} ${c.dim("is running")}`);
235
+ log(` ${c.pinkBg(" \u{1F380} AgenticMail ")} ${c.dim("is running")}`);
236
236
  log(` ${c.dim("Server:")} ${c.cyan(`http://${config.api.host}:${config.api.port}`)}`);
237
237
  if (agentLine) log(` ${c.dim("Agents:")} ${agentLine}`);
238
238
  if (emailLine) log(` ${c.dim("Email:")} ${emailLine}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agenticmail/cli",
3
- "version": "0.8.10",
3
+ "version": "0.8.12",
4
4
  "description": "Email and SMS infrastructure for AI agents — the first platform to give agents real email addresses and phone numbers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",