ai-inbox 0.1.0 → 0.1.2
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 +6 -8
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
|
@@ -1,24 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ai-inbox",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Durable AI agent email inboxes. Receive OTP codes, magic links, and verification emails autonomously. Persistent agent identity that survives memory loss. No signup.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai inbox",
|
|
7
7
|
"agent email",
|
|
8
|
-
"
|
|
8
|
+
"durable email identity",
|
|
9
9
|
"otp extraction",
|
|
10
|
-
"verification code",
|
|
11
10
|
"magic link",
|
|
12
|
-
"
|
|
11
|
+
"persistent inbox",
|
|
13
12
|
"autonomous email",
|
|
14
13
|
"email verification",
|
|
15
14
|
"ai authentication",
|
|
16
|
-
"
|
|
17
|
-
"agent tools"
|
|
15
|
+
"agent identity"
|
|
18
16
|
],
|
|
19
17
|
"license": "MIT",
|
|
20
18
|
"repository": {
|
|
21
19
|
"type": "git",
|
|
22
20
|
"url": "https://github.com/antonioac1/courier"
|
|
23
21
|
}
|
|
24
|
-
}
|
|
22
|
+
}
|