create-mailslot 0.0.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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/index.js +13 -0
  3. package/package.json +31 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # create-mailslot
2
+
3
+ Deploy [Mailslot](https://github.com/mailslot/mailslot) — a self-hosted email
4
+ inbox for AI agents — to your own Cloudflare account.
5
+
6
+ > Your agent's email shouldn't come with a landlord.
7
+
8
+ The wizard is **not released yet**; this package currently points you to the
9
+ [manual setup guide](https://github.com/mailslot/mailslot#quick-start)
10
+ (~10 minutes). When released, `npx create-mailslot` will handle Email Routing,
11
+ storage, secrets, and a live round-trip test end to end.
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log(`
4
+ Mailslot — self-hosted email inbox for AI agents,
5
+ on your own Cloudflare account, on your own domain.
6
+
7
+ The deploy wizard isn't released yet. Manual setup
8
+ takes ~10 minutes today:
9
+
10
+ https://github.com/mailslot/mailslot#quick-start
11
+
12
+ Star/watch the repo to catch the wizard release.
13
+ `);
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "create-mailslot",
3
+ "version": "0.0.1",
4
+ "description": "Deploy Mailslot — a self-hosted email inbox for AI agents — to your own Cloudflare account. Wizard coming soon.",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "create-mailslot": "./index.js"
9
+ },
10
+ "files": [
11
+ "index.js",
12
+ "README.md"
13
+ ],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/mailslot/mailslot"
17
+ },
18
+ "homepage": "https://mailslot.dev",
19
+ "keywords": [
20
+ "ai-agents",
21
+ "email",
22
+ "mcp",
23
+ "cloudflare-workers",
24
+ "self-hosted",
25
+ "agentmail-alternative"
26
+ ],
27
+ "scripts": {
28
+ "typecheck": "true",
29
+ "test": "true"
30
+ }
31
+ }