agenticmail 0.5.2 → 0.5.3

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 +2 -2
  2. package/dist/cli.js +17 -12
  3. package/package.json +9 -3
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # agenticmail
2
2
 
3
- The main package for [AgenticMail](https://github.com/agenticmail/agenticmail) — email infrastructure for AI agents. This is the package you install to get started.
3
+ 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
4
 
5
- It bundles a setup wizard, API server launcher, and a full interactive shell with 44 commands for managing agents, sending and receiving email, configuring gateways, and more. It also re-exports everything from `@agenticmail/core` so you can use it as an SDK.
5
+ It bundles a setup wizard, API server launcher, and a full interactive shell with 44 commands for managing agents, sending and receiving email and SMS, configuring gateways, and more. It also re-exports everything from `@agenticmail/core` so you can use it as an SDK.
6
6
 
7
7
  ## Install
8
8
 
package/dist/cli.js CHANGED
@@ -4574,28 +4574,33 @@ async function cmdSetup() {
4574
4574
  } catch (err) {
4575
4575
  const msg = err.message;
4576
4576
  if (msg === "DOCKER_MANUAL_START") {
4577
- spinner.fail(`Docker installed but couldn't start automatically`);
4577
+ spinner.fail(`Docker needs to be set up manually (first time only)`);
4578
4578
  log2("");
4579
- log2(` ${c2.pink(c2.bold("Don't worry! Here's how to fix this:"))}`);
4579
+ log2(` ${c2.pink(c2.bold("No worries! This only takes a minute:"))}`);
4580
4580
  log2("");
4581
- log2(` ${c2.pink("Step 1:")} Open a ${c2.bold("new terminal window")}`);
4582
- log2(` ${c2.dim("(Command + T on Mac, or open Terminal from your dock)")}`);
4581
+ log2(` ${c2.pink("Step 1:")} Check if Docker Desktop is installed`);
4582
+ log2(` ${c2.dim("Look for Docker in your Applications folder or Launchpad.")}`);
4583
+ log2(` ${c2.dim("If it's not there, install it:")}`);
4584
+ log2(` ${c2.cyan("brew install --cask docker")}`);
4585
+ log2(` ${c2.dim("(You'll need to enter your Mac password when prompted)")}`);
4583
4586
  log2("");
4584
- log2(` ${c2.pink("Step 2:")} Run this command:`);
4587
+ log2(` ${c2.pink("Step 2:")} Open Docker Desktop`);
4588
+ log2(` ${c2.dim("Double-click Docker in Applications, or run:")}`);
4585
4589
  log2(` ${c2.cyan("open -a Docker")}`);
4586
4590
  log2("");
4587
- log2(` ${c2.pink("Step 3:")} Wait for Docker Desktop to fully load`);
4588
- log2(` ${c2.dim("You'll see a whale icon in your menu bar (top of screen).")}`);
4589
- log2(` ${c2.dim("Wait until it stops animating \u2014 that means it's ready.")}`);
4591
+ log2(` ${c2.pink("Step 3:")} Accept the license agreement`);
4592
+ log2(` ${c2.dim("On first launch, Docker shows a license dialog.")}`);
4593
+ log2(` ${c2.dim('Click "Accept" to continue. It will then start loading.')}`);
4590
4594
  log2("");
4591
- log2(` ${c2.pink("Step 4:")} Close that terminal window`);
4592
- log2(` ${c2.dim("Just close the window normally (Command + W). Don't press Ctrl+C.")}`);
4595
+ log2(` ${c2.pink("Step 4:")} Wait for the whale icon`);
4596
+ log2(` ${c2.dim("You'll see a whale icon in your menu bar (top of screen).")}`);
4597
+ log2(` ${c2.dim("Wait until it stops animating \u2014 that means Docker is ready.")}`);
4593
4598
  log2("");
4594
4599
  log2(` ${c2.pink("Step 5:")} Come back here and run:`);
4595
4600
  log2(` ${c2.green("npx agenticmail@latest")}`);
4596
4601
  log2("");
4597
- log2(` ${c2.dim("That's it! Docker only needs this manual start the first time.")}`);
4598
- log2(` ${c2.dim("After that, it starts automatically.")}`);
4602
+ log2(` ${c2.dim("That's it! Docker only needs this manual setup the first time.")}`);
4603
+ log2(` ${c2.dim("After that, it starts automatically on boot.")}`);
4599
4604
  } else {
4600
4605
  spinner.fail(`Couldn't start Docker: ${msg}`);
4601
4606
  log2("");
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "agenticmail",
3
- "version": "0.5.2",
4
- "description": "Email infrastructure for AI agents send and receive real email programmatically",
3
+ "version": "0.5.3",
4
+ "description": "Email and SMS infrastructure for AI agents \u2014 the first platform to give agents real email addresses and phone numbers",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
7
7
  "types": "dist/index.d.ts",
@@ -47,6 +47,8 @@
47
47
  "bugs": "https://github.com/agenticmail/agenticmail/issues",
48
48
  "keywords": [
49
49
  "email",
50
+ "sms",
51
+ "phone",
50
52
  "ai",
51
53
  "agent",
52
54
  "mail",
@@ -57,7 +59,11 @@
57
59
  "agenticmail",
58
60
  "llm",
59
61
  "gateway",
60
- "cloudflare"
62
+ "cloudflare",
63
+ "google-voice",
64
+ "text-message",
65
+ "verification-code",
66
+ "openclaw"
61
67
  ],
62
68
  "publishConfig": {
63
69
  "access": "public"