posthorn 0.2.9 → 0.2.11

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 CHANGED
@@ -80,9 +80,9 @@ Step 3. Google Workspace. Ask: "Do you have a Google Workspace you can add new
80
80
  domains and mailboxes to, or do you want to set up a new one?"
81
81
  - Existing Workspace: delegation browser step (below), then
82
82
  `posthorn accounts workspace <admin-email>`.
83
- - New Workspace: they create one at workspace.google.com using the domain from
84
- step 2, then delegation as above. Tell the user the org signup is also
85
- one-time; it gets reused for every future domain and mailbox.
83
+ - New Workspace: walk them through the signup (browser step below: "Creating
84
+ a new Google Workspace org"), then delegation. Tell the user the org signup
85
+ is also one-time; it gets reused for every future domain and mailbox.
86
86
  (Delegation is per org, not per domain, so with an existing org this step can
87
87
  happen any time, even before the domain exists. The domain pipeline auto-adds
88
88
  and verifies the new domain inside their org.)
@@ -133,6 +133,27 @@ to do this again." The repetition model, so you can answer follow-ups:
133
133
  - For domain PURCHASES, the user also needs a payment method on their Cloudflare
134
134
  account (they pay Cloudflare directly; Posthorn never bills for domains).
135
135
 
136
+ ### Creating a new Google Workspace org (only when the user has none)
137
+ Tell the user: one-time, about 5 minutes, needs a credit card (Business
138
+ Starter is ~$7/user/month with a free trial).
139
+ Walk them through workspace.google.com → Get started:
140
+ 1. Business name, employee count, region. Any values are fine.
141
+ 2. Current email: any email they already read (personal Gmail is fine; it's
142
+ just the contact for signup).
143
+ 3. When asked about a domain, choose the option saying they ALREADY HAVE a
144
+ domain, and enter the sending domain from step 2 of the flow. Do NOT buy
145
+ a domain from Google here, even if offered: the domain must stay at their
146
+ registrar/Cloudflare so Posthorn can manage its DNS.
147
+ 4. Create the admin user, e.g. admin@<their-domain>. This account is the
148
+ org's SUPER-ADMIN: they should save the password, and this is the email
149
+ for `posthorn accounts workspace <admin-email>` later.
150
+ 5. Pick Business Starter, add payment, finish signup.
151
+ 6. If Google prompts to VERIFY the domain or set up MX records, skip it
152
+ ("I'll do this later" / close the wizard). Posthorn does domain
153
+ verification and MX automatically once delegation is set up.
154
+ 7. Continue to domain-wide delegation (next section), signed in as that new
155
+ super-admin.
156
+
136
157
  ### Google Workspace domain-wide delegation (one-time per Workspace org)
137
158
  - Tell the user: "This is a one-time setup for your Workspace; you won't need
138
159
  to do this again."
package/dist/index.js CHANGED
@@ -362,6 +362,7 @@ async function checkDomains(domains2, options) {
362
362
  const icon = r.available ? chalk3.green(" \u2713") : chalk3.red(" \u2717");
363
363
  const price = r.price ? chalk3.dim(`$${r.price}/yr`) : "";
364
364
  console.log(`${icon} ${String(r.domain).padEnd(30)}${price}`);
365
+ if (r.note) console.log(chalk3.yellow(` ${r.note}`));
365
366
  }
366
367
  console.log(chalk3.dim("\n Vet a domain before buying: posthorn domains reputation <domain>"));
367
368
  }
@@ -580,7 +581,7 @@ function guide() {
580
581
 
581
582
  // src/index.ts
582
583
  var program = new Command();
583
- program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.9");
584
+ program.name("posthorn").description("Posthorn: domain setup, mailbox creation, and email warmup").version("0.2.11");
584
585
  program.addHelpText("after", `
585
586
  Agents: run 'posthorn guide' first for the full workflow playbook.
586
587
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "posthorn",
3
- "version": "0.2.9",
3
+ "version": "0.2.11",
4
4
  "description": "Domain setup, mailbox creation, and email warmup from the command line",
5
5
  "type": "module",
6
6
  "bin": {