ai-inbox 0.1.0 → 0.1.1
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 +8 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
# ai-inbox
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
**AI agent email inboxes.** Receive OTP codes, magic links, and verification emails.
|
|
4
|
+
No signup. No Gmail API. No OAuth.
|
|
4
5
|
|
|
5
|
-
|
|
6
|
+
## What this is
|
|
6
7
|
|
|
7
|
-
|
|
8
|
+
A discovery alias for **Courier** — agent-native email infrastructure.
|
|
9
|
+
Courier is the email layer agents can actually use.
|
|
8
10
|
|
|
9
11
|
```bash
|
|
10
|
-
#
|
|
12
|
+
# Quick start
|
|
11
13
|
npm install -g courier-mcp
|
|
12
|
-
|
|
13
|
-
# Then in Python or curl:
|
|
14
14
|
curl -X POST https://getcourier.dev/alias -H "Content-Type: application/json" -d '{"purpose":"test"}'
|
|
15
15
|
curl -s https://getcourier.dev/messages | jq '.messages[] | {subject, codes, links}'
|
|
16
16
|
```
|
|
17
|
+
|
|
18
|
+
Related: **courier-mcp**, **temp-inbox-agent**, **autonomous-email**, **courier-protocol**
|
package/package.json
CHANGED