posthorn 0.2.5 → 0.2.7
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 +17 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -62,13 +62,27 @@ stored locally, so you can stop and continue any time.
|
|
|
62
62
|
## The external/manual steps (things that happen OUTSIDE the CLI)
|
|
63
63
|
|
|
64
64
|
These are the steps you must GUIDE THE USER through in their browser. Give exact
|
|
65
|
-
click-by-click instructions.
|
|
65
|
+
click-by-click instructions. Before each browser step, share with the user that
|
|
66
|
+
this is a one-time setup, e.g. "This is a one-time setup step; you won't need
|
|
67
|
+
to do this again." The repetition model, so you can answer follow-ups:
|
|
68
|
+
- Cloudflare API token: once ever
|
|
69
|
+
- Workspace delegation: once per Workspace org
|
|
70
|
+
- DKIM: once per domain
|
|
71
|
+
- Everything else (domains, mailboxes, warmup): fully automated, no browser
|
|
66
72
|
|
|
67
73
|
### Cloudflare API token (one-time, for "buy new" or "own Cloudflare" domains)
|
|
68
74
|
- dash.cloudflare.com/profile/api-tokens → Create Token → Custom Token
|
|
69
|
-
- Permissions: Account>
|
|
70
|
-
Zone>Zone>Edit, Zone>DNS>Edit.
|
|
75
|
+
- Permissions: Account>Account Settings>Read, Account>Registrar: Domains>Admin,
|
|
76
|
+
Zone>Zone>Edit, Zone>DNS>Edit.
|
|
77
|
+
- Account Resources: Include > All accounts
|
|
78
|
+
- Zone Resources: Include > All zones
|
|
79
|
+
- Do NOT add Billing permissions; they are not needed. Domain purchases charge
|
|
80
|
+
the payment method already on the Cloudflare account, which is a dashboard
|
|
81
|
+
setting, not a token permission.
|
|
71
82
|
- Then: `posthorn accounts cloudflare <token>`
|
|
83
|
+
- This token is only for Cloudflare (domains and DNS). Google Workspace is NOT
|
|
84
|
+
connected with this token; it has its own separate one-time step below
|
|
85
|
+
(domain-wide delegation, no token involved).
|
|
72
86
|
- For domain PURCHASES, the user also needs a payment method on their Cloudflare
|
|
73
87
|
account (they pay Cloudflare directly; Posthorn never bills for domains).
|
|
74
88
|
|
package/dist/index.js
CHANGED
|
@@ -581,7 +581,7 @@ function guide() {
|
|
|
581
581
|
|
|
582
582
|
// src/index.ts
|
|
583
583
|
var program = new Command();
|
|
584
|
-
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.
|
|
584
|
+
program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.7");
|
|
585
585
|
program.addHelpText("after", `
|
|
586
586
|
Agents: run 'posthorn guide' first for the full workflow playbook.
|
|
587
587
|
|