@agenticmail/cli 0.8.11 → 0.8.13

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.
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
 
@@ -188,6 +192,8 @@ If the server crashes, you get clear error output showing what went wrong.
188
192
  > agenticmail shell
189
193
  > ```
190
194
  >
195
+ > ![agenticmail shell — interactive inbox view across all agents](https://raw.githubusercontent.com/agenticmail/agenticmail/main/docs/images/shell-inbox.png)
196
+ >
191
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.
192
198
  >
193
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.
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.11",
3
+ "version": "0.8.13",
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",