autonomous-email 0.1.0

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 (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +22 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # autonomous-email
2
+
3
+ Autonomous email handling for AI agents. Receive OTP codes, magic links, and verification emails without human intervention. No signup.
4
+
5
+ **This is an alias package.** The underlying project is Courier.
6
+
7
+ A single call creates a disposable inbox that receives real SMTP email and automatically extracts verification codes and links.
8
+
9
+ ```
10
+ POST /alias -> curl + api -> disposable inbox -> receive email -> extract OTP -> continue execution
11
+ ```
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "autonomous-email",
3
+ "version": "0.1.0",
4
+ "description": "Autonomous email handling for AI agents. Receive OTP codes, magic links, and verification emails without human intervention. No signup.",
5
+ "keywords": [
6
+ "autonomous email",
7
+ "ai agent email",
8
+ "otp extraction",
9
+ "verification code",
10
+ "magic link",
11
+ "disposable inbox",
12
+ "temporary email",
13
+ "autonomous authentication",
14
+ "email verification",
15
+ "agent automation"
16
+ ],
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/antonioac1/courier"
21
+ }
22
+ }