@agenticmail/cli 0.9.39 → 0.9.41
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 +9 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -118,6 +118,15 @@ Uses your existing Gmail or Outlook account. You provide your email address and
|
|
|
118
118
|
|
|
119
119
|
Agent emails go out as sub-addresses like `yourname+agentname@gmail.com`. Replies come back through the same account.
|
|
120
120
|
|
|
121
|
+
> **Before you hit enter on `setup-email`, know what you're signing up for.** Once the relay is connected, every sub-agent on this machine is reachable from the public internet via plus-addressing:
|
|
122
|
+
>
|
|
123
|
+
> - Anyone who guesses `yourname+secretary@gmail.com`, `yourname+kepler@gmail.com`, … can email that agent and the dispatcher will wake a Claude / Codex turn to process the message. The `+sub` part is publicly guessable (`+secretary`, `+kepler`), not a secret.
|
|
124
|
+
> - External mail wakes the dispatcher identically to internal `@localhost` mail. Source doesn't matter; a new-mail SSE event is a new-mail SSE event.
|
|
125
|
+
> - The host bridges (`yourname+claudecode@gmail.com`, `yourname+codex@gmail.com`) take a special path — they route to `handleBridgeMail` which uses the host SDK's `resume` option to wake your last session headlessly, falling through to the bridge-escalation email at `setup_operator_email` if resume fails.
|
|
126
|
+
> - **Watch for spam.** Scrapers that find a plus-address can drive worker turns at your expense. The `wake-budget` guard in `dispatcher.handleEvent` is the automatic throttle; relay-level spam filtering is the cleaner long-term answer. For agents that should stay internal-only, leave them off the relay or fence them with `metadata.host`.
|
|
127
|
+
>
|
|
128
|
+
> If you'd rather keep everything local for now, skip `setup-email` entirely — agents talking to each other over `*@localhost` works fully without a relay.
|
|
129
|
+
|
|
121
130
|
### Domain Mode (For Professional Use)
|
|
122
131
|
|
|
123
132
|
Uses a custom domain with Cloudflare for DNS, email routing, and tunneling. The wizard:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenticmail/cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.41",
|
|
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",
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"prepublishOnly": "npm run build"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@agenticmail/api": "^0.9.
|
|
34
|
+
"@agenticmail/api": "^0.9.28",
|
|
35
35
|
"@agenticmail/core": "^0.9.7",
|
|
36
36
|
"json5": "^2.2.3"
|
|
37
37
|
},
|
|
38
38
|
"optionalDependencies": {
|
|
39
|
-
"@agenticmail/claudecode": "^0.2.
|
|
40
|
-
"@agenticmail/codex": "^0.1.
|
|
39
|
+
"@agenticmail/claudecode": "^0.2.22",
|
|
40
|
+
"@agenticmail/codex": "^0.1.17"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"tsup": "^8.4.0",
|